- accept(Config.Visitor<T>) - Method in interface com.netflix.archaius.api.Config
-
Visitor pattern
- addConfig(String, Config) - Method in interface com.netflix.archaius.api.config.CompositeConfig
-
Add a named configuration.
- addConfigs(LinkedHashMap<String, Config>) - Method in interface com.netflix.archaius.api.config.CompositeConfig
-
Add a map of named configurations.
- addListener(ConfigListener) - Method in interface com.netflix.archaius.api.Config
-
Register a listener that will receive a call for each property that is added, removed
or updated.
- addListener(PropertyListener<T>) - Method in interface com.netflix.archaius.api.Property
-
Add a listener that will be called whenever the property value changes
- asBigDecimal(BigDecimal) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a BigDecimal
- asBigInteger(BigInteger) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a BigInteger
- asBoolean(Boolean) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a boolean
- asByte(Byte) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a byte
- asDouble(Double) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a double
- asFloat(Float) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a float
- asInteger(Integer) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as an int
- asLong(Long) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a Long
- asShort(Short) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a short
- asString(String) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Parse the property as a string
- asType(Class<T>, T) - Method in interface com.netflix.archaius.api.PropertyContainer
-
Custom parsing based on the provided type.