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

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

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

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);
}
origin: com.netflix.archaius/archaius-legacy

protected void load() {
  if (delegate.get() == null) {
    values = defaultValues;
  } else {
    values = transform(split(delegate.get()));
  }
}
origin: com.netflix.archaius/archaius-core

protected void load() {
  if (delegate.get() == null) {
    values = defaultValues;
  } else {
    values = transform(split(delegate.get()));
  }
}
com.netflix.configDynamicListPropertytransform

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
  • setup
  • split

Popular in Java

  • Making http requests using okhttp
  • getApplicationContext (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • JTable (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Best plugins for Eclipse
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