Tabnine Logo
DynamicListProperty.setup
Code IndexAdd Tabnine to your IDE (free)

How to use
setup
method
in
com.netflix.config.DynamicListProperty

Best Java code snippets using com.netflix.config.DynamicListProperty.setup (Showing top 8 results out of 315)

origin: com.netflix.archaius/archaius-legacy

/**
 * Create the dynamic list property. The guava Splitter used is created as
 * <code>Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults()</code>. The default
 * list value will be taken from the passed in list argument.
 */
public DynamicListProperty(String propName, List<T> defaultValue, String delimiterRegex) {
  setup(propName, defaultValue, delimiterRegex);
}
origin: com.netflix.archaius/archaius-core

/**
 * Create the dynamic list property. The guava Splitter used is created as
 * <code>Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults()</code>. The default
 * list value will be taken from the passed in list argument.
 */
public DynamicListProperty(String propName, List<T> defaultValue, String delimiterRegex) {
  setup(propName, defaultValue, delimiterRegex);
}
origin: com.netflix.archaius/archaius-core

/**
 * Create the dynamic list property using the splitter and default list value passed in 
 * from the arguments.
 */
public DynamicListProperty(String propName, List<T> defaultValue, Splitter splitter) {
  setup(propName, defaultValue, splitter);
}
origin: com.netflix.archaius/archaius-legacy

/**
 * Create the dynamic list property using the splitter and default list value passed in 
 * from the arguments.
 */
public DynamicListProperty(String propName, List<T> defaultValue, Splitter splitter) {
  setup(propName, defaultValue, splitter);
}
origin: com.netflix.archaius/archaius-core

private void setup(String propName, List<T> defaultValue, String delimiterRegex) {
  setup(propName, defaultValue, Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults());
}
origin: com.netflix.archaius/archaius-legacy

private void setup(String propName, List<T> defaultValue, String delimiterRegex) {
  setup(propName, defaultValue, Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults());
}
origin: com.netflix.archaius/archaius-core

/**
 * Create the dynamic list property. The guava Splitter used is created as
 * <code>Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults()</code>. The default
 * list value will be transformed from list of strings after splitting. If defaultValue string is
 * null, the default list value will be an empty list.
 */
public DynamicListProperty(String propName, String defaultValue, String delimiterRegex) {
  this.splitter = Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults();
  setup(propName, transform(split(defaultValue)), splitter);
}
origin: com.netflix.archaius/archaius-legacy

/**
 * Create the dynamic list property. The guava Splitter used is created as
 * <code>Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults()</code>. The default
 * list value will be transformed from list of strings after splitting. If defaultValue string is
 * null, the default list value will be an empty list.
 */
public DynamicListProperty(String propName, String defaultValue, String delimiterRegex) {
  this.splitter = Splitter.onPattern(delimiterRegex).omitEmptyStrings().trimResults();
  setup(propName, transform(split(defaultValue)), splitter);
}
com.netflix.configDynamicListPropertysetup

Popular methods of DynamicListProperty

  • get
    Get the list type from the underlying dynamic string property. If the property is undefined, this me
  • from
    Construct the generic type from string.
  • load
  • propertyChanged
    A method invoked when the underlying string property is changed. Default implementation does nothing
  • split
  • transform

Popular in Java

  • Making http post requests using okhttp
  • setRequestProperty (URLConnection)
  • startActivity (Activity)
  • getSharedPreferences (Context)
  • Path (java.nio.file)
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Reference (javax.naming)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now