Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- AbstractPropertiesBuilderDecorator<T extends Properties.PropertiesBuilder> - Class in org.refcodes.properties
- AbstractPropertiesBuilderDecorator() - Constructor for class org.refcodes.properties.AbstractPropertiesBuilderDecorator
-
Make sure to set the getProperties() member variable!
- AbstractPropertiesBuilderDecorator(T) - Constructor for class org.refcodes.properties.AbstractPropertiesBuilderDecorator
-
Decorates the provided
ResourceProperties
with additional behavior or functionality. - AbstractPropertiesDecorator<T extends Properties> - Class in org.refcodes.properties
-
Decorates the provided
Properties
and delegates method calls to themProperties
. - AbstractPropertiesDecorator() - Constructor for class org.refcodes.properties.AbstractPropertiesDecorator
-
Make sure to set the _properties member variable!
- AbstractPropertiesDecorator(T) - Constructor for class org.refcodes.properties.AbstractPropertiesDecorator
-
Decorates the provided
Properties
with additional behavior or functionality. - AbstractResourceProperties - Class in org.refcodes.properties
-
Base class for various
ResourceProperties
implementations using aResourceProperties.ResourcePropertiesBuilder
instance under the hood. - AbstractResourceProperties(ResourceProperties.ResourcePropertiesBuilder) - Constructor for class org.refcodes.properties.AbstractResourceProperties
-
Constructs the
AbstractResourceProperties
instance with the givenResourceProperties.ResourcePropertiesBuilder
. - AbstractResourcePropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the mutable
ResourceProperties.ResourcePropertiesBuilder
interface. - AbstractResourcePropertiesBuilder() - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Create an empty
AbstractResourcePropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - AbstractResourcePropertiesBuilder(File) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
File
. - AbstractResourcePropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
File
. - AbstractResourcePropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads or seeks the properties from the given
File
. - AbstractResourcePropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads or seeks the properties from the given
File
. - AbstractResourcePropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Reads the properties from the given
InputStream
. - AbstractResourcePropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Reads the properties from the given
InputStream
. - AbstractResourcePropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(Object) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Create a
AbstractResourcePropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - AbstractResourcePropertiesBuilder(String) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given file's path.
- AbstractResourcePropertiesBuilder(URL) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
URL
. - AbstractResourcePropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
URL
. - AbstractResourcePropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Create a
AbstractResourcePropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - AbstractResourcePropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Create a
AbstractResourcePropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - AbstractResourcePropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Create a
AbstractResourcePropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - AbstractResourcePropertiesBuilderDecorator<T extends ResourceProperties.ResourcePropertiesBuilder> - Class in org.refcodes.properties
- AbstractResourcePropertiesBuilderDecorator(T) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Decorates the provided
ResourceProperties.ResourcePropertiesBuilder
with additional behavior or functionality. - AbstractResourcePropertiesDecorator<T extends ResourceProperties> - Class in org.refcodes.properties
-
Decorates the provided
ResourceProperties
and delegates method calls to themResourceProperties
. - AbstractResourcePropertiesDecorator() - Constructor for class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Make sure to set the getProperties() member variable!
- AbstractResourcePropertiesDecorator(T) - Constructor for class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Decorates the provided
ResourceProperties
with additional behavior or functionality. - appendProperties(Properties) - Method in interface org.refcodes.properties.PropertiesPrecedence.MutablePropertiesPrecedence
-
Appends the provided
Properties
to the end of the precedence list, meaning that the addedProperties
have lowest priority. - appendProperties(Properties) - Method in class org.refcodes.properties.PropertiesPrecedenceBuilderComposite
-
Appends the provided
Properties
to the end of the precedence list, meaning that the addedProperties
have lowest priority. - ArgsProperties - Class in org.refcodes.properties
-
The
ArgsProperties
takes them command line arguments "as is" and converts them into key/value pairs as of theProperties
semantics. - ArgsProperties(String[]) - Constructor for class org.refcodes.properties.ArgsProperties
-
Constructs the
ArgsProperties
from the provided command line arguments using the prefixes as defined by theArgsPrefix
enumeration to identify the keys (and the values) from the provided arguments. - ArgsProperties(String[], String...) - Constructor for class org.refcodes.properties.ArgsProperties
-
Constructs the
ArgsProperties
from the provided command line arguments using the provided prefixes to identify the keys (and the values) from the provided arguments.
C
- clear() - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- COMMENT - Static variable in class org.refcodes.properties.YamlPropertiesBuilder
- ConfigurationRuntimeException - Exception in org.refcodes.properties
-
Base exception for the configuration artifact.
- ConfigurationRuntimeException(String) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- ConfigurationRuntimeException(String, String) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- ConfigurationRuntimeException(String, Throwable) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- ConfigurationRuntimeException(String, Throwable, String) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- ConfigurationRuntimeException(Throwable) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- ConfigurationRuntimeException(Throwable, String) - Constructor for exception org.refcodes.properties.ConfigurationRuntimeException
- containsKey(Object) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- containsKey(Object) - Method in class org.refcodes.properties.EnvironmentProperties
-
The key is transformed to an environment variable by removing a prefixed "/" path delimiter (as of
Properties.getDelimiter()
and converting all other path delimiters "/" to the environment variable's (de facto standard) separator "_". - containsKey(Object) - Method in class org.refcodes.properties.JavaProperties
- containsKey(Object) - Method in class org.refcodes.properties.JsonProperties
- containsKey(Object) - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- containsKey(Object) - Method in class org.refcodes.properties.ProfilePropertiesProjection
- containsKey(Object) - Method in class org.refcodes.properties.PropertiesImpl
- containsKey(Object) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- containsKey(Object) - Method in class org.refcodes.properties.SystemProperties
-
The key is transformed to an system property variable by removing a prefixed "/" path delimiter (as of
Properties.getDelimiter()
and converting all other path delimiters "/" to the system property's (de facto standard) separator ".". - containsKey(Object) - Method in class org.refcodes.properties.TomlProperties
- containsKey(Object) - Method in class org.refcodes.properties.XmlProperties
- containsKey(Object) - Method in class org.refcodes.properties.YamlProperties
- containsProperties(Properties) - Method in interface org.refcodes.properties.PropertiesPrecedence
-
Tests whether the given properties have already been added.
- containsProperties(Properties) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
-
Tests whether the given properties have already been added.
- containsValue(Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- containsValue(Object) - Method in interface org.refcodes.properties.Properties
- containsValue(Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- createCanonicalMapFactory() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation. - createCanonicalMapFactory() - Method in class org.refcodes.properties.JavaPropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation. - createCanonicalMapFactory() - Method in class org.refcodes.properties.JsonPropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation. - createCanonicalMapFactory() - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation. - createCanonicalMapFactory() - Method in class org.refcodes.properties.XmlPropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation. - createCanonicalMapFactory() - Method in class org.refcodes.properties.YamlPropertiesBuilder
-
Abstract method to be implemented by the sub-classes returning the concrete
CanonicalMapFactory
responsible to fabricate theCanonicalMap
instances as of the required notation.
D
- DEFAULT_COMMENT - Static variable in interface org.refcodes.properties.Properties
- DEFAULT_COMMENT - Static variable in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
- delete(Property) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Removes a property identified by the key of the provided
Property
(the value of theProperty
is ignored). - DELIMITERS - Static variable in class org.refcodes.properties.TomlPropertiesBuilder
- dispose() - Method in class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
- dispose() - Method in class org.refcodes.properties.ScheduledResourcePropertiesDecorator
E
- entrySet() - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- EnvironmentProperties - Class in org.refcodes.properties
-
Extension of the
Properties
type overwriting methods in order to access the operating system's environment variables as ofenv
on Linux or Unix shells orset
on Windows machines (e.g." - EnvironmentProperties() - Constructor for class org.refcodes.properties.EnvironmentProperties
- equals(Object) - Method in class org.refcodes.properties.PropertiesImpl
F
- fileTo(File) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
. - fileTo(File, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
using the provided delimiter as the destination's path delimiter. - fileTo(File, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
. - fileTo(File, String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
using the provided delimiter as the destination's path delimiter. - fileTo(String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
. - fileTo(String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the given
File
using the provided delimiter as the destination's path delimiter. - fileTo(String, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the
File
represented by the given file path. - fileTo(String, String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Files (writes) the properties to the
File
represented by the given file path using the provided delimiter as the destination's path delimiter. - fileToJavaProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the Java properties to the given
File
. - fileToJavaProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the Java properties to the given file's path.
- fileToJsonProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the JSON properties to the given
File
. - fileToJsonProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the JSON properties to the given file's path.
- fileToTomlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the TOML properties to the given
File
. - fileToTomlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the TOML properties to the given file's path.
- fileToXmlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the XML properties to the given
File
. - fileToXmlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the XML properties to the given file's path.
- fileToYamlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the YAML properties to the given
File
. - fileToYamlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Files the YAML properties to the given file's path.
- flush() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Flushes
ResourceProperties.MutableResoureProperties
to the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - flush() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Flushes
ResourceProperties.MutableResoureProperties
to the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - flush() - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Flushes
ResourceProperties.MutableResoureProperties
to the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - from(String, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Deprecated.Implemented to see how it feels like using it in my sources
- from(Property...) - Static method in class org.refcodes.properties.PropertiesSugar
-
Deprecated.Implemented to see how it feels like using it in my sources
- fromEnvironmentVariables() - Static method in class org.refcodes.properties.PropertiesSugar
-
Returns
Properties
representing the operating system's environment variables as ofenv
on Linux or Unix shells orset
on Windows machines. - fromNormalized(String, char, char) - Static method in class org.refcodes.properties.NormalizedPropertiesDecorator
- fromProfile(Properties) - Static method in class org.refcodes.properties.PropertiesSugar
-
Wraps the
Properties
with a profile projection. - fromProfile(Properties, String...) - Static method in class org.refcodes.properties.PropertiesSugar
-
Wraps the
Properties
with a profile projection. - fromProperties(Property...) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
Properties
instance from the providedProperty
instances. - fromSystemProperties() - Static method in class org.refcodes.properties.PropertiesSugar
-
Returns
Properties
representing the system properties as passed via the "-Dkey=value" when launching the JVM (e.g.java -Dconsole.width=220).
G
- get(Object) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- get(Object) - Method in class org.refcodes.properties.EnvironmentProperties
-
The key is transformed to an environment variable by removing a prefixed "/" path delimiter (as of
Properties.getDelimiter()
and converting all other path delimiters "/" to the environment variable's (de facto standard) separator "_". - get(Object) - Method in class org.refcodes.properties.JavaProperties
- get(Object) - Method in class org.refcodes.properties.JsonProperties
- get(Object) - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- get(Object) - Method in class org.refcodes.properties.ProfilePropertiesProjection
- get(Object) - Method in class org.refcodes.properties.PropertiesImpl
- get(Object) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- get(Object) - Method in interface org.refcodes.properties.StrictProperties
- get(Object) - Method in class org.refcodes.properties.StrictPropertiesDecorator
- get(Object) - Method in class org.refcodes.properties.SystemProperties
-
The key is transformed to a system property by removing a prefixed "/" path delimiter (as of
Properties.getDelimiter()
and converting all other path delimiters "/" to the system property's (de facto standard) separator ".". - get(Object) - Method in class org.refcodes.properties.TomlProperties
- get(Object) - Method in class org.refcodes.properties.XmlProperties
- get(Object) - Method in class org.refcodes.properties.YamlProperties
- getAnnotator() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
-
Returns the default path annotator as of
Annotator.JAVA
. - getAnnotator() - Method in interface org.refcodes.properties.Properties
-
Returns the default path annotator as of
Annotator.JAVA
. - getBoolean(String) - Method in interface org.refcodes.properties.StrictProperties
- getByte(String) - Method in interface org.refcodes.properties.StrictProperties
- getChar(String) - Method in interface org.refcodes.properties.StrictProperties
- getDelimiter() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.JavaProperties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.JsonProperties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.ProfilePropertiesProjection
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in interface org.refcodes.properties.Properties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.PropertiesImpl
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.TomlProperties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.XmlProperties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDelimiter() - Method in class org.refcodes.properties.YamlProperties
-
Returns the default path delimiter as of
Delimiter.PATH
. - getDir(Object) - Method in interface org.refcodes.properties.Properties
- getDir(Object...) - Method in interface org.refcodes.properties.Properties
- getDir(String) - Method in interface org.refcodes.properties.Properties
- getDir(String...) - Method in interface org.refcodes.properties.Properties
- getDir(Collection<?>) - Method in interface org.refcodes.properties.Properties
- getDirAt(int) - Method in interface org.refcodes.properties.Properties
- getDirAt(Object[], int) - Method in interface org.refcodes.properties.Properties
- getDirAt(Object, int) - Method in interface org.refcodes.properties.Properties
- getDirAt(String[], int) - Method in interface org.refcodes.properties.Properties
- getDirAt(String, int) - Method in interface org.refcodes.properties.Properties
- getDirAt(Collection<?>, int) - Method in interface org.refcodes.properties.Properties
- getDirs(Object) - Method in interface org.refcodes.properties.Properties
- getDirs(Object...) - Method in interface org.refcodes.properties.Properties
- getDirs(String) - Method in interface org.refcodes.properties.Properties
- getDirs(String...) - Method in interface org.refcodes.properties.Properties
- getDirs(Collection<?>) - Method in interface org.refcodes.properties.Properties
- getDouble(String) - Method in interface org.refcodes.properties.StrictProperties
- getFilenameSuffixes() - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Returns the filename extensions of the ResourcePropertiesFactory in the given order.
- getFilenameSuffixes() - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Returns the filename extensions of the ResourcePropertiesFactory in the given order.
- getFilenameSuffixes() - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
- getFilenameSuffixes() - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
- getFloat(String) - Method in interface org.refcodes.properties.StrictProperties
- getInt(String) - Method in interface org.refcodes.properties.StrictProperties
- getLong(String) - Method in interface org.refcodes.properties.StrictProperties
- getPath() - Method in enum class org.refcodes.properties.PropertiesPath
- getProperties() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
-
Delegate hook, this method is used to retrieve the properties to which to delegate method calls to.
- getProperties() - Method in interface org.refcodes.properties.PropertiesAccessor
-
Retrieves the properties from the
Properties
property. - getPropertiesNotation() - Method in interface org.refcodes.properties.PropertiesNotationAccessor
-
Retrieves the properties notation from the
PropertiesNotation
property. - getRuntimeProfiles() - Method in interface org.refcodes.properties.ProfileProperties
-
The
ProfileProperties.getRuntimeProfilesPath()
points to an array with the Runtime-Profiles denoted as follows (pointing to your active Runtime-Profiles): runtime/profiles/0=local runtime/profiles/1=oauth runtime/profiles/2=development (ProfileProperties.getRuntimeProfilesPath()
defaults to "runtime/profiles" represented by the path defined byPropertiesPath.RUNTIME_PROFILES_PATH
) In case a value is found at the path "runtime/profiles", this is parsed as a comma-separated list and converted to an array. - getRuntimeProfilesPath() - Method in interface org.refcodes.properties.ProfileProperties
-
Returns the path which points to your active Runtime-Profiles.
- getShort(String) - Method in interface org.refcodes.properties.StrictProperties
- getType() - Method in class org.refcodes.properties.JavaProperties
- getType() - Method in class org.refcodes.properties.JsonProperties
- getType() - Method in interface org.refcodes.properties.Properties
- getType() - Method in class org.refcodes.properties.PropertiesImpl
- getType() - Method in class org.refcodes.properties.TomlProperties
- getType() - Method in class org.refcodes.properties.XmlProperties
- getType() - Method in class org.refcodes.properties.YamlProperties
H
- hasFilenameSuffix(File) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Determines whether this factory may be responsible for a given file.
- hasFilenameSuffix(String) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Determines whether this factory may be responsible for a given file.
- hashCode() - Method in class org.refcodes.properties.PropertiesImpl
I
- insert(Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- insert(Properties) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Method to semantically emphasize that we support our own types.
- insert(Properties.PropertiesBuilder) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Method to semantically emphasize that we support our own types.
- insertBetween(String, Object, String) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- insertBetween(String, Properties, String) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Method to semantically emphasize that we support our own types.
- insertFrom(Object, String) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- insertFrom(Properties, String) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Method to semantically emphasize that we support our own types.
- insertTo(String, Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- insertTo(String, Properties) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
Method to semantically emphasize that we support our own types.
- isEmpty() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- isEmpty() - Method in class org.refcodes.properties.EnvironmentProperties
- isEmpty() - Method in class org.refcodes.properties.JavaProperties
- isEmpty() - Method in class org.refcodes.properties.JsonProperties
- isEmpty() - Method in class org.refcodes.properties.ProfilePropertiesProjection
- isEmpty() - Method in class org.refcodes.properties.PropertiesImpl
- isEmpty() - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- isEmpty() - Method in class org.refcodes.properties.SystemProperties
- isEmpty() - Method in class org.refcodes.properties.TomlProperties
- isEmpty() - Method in class org.refcodes.properties.XmlProperties
- isEmpty() - Method in class org.refcodes.properties.YamlProperties
- isFlushable() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
In case the resource has not been loaded from a writable
File
, then calling this method will return false. - isFlushable() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
J
- JAVA - Enum constant in enum class org.refcodes.properties.PropertiesNotation
- JavaProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "Java properties" (or just "properties"). - JavaProperties() - Constructor for class org.refcodes.properties.JavaProperties
-
Create an empty
JavaProperties
instance. - JavaProperties(File) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given
File
. - JavaProperties(File, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given
File
. - JavaProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads or seeks the Java properties from the given
File
. - JavaProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads or seeks the Java properties from the given
File
. - JavaProperties(InputStream) - Constructor for class org.refcodes.properties.JavaProperties
-
Reads the Java properties from the given
InputStream
. - JavaProperties(InputStream, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Reads the Java properties from the given
InputStream
. - JavaProperties(Class<?>, String) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(Object) - Constructor for class org.refcodes.properties.JavaProperties
-
Create a
JavaProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - JavaProperties(String) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(String, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given file's path.
- JavaProperties(URL) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given
URL
. - JavaProperties(URL, char...) - Constructor for class org.refcodes.properties.JavaProperties
-
Loads the Java properties from the given
URL
. - JavaProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.JavaProperties
-
Create a
JavaProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaProperties(Properties) - Constructor for class org.refcodes.properties.JavaProperties
-
Create a
JavaProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.JavaProperties
-
Create a
JavaProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaProperties.JavaPropertiesFactory - Class in org.refcodes.properties
-
The
JavaProperties.JavaPropertiesFactory
represents aResourcePropertiesFactory
creating instances of typeJavaProperties
. - JavaPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "Java properties" (or just "properties"). - JavaPropertiesBuilder() - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Create an empty
JavaPropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - JavaPropertiesBuilder(File) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given
File
. - JavaPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given
File
. - JavaPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads or seeks the Java properties from the given
File
. - JavaPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads or seeks the Java properties from the given
File
. - JavaPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Reads the Java properties from the given
InputStream
. - JavaPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Reads the Java properties from the given
InputStream
. - JavaPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Create a
JavaPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - JavaPropertiesBuilder(String) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given file's path.
- JavaPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given
URL
. - JavaPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Loads the Java properties from the given
URL
. - JavaPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Create a
JavaPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Create a
JavaPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.JavaPropertiesBuilder
-
Create a
JavaPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JavaPropertiesBuilder.JavaPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
JavaPropertiesBuilder.JavaPropertiesBuilderFactory
represents aResourcePropertiesFactory.ResourcePropertiesBuilderFactory
creating instances of typeJavaPropertiesBuilder
. - JavaPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
- JavaPropertiesFactory() - Constructor for class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
- JSON - Enum constant in enum class org.refcodes.properties.PropertiesNotation
- JsonProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "JSON properties". - JsonProperties() - Constructor for class org.refcodes.properties.JsonProperties
-
Create an empty
JsonProperties
instance. - JsonProperties(File) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given
File
. - JsonProperties(File, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given
File
. - JsonProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads or seeks the JSON Properties from the given
File
. - JsonProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads or seeks the JSON Properties from the given
File
. - JsonProperties(InputStream) - Constructor for class org.refcodes.properties.JsonProperties
-
Reads the JSON Properties from the given
InputStream
. - JsonProperties(InputStream, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Reads the JSON Properties from the given
InputStream
. - JsonProperties(Class<?>, String) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(Object) - Constructor for class org.refcodes.properties.JsonProperties
-
Create a
JsonProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - JsonProperties(String) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(String, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given file's path.
- JsonProperties(URL) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given
URL
. - JsonProperties(URL, char...) - Constructor for class org.refcodes.properties.JsonProperties
-
Loads the JSON Properties from the given
URL
. - JsonProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.JsonProperties
-
Create a
JsonProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonProperties(Properties) - Constructor for class org.refcodes.properties.JsonProperties
-
Create a
JsonProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.JsonProperties
-
Create a
JsonProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonProperties.JsonPropertiesFactory - Class in org.refcodes.properties
-
The
JsonProperties.JsonPropertiesFactory
represents aResourcePropertiesFactory
creating instances of typeJsonProperties
. - JsonPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "JSON properties" (or just "properties"). - JsonPropertiesBuilder() - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Create an empty
JsonPropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - JsonPropertiesBuilder(File) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given
File
. - JsonPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given
File
. - JsonPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads or seeks the JSON properties from the given
File
. - JsonPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads or seeks the JSON properties from the given
File
. - JsonPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Reads the JSON properties from the given
InputStream
. - JsonPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Reads the JSON properties from the given
InputStream
. - JsonPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Create a
JsonPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - JsonPropertiesBuilder(String) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given file's path.
- JsonPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given
URL
. - JsonPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Loads the JSON properties from the given
URL
. - JsonPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Create a
JsonPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Create a
JsonPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.JsonPropertiesBuilder
-
Create a
JsonPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - JsonPropertiesBuilder.JsonPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
JsonPropertiesBuilder.JsonPropertiesBuilderFactory
represents aResourcePropertiesFactory.ResourcePropertiesBuilderFactory
creating instances of typeJsonPropertiesBuilder
. - JsonPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
- JsonPropertiesFactory() - Constructor for class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
K
- KEEP_ORPHANS - Enum constant in enum class org.refcodes.properties.ReloadMode
-
When reloading properties from a resource, then any properties not existing in the resource (e.g. in a
File
) are kept in the accordingResourceProperties
. - keySet() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- keySet() - Method in class org.refcodes.properties.EnvironmentProperties
-
The keys are transformed to a path by prefixing a "/" path delimiter (as of
Properties.getDelimiter()
and converting all other environment variable's (de facto standard) separators "_" to the path delimiter "/". - keySet() - Method in class org.refcodes.properties.JavaProperties
- keySet() - Method in class org.refcodes.properties.JsonProperties
- keySet() - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- keySet() - Method in class org.refcodes.properties.ProfilePropertiesProjection
- keySet() - Method in class org.refcodes.properties.PropertiesImpl
- keySet() - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- keySet() - Method in class org.refcodes.properties.SystemProperties
-
The keys are transformed to a path by prefixing a "/" path delimiter (as of
Properties.getDelimiter()
and converting all other system property's (de facto standard) separators "." to the path delimiter "/". - keySet() - Method in class org.refcodes.properties.TomlProperties
- keySet() - Method in class org.refcodes.properties.XmlProperties
- keySet() - Method in class org.refcodes.properties.YamlProperties
L
- letProperties(Properties) - Method in interface org.refcodes.properties.PropertiesAccessor.PropertiesProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
Properties
(setter) as ofPropertiesAccessor.PropertiesMutator.setProperties(Properties)
and returns the very same value (getter). - letPropertiesNotation(PropertiesNotation) - Method in interface org.refcodes.properties.PropertiesNotationAccessor.PropertiesNotationProperty
-
This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given
PropertiesNotation
(setter) as ofPropertiesNotationAccessor.PropertiesNotationMutator.setPropertiesNotation(PropertiesNotation)
and returns the very same value (getter). - loadFrom(File) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
File
. - loadFrom(File) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
File
. - loadFrom(File) - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the properties from the given
File
. - loadFrom(File, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
File
. - loadFrom(File, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Loads the properties from the given
File
. - loadFrom(File, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
File
. - loadFrom(File, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
File
. - loadFrom(InputStream) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream) - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
InputStream
. - loadFrom(InputStream, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
InputStream
. - loadFrom(Class<?>, String) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given class resource (from inside a JAR).
- loadFrom(Class<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given class resource (from inside a JAR).
- loadFrom(Class<?>, String, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given class resource (from inside a JAR).
- loadFrom(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given class resource (from inside a JAR).
- loadFrom(String) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given file path's
File
. - loadFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given file path's
File
. - loadFrom(String, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given file path's
File
. - loadFrom(String, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given file path's
File
. - loadFrom(URL) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
URL
. - loadFrom(URL) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
URL
. - loadFrom(URL, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the properties from the given
URL
. - loadFrom(URL, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads the properties from the given
URL
. - loadFromJavaProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the Java properties from the given
File
. - loadFromJavaProperties(InputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Reads the properties from the given
InputStream
. - loadFromJavaProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the Java properties from the given file's path.
- loadFromJavaProperties(URL) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the Java properties from the given
URL
. - loadFromJsonProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the JSON properties from the given
File
. - loadFromJsonProperties(InputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Reads the properties from the given
InputStream
. - loadFromJsonProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the JSON properties from the given file's path.
- loadFromJsonProperties(URL) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the JSON properties from the given
URL
. - loadFromTomlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the TOML properties from the given
File
. - loadFromTomlProperties(InputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Reads the properties from the given
InputStream
. - loadFromTomlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the TOML properties from the given file's path.
- loadFromTomlProperties(URL) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the TOML properties from the given
URL
. - loadFromXmlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the XML properties from the given
File
. - loadFromXmlProperties(InputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Reads the properties from the given
InputStream
. - loadFromXmlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the XML properties from the given file's path.
- loadFromXmlProperties(URL) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the XML properties from the given
URL
. - loadFromYamlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the YAML properties from the given
File
. - loadFromYamlProperties(InputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Reads the properties from the given
InputStream
. - loadFromYamlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the YAML properties from the given file's path.
- loadFromYamlProperties(URL) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads the YAML properties from the given
URL
.
M
- merge(Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- mergeBetween(String, Object, String) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- mergeFrom(Object, String) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- mergeTo(String, Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
N
- NormalizedPropertiesDecorator - Class in org.refcodes.properties
-
The
NormalizedPropertiesDecorator
type decorates aProperties
instance and converts a path delimiter such as the full-stop (".") to theProperties
properties' path delimiter slash ("/", as ofAbstractPropertiesDecorator.getDelimiter()
). - NormalizedPropertiesDecorator(Properties) - Constructor for class org.refcodes.properties.NormalizedPropertiesDecorator
-
Decorates the provided
Properties
with additional behavior by normalizing the key representing the path pointing to the according value. - NormalizedPropertiesDecorator(Properties, char[]) - Constructor for class org.refcodes.properties.NormalizedPropertiesDecorator
-
Decorates the provided
Properties
with additional behavior by normalizing the key representing the path pointing to the according value.
O
- org.refcodes.properties - module org.refcodes.properties
- org.refcodes.properties - package org.refcodes.properties
-
This artifact provides a canonical model for processing properties from various different formats (
*.yaml
,*.ini
,*.toml
,*.json
,*.xml
or*.properties
) and locations (JAR files, file system files, streams, HTTP resources or GIT repositories) and for converting properties to and from POJOs (plain java objects) and for applying various transformations and views to the properties. - ORPHAN_REMOVAL - Enum constant in enum class org.refcodes.properties.ReloadMode
-
When reloading properties from a resource, then any properties not existing in the resource (e.g. in a
File
) are removed from the accordingResourceProperties
.
P
- parseFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Inspects the given serialized representation and adds all declared elements found.
- parseFrom(String) - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Inspects the given serialized representation and adds all declared elements found.
- parseFrom(String, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Inspects the given serialized representation and adds all declared elements found.
- PolyglotProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "PolyglotProperties
" (or just "properties"). - PolyglotProperties(File) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenFile
. - PolyglotProperties(File, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenFile
. - PolyglotProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads or seeks the
PolyglotProperties
from the givenFile
. - PolyglotProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads or seeks the
PolyglotProperties
from the givenFile
. - PolyglotProperties(InputStream) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Reads the
PolyglotProperties
from the givenInputStream
. - PolyglotProperties(InputStream, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Reads the
PolyglotProperties
from the givenInputStream
. - PolyglotProperties(Class<?>, String) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(Object) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PolyglotProperties(String) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(String, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(URL) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenURL
. - PolyglotProperties(URL, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenURL
. - PolyglotProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, File) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenFile
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, File, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenFile
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, File, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads or seeks the
PolyglotProperties
from the givenFile
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads or seeks the
PolyglotProperties
from the givenFile
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, InputStream) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Reads the
PolyglotProperties
from the givenInputStream
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, InputStream, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Reads the
PolyglotProperties
from the givenInputStream
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Class<?>, String) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Class<?>, String, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Object) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, String) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, String, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the given file's path. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, URL) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenURL
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, URL, char...) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Loads the
PolyglotProperties
from the givenURL
. - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Map<?, ?>) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Properties) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties(PolyglotProperties.PolyglotPropertiesFactory, Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties(Properties) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.PolyglotProperties
-
Create a
PolyglotProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotProperties.PolyglotPropertiesFactory - Class in org.refcodes.properties
-
The
PolyglotProperties.PolyglotPropertiesFactory
is a meta factory using a collection ofResourcePropertiesFactory
instances to deliverResourceProperties
instances. - PolyglotPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "PolyglotPropertiesBuilder
" (or just "properties"). - PolyglotPropertiesBuilder(File) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads or seeks the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads or seeks the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reads the
PolyglotPropertiesBuilder
from the givenInputStream
. - PolyglotPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reads the
PolyglotPropertiesBuilder
from the givenInputStream
. - PolyglotPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PolyglotPropertiesBuilder(String) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenURL
. - PolyglotPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenURL
. - PolyglotPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, File) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, File, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, File, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads or seeks the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads or seeks the
PolyglotPropertiesBuilder
from the givenFile
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, InputStream) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reads the
PolyglotPropertiesBuilder
from the givenInputStream
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, InputStream, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reads the
PolyglotPropertiesBuilder
from the givenInputStream
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Class<?>, String) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Class<?>, String, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Object) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, String) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, String, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, String, ConfigLocator) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the given file's path. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, URL) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenURL
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, URL, char...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads the
PolyglotPropertiesBuilder
from the givenURL
. - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Map<?, ?>) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Properties) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder(PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory, Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder
-
Create a
PolyglotPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
is a meta factory using a collection ofResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instances to deliverResourceProperties.ResourcePropertiesBuilder
instances. - PolyglotPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Initializes the
PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
with a predefined set ofResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instances. - PolyglotPropertiesBuilderFactory(ResourcePropertiesFactory.ResourcePropertiesBuilderFactory...) - Constructor for class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Initializes the
PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
with the givenResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instances. - PolyglotPropertiesFactory() - Constructor for class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Initializes the
PolyglotProperties.PolyglotPropertiesFactory
with a predefined set ofResourcePropertiesFactory
instances. - PolyglotPropertiesFactory(ResourcePropertiesFactory...) - Constructor for class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Initializes the
PolyglotProperties.PolyglotPropertiesFactory
with the givenResourcePropertiesFactory
instances. - prependProperties(Properties) - Method in interface org.refcodes.properties.PropertiesPrecedence.MutablePropertiesPrecedence
-
Prepends the provided
Properties
to beginning of the precedence list, meaning that the addedProperties
have highest priority. - prependProperties(Properties) - Method in class org.refcodes.properties.PropertiesPrecedenceBuilderComposite
-
Prepends the provided
Properties
to beginning of the precedence list, meaning that the addedProperties
have highest priority. - ProfileProperties - Interface in org.refcodes.properties
-
The
ProfileProperties
extend theProperties
with Runtime-Profiles support. - ProfileProperties.MutableProfileProperties - Interface in org.refcodes.properties
-
The Interface MutableProfileProperties.
- ProfileProperties.ProfilePropertiesBuilder - Interface in org.refcodes.properties
-
The Interface ProfilePropertiesBuilder.
- ProfilePropertiesDecorator - Class in org.refcodes.properties
-
The
ProfilePropertiesDecorator
type decorates aProperties
instance and enriches it with profile support as ofProfileProperties
. - ProfilePropertiesDecorator(Object) - Constructor for class org.refcodes.properties.ProfilePropertiesDecorator
-
Create a
ProfilePropertiesDecorator
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - ProfilePropertiesDecorator(Map<?, ?>) - Constructor for class org.refcodes.properties.ProfilePropertiesDecorator
-
Create a
ProfileProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - ProfilePropertiesDecorator(Properties) - Constructor for class org.refcodes.properties.ProfilePropertiesDecorator
-
Decorates(!)
- ProfilePropertiesDecorator(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.ProfilePropertiesDecorator
-
Decorates(!)
- ProfilePropertiesProjection - Class in org.refcodes.properties
-
The
ProfilePropertiesProjection
applies the profiles as ofProfileProperties.getRuntimeProfiles()
onto the encapsulatedProperties
(ProfileProperties
) and provides a view of themProperties
(ProfileProperties
) from the profiles' point of view e.g. as when profiles have been applied to themProperties
(ProfileProperties
). - ProfilePropertiesProjection(ProfileProperties) - Constructor for class org.refcodes.properties.ProfilePropertiesProjection
-
Uses the
ProfileProperties
for the profile projection. - ProfilePropertiesProjection(ProfileProperties, String...) - Constructor for class org.refcodes.properties.ProfilePropertiesProjection
-
Uses the
ProfileProperties
for the profile projection. - ProfilePropertiesProjection(Properties.PropertiesBuilder, String...) - Constructor for class org.refcodes.properties.ProfilePropertiesProjection
-
Wraps the
Properties.PropertiesBuilder
with a profile projection. - ProfilePropertiesProjection(Properties, String...) - Constructor for class org.refcodes.properties.ProfilePropertiesProjection
-
Wraps the
Properties
with a profile projection. - Properties - Interface in org.refcodes.properties
-
The
Properties
are a https://www.metacodes.proization of theTable
. - Properties.MutableProperties - Interface in org.refcodes.properties
-
The interface
Properties.MutableProperties
defines "dirty" methods allowing to modify ("mutate") the properties. - Properties.PropertiesBuilder - Interface in org.refcodes.properties
-
The interface
Properties.PropertiesBuilder
defines builder functionality on top of the properties . - PropertiesAccessor - Interface in org.refcodes.properties
-
Provides an accessor for a
Properties
property. - PropertiesAccessor.PropertiesBuilder<B extends PropertiesAccessor.PropertiesBuilder<B>> - Interface in org.refcodes.properties
-
Provides a builder method for a
Properties
property returning the builder for applying multiple build operations. - PropertiesAccessor.PropertiesMutator - Interface in org.refcodes.properties
-
Provides a mutator for a
Properties
property. - PropertiesAccessor.PropertiesProperty - Interface in org.refcodes.properties
-
Provides a
Properties
property. - PropertiesBuilderImpl - Class in org.refcodes.properties
-
The Class PropertiesBuilderImpl.
- PropertiesBuilderImpl() - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create an empty
Properties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - PropertiesBuilderImpl(Object) - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create a
Properties.PropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PropertiesBuilderImpl(Map<?, ?>) - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create a
Properties.PropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PropertiesBuilderImpl(Properties) - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create a
Properties.PropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PropertiesBuilderImpl(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create a
Properties.PropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PropertiesBuilderImpl(Property...) - Constructor for class org.refcodes.properties.PropertiesBuilderImpl
-
Create a
Properties.PropertiesBuilder
instance containing the providedProperty
instances' key/value-pairs. - PropertiesImpl - Class in org.refcodes.properties
-
The Class PropertiesImpl.
- PropertiesImpl() - Constructor for class org.refcodes.properties.PropertiesImpl
-
Creates an empty immutable
Properties
object. - PropertiesImpl(Object) - Constructor for class org.refcodes.properties.PropertiesImpl
-
Create a
Properties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - PropertiesImpl(Map<?, ?>) - Constructor for class org.refcodes.properties.PropertiesImpl
-
Create a
Properties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PropertiesImpl(Properties) - Constructor for class org.refcodes.properties.PropertiesImpl
-
Create a
Properties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - PropertiesImpl(Property...) - Constructor for class org.refcodes.properties.PropertiesImpl
-
Create a
Properties
instance containing the providedProperty
instances' key/value-pairs. - PropertiesNotation - Enum Class in org.refcodes.properties
-
The currently known notations for
ResourceProperties
implementations. - PropertiesNotationAccessor - Interface in org.refcodes.properties
-
Provides an accessor for a
PropertiesNotation
property. - PropertiesNotationAccessor.PropertiesNotationBuilder<B extends PropertiesNotationAccessor.PropertiesNotationBuilder<B>> - Interface in org.refcodes.properties
-
Provides a builder method for a
PropertiesNotation
property returning the builder for applying multiple build operations. - PropertiesNotationAccessor.PropertiesNotationMutator - Interface in org.refcodes.properties
-
Provides a mutator for a
PropertiesNotation
property. - PropertiesNotationAccessor.PropertiesNotationProperty - Interface in org.refcodes.properties
-
Provides a
PropertiesNotation
property. - PropertiesPath - Enum Class in org.refcodes.properties
-
Enumeration representing defined path values.
- PropertiesPrecedence - Interface in org.refcodes.properties
-
Defines a meta-interface in order to retrieve properties from various different properties sources (
Properties
instances) by querying all the herein containedProperties
instances in the order of them being added. - PropertiesPrecedence.MutablePropertiesPrecedence - Interface in org.refcodes.properties
-
The interface
PropertiesPrecedence.MutablePropertiesPrecedence
defines "dirty" methods allowing to modify ("mutate") thePropertiesPrecedence
: Add or removeProperties
inside aPropertiesPrecedence
instance. - PropertiesPrecedence.PropertiesPrecedenceBuilder - Interface in org.refcodes.properties
-
The interface
PropertiesPrecedence.MutablePropertiesPrecedence
defines builder functionality on top of the properties . - PropertiesPrecedenceBuilderComposite - Class in org.refcodes.properties
- PropertiesPrecedenceBuilderComposite(List<Properties>) - Constructor for class org.refcodes.properties.PropertiesPrecedenceBuilderComposite
-
Creates a
PropertiesPrecedence.PropertiesPrecedenceBuilder
composite querying the providedProperties
in the given order. - PropertiesPrecedenceBuilderComposite(Properties...) - Constructor for class org.refcodes.properties.PropertiesPrecedenceBuilderComposite
-
Creates a
PropertiesPrecedence.PropertiesPrecedenceBuilder
composite querying the providedProperties
in the given order. - PropertiesPrecedenceComposite - Class in org.refcodes.properties
-
Retrieve properties from various different properties sources (
Properties
instances) by querying all the herein containedProperties
instances in the order of them being added. - PropertiesPrecedenceComposite(List<Properties>) - Constructor for class org.refcodes.properties.PropertiesPrecedenceComposite
-
Creates a
PropertiesPrecedence
composite querying the providedProperties
in the given order. - PropertiesPrecedenceComposite(Properties...) - Constructor for class org.refcodes.properties.PropertiesPrecedenceComposite
-
Creates a
PropertiesPrecedence
composite querying the providedProperties
in the given order. - PropertiesSugar - Class in org.refcodes.properties
-
Declarative syntactic sugar which may be statically imported in order to allow declarative definitions for the construction of
Properties
precedences usingProfilePropertiesDecorator
,ProfilePropertiesProjection
,ResourceProperties
orPropertiesPrecedenceComposite
(and the like). - PropertiesSugar() - Constructor for class org.refcodes.properties.PropertiesSugar
- put(String, String) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- put(Relation<String, String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putAll(Map<? extends String, ? extends String>) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- putAll(Map<? extends String, ? extends String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putAll(Properties) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
This method inserts all elements (key/value-pairs) found in the provided
Properties
instances of interoperability reasons. - putAll(Properties) - Method in interface org.refcodes.properties.Properties.MutableProperties
-
This method inserts all elements (key/value-pairs) found in the provided
Properties
instances of interoperability reasons. - putDirAt(int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Object[], int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Object[], int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Object, int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Object, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(String[], int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(String[], int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(String, int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(String, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Collection<?>, int, Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- putDirAt(Collection<?>, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.MutableProperties
Q
- query(Object...) - Method in interface org.refcodes.properties.Properties
- query(String) - Method in interface org.refcodes.properties.Properties
- query(String...) - Method in interface org.refcodes.properties.Properties
- query(Collection<?>) - Method in interface org.refcodes.properties.Properties
- query(Pattern) - Method in interface org.refcodes.properties.Properties
- queryBetween(Object[], Object[], Object[]) - Method in interface org.refcodes.properties.Properties
- queryBetween(Object, Object, Object) - Method in interface org.refcodes.properties.Properties
- queryBetween(String[], String[], String[]) - Method in interface org.refcodes.properties.Properties
- queryBetween(String, String, String) - Method in interface org.refcodes.properties.Properties
- queryBetween(Collection<?>, Collection<?>, Collection<?>) - Method in interface org.refcodes.properties.Properties
- queryFrom(Object[], Object[]) - Method in interface org.refcodes.properties.Properties
- queryFrom(Object, Object) - Method in interface org.refcodes.properties.Properties
- queryFrom(String[], String[]) - Method in interface org.refcodes.properties.Properties
- queryFrom(String, String) - Method in interface org.refcodes.properties.Properties
- queryFrom(Collection<?>, Collection<?>) - Method in interface org.refcodes.properties.Properties
- queryFrom(Pattern, String) - Method in interface org.refcodes.properties.Properties
- queryTo(Object[], String) - Method in interface org.refcodes.properties.Properties
- queryTo(Object, String) - Method in interface org.refcodes.properties.Properties
- queryTo(String[], String) - Method in interface org.refcodes.properties.Properties
- queryTo(String, String) - Method in interface org.refcodes.properties.Properties
- queryTo(Collection<?>, String) - Method in interface org.refcodes.properties.Properties
- queryTo(Pattern, String) - Method in interface org.refcodes.properties.Properties
R
- reload() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.JavaProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.JsonProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in interface org.refcodes.properties.ResourceProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.TomlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.XmlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload() - Method in class org.refcodes.properties.YamlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.JavaProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.JsonProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in interface org.refcodes.properties.ResourceProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.TomlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.XmlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - reload(ReloadMode) - Method in class org.refcodes.properties.YamlProperties
-
Reloads the
ResourceProperties
from the resource to which theResourceProperties
are attached to (such as aFile
as ofResourceProperties.MutableResoureProperties.loadFrom(File)
orResourceProperties.MutableResoureProperties.saveTo(File)
). - ReloadMode - Enum Class in org.refcodes.properties
-
Mode of operation regarding the
ResourceProperties.reload(ReloadMode)
method. - remove(Object) - Method in class org.refcodes.properties.AbstractPropertiesBuilderDecorator
- removeAll(Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeAll(Object...) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeAll(String) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeAll(String...) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeAll(Collection<?>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeAll(Pattern) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeDirAt(int) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeDirAt(Object[], int) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeDirAt(Object, int) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeDirAt(String[], int) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeDirAt(String, int) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeFrom(Object) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeFrom(Object...) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeFrom(String) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removeFrom(String...) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removePaths(String...) - Method in interface org.refcodes.properties.Properties.MutableProperties
- removePaths(Collection<?>) - Method in interface org.refcodes.properties.Properties.MutableProperties
- ResourceLoaderBuilder<B extends ResourceLoaderBuilder<B>> - Interface in org.refcodes.properties
-
This interface provides builder additions (as of the builder pattern for chained configuring method calls) for "dynamic"
ResourceProperties
: AsResourceProperties
are immutable from an interface's point of view, there are no mutating methods provided. - ResourceProperties - Interface in org.refcodes.properties
-
The
ResourceProperties
are a https://www.metacodes.proization of theTable
. - ResourceProperties.MutableResoureProperties - Interface in org.refcodes.properties
-
The interface
ResourceProperties.MutableResoureProperties
defines "dirty" methods allowing to modify ("mutate") theResourceProperties
. - ResourceProperties.ResourcePropertiesBuilder - Interface in org.refcodes.properties
-
The interface
ResourceProperties.ResourcePropertiesBuilder
defines builder functionality on top of theResourceProperties.MutableResoureProperties
. - ResourcePropertiesFactory - Interface in org.refcodes.properties
-
Factory interface for creating
ResourceProperties
instances. - ResourcePropertiesFactory.ResourcePropertiesBuilderFactory - Interface in org.refcodes.properties
-
Factory interface for creating
ResourceProperties.ResourcePropertiesBuilder
instances. - retrieveBetween(Object[], Object[]) - Method in interface org.refcodes.properties.Properties
- retrieveBetween(Object, Object) - Method in interface org.refcodes.properties.Properties
- retrieveBetween(String[], String[]) - Method in interface org.refcodes.properties.Properties
- retrieveBetween(String, String) - Method in interface org.refcodes.properties.Properties
- retrieveBetween(Collection<?>, Collection<?>) - Method in interface org.refcodes.properties.Properties
- retrieveFrom(Object) - Method in interface org.refcodes.properties.Properties
- retrieveFrom(Object...) - Method in interface org.refcodes.properties.Properties
- retrieveFrom(String) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- retrieveFrom(String) - Method in class org.refcodes.properties.EnvironmentProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.JavaProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.JsonProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- retrieveFrom(String) - Method in class org.refcodes.properties.ProfilePropertiesProjection
- retrieveFrom(String) - Method in interface org.refcodes.properties.Properties
- retrieveFrom(String) - Method in class org.refcodes.properties.PropertiesBuilderImpl
- retrieveFrom(String) - Method in class org.refcodes.properties.PropertiesImpl
- retrieveFrom(String) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- retrieveFrom(String) - Method in class org.refcodes.properties.SystemProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.TomlProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.XmlProperties
- retrieveFrom(String) - Method in class org.refcodes.properties.YamlProperties
- retrieveFrom(String...) - Method in interface org.refcodes.properties.Properties
- retrieveFrom(Collection<?>) - Method in interface org.refcodes.properties.Properties
- retrieveTo(Object) - Method in interface org.refcodes.properties.Properties
- retrieveTo(Object...) - Method in interface org.refcodes.properties.Properties
- retrieveTo(String) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- retrieveTo(String) - Method in class org.refcodes.properties.EnvironmentProperties
- retrieveTo(String) - Method in class org.refcodes.properties.JavaProperties
- retrieveTo(String) - Method in class org.refcodes.properties.JsonProperties
- retrieveTo(String) - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- retrieveTo(String) - Method in class org.refcodes.properties.ProfilePropertiesProjection
- retrieveTo(String) - Method in interface org.refcodes.properties.Properties
- retrieveTo(String) - Method in class org.refcodes.properties.PropertiesBuilderImpl
- retrieveTo(String) - Method in class org.refcodes.properties.PropertiesImpl
- retrieveTo(String) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- retrieveTo(String) - Method in class org.refcodes.properties.SystemProperties
- retrieveTo(String) - Method in class org.refcodes.properties.TomlProperties
- retrieveTo(String) - Method in class org.refcodes.properties.XmlProperties
- retrieveTo(String) - Method in class org.refcodes.properties.YamlProperties
- retrieveTo(String...) - Method in interface org.refcodes.properties.Properties
- retrieveTo(Collection<?>) - Method in interface org.refcodes.properties.Properties
- RUNTIME_PROFILES_PATH - Enum constant in enum class org.refcodes.properties.PropertiesPath
-
Default path where the profile(s) are to be retrieved by the
ProfileProperties
and the like implementations.
S
- saveTo(File) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
. - saveTo(File, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
using the provided delimiter as the destination's path delimiter. - saveTo(File, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
. - saveTo(File, String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Saves the properties to the given
File
using the provided delimiter as the destination's path delimiter. - saveTo(File, String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Saves the properties to the given
File
using the provided delimiter as the destination's path delimiter. - saveTo(File, String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
using the provided delimiter as the destination's path delimiter. - saveTo(OutputStream) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
OutputStream
. - saveTo(OutputStream, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
OutputStream
. - saveTo(OutputStream, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
OutputStream
. - saveTo(OutputStream, String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
The comment is ignored for the JSON format as JSON does not(!)
- saveTo(OutputStream, String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Saves the properties to the given
OutputStream
using the provided delimiter as the destination's path delimiter. - saveTo(OutputStream, String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
OutputStream
using the provided delimiter as the destination's path delimiter. - saveTo(String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
. - saveTo(String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the given
File
using the provided delimiter as the destination's path delimiter. - saveTo(String, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the
File
represented by the given file path. - saveTo(String, String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Saves the properties to the
File
represented by the given file path using the provided delimiter as the destination's path delimiter. - saveToJavaProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the Java properties to the given
File
. - saveToJavaProperties(Properties, OutputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Writes the properties to the given
OutputStream
. - saveToJavaProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the Java properties to the given file's path.
- saveToJsonProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the JSON properties to the given
File
. - saveToJsonProperties(Properties, OutputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Writes the properties to the given
OutputStream
. - saveToJsonProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the JSON properties to the given file's path.
- saveToTomlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the TOML properties to the given
File
. - saveToTomlProperties(Properties, OutputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Writes the properties to the given
OutputStream
. - saveToTomlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the TOML properties to the given file's path.
- saveToXmlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the XML properties to the given
File
. - saveToXmlProperties(Properties, OutputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Writes the properties to the given
OutputStream
. - saveToXmlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the XML properties to the given file's path.
- saveToYamlProperties(Properties, File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the YAML properties to the given
File
. - saveToYamlProperties(Properties, OutputStream) - Static method in class org.refcodes.properties.PropertiesSugar
-
Writes the properties to the given
OutputStream
. - saveToYamlProperties(Properties, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Saves the YAML properties to the given file's path.
- schedule(ResourceProperties) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties.ResourcePropertiesBuilder) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
) and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties.ResourcePropertiesBuilder, int) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties.ResourcePropertiesBuilder, int, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties.ResourcePropertiesBuilder, int, ReloadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties.ResourcePropertiesBuilder, int, ReloadMode, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties.ResourcePropertiesBuilder, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
) and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties.ResourcePropertiesBuilder, ReloadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
) and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties.ResourcePropertiesBuilder, ReloadMode, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
) and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties, int) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties, int, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties, int, ReloadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties, int, ReloadMode, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofResourceProperties.reload(ReloadMode)
being called withReloadMode.ORPHAN_REMOVAL
). - schedule(ResourceProperties, ReloadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - schedule(ResourceProperties, ReloadMode, ThreadMode) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofResourceProperties.reload(ReloadMode)
being called with your argument). - ScheduledResourceProperties - Interface in org.refcodes.properties
-
The
ScheduledResourceProperties
enrichResourceProperties
with scheduling functionality whereby the properties are being automatically reloaded periodically viaResourceProperties.reload(ReloadMode)
. - ScheduledResourceProperties.ScheduledMuableResourceProperties - Interface in org.refcodes.properties
-
The interface
ScheduledResourceProperties.ScheduledMuableResourceProperties
defines "dirty" methods allowing to modify ("mutate") theScheduledResourceProperties
. - ScheduledResourceProperties.ScheduledResourcePropertiesBuilder - Interface in org.refcodes.properties
-
The interface
ScheduledResourceProperties.ScheduledResourcePropertiesBuilder
defines builder functionality on top of theScheduledResourceProperties.ScheduledMuableResourceProperties
. - ScheduledResourcePropertiesBuilderDecorator - Class in org.refcodes.properties
-
The
ScheduledResourcePropertiesBuilderDecorator
decoratesResourceProperties.ResourcePropertiesBuilder
from which the properties are to be reloaded periodically viaAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
. - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, int) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and orphan removal (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, int, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and orphan removal (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, int, ReloadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and the given orphan removal strategy (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, int, ReloadMode, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the given poll loop time and the given orphan removal strategy (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, ReloadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesBuilderDecorator(ResourceProperties.ResourcePropertiesBuilder, ReloadMode, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
-
Constructs the
ScheduledResourcePropertiesBuilderDecorator
wrapping the givenResourceProperties.ResourcePropertiesBuilder
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofAbstractResourcePropertiesBuilderDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesDecorator - Class in org.refcodes.properties
-
The
ScheduledResourcePropertiesDecorator
decoratesResourceProperties
from which the properties are to be reloaded periodically viaAbstractResourcePropertiesDecorator.reload(ReloadMode)
. - ScheduledResourcePropertiesDecorator(ResourceProperties) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesDecorator(ResourceProperties, int) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and orphan removal (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesDecorator(ResourceProperties, int, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and orphan removal (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesDecorator(ResourceProperties, int, ReloadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and the given orphan removal strategy (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesDecorator(ResourceProperties, int, ReloadMode, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the given poll loop time and the given orphan removal strategy (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesDecorator(ResourceProperties, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with default settings being a poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and orphan removal (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called withtrue
). - ScheduledResourcePropertiesDecorator(ResourceProperties, ReloadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called with your argument). - ScheduledResourcePropertiesDecorator(ResourceProperties, ReloadMode, ThreadMode) - Constructor for class org.refcodes.properties.ScheduledResourcePropertiesDecorator
-
Constructs the
ScheduledResourcePropertiesDecorator
wrapping the givenResourceProperties
with setting the the default poll loop time of 10 seconds (as ofIoPollLoopTime.NORM
and the given orphan removal strategy (as ofAbstractResourcePropertiesDecorator.reload(ReloadMode)
being called with your argument). - seekFrom(File) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(File, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(File, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(Class<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(Class<?>, String) - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the
ConfigLocator.ALL
configuration. - seekFrom(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the
ConfigLocator
configuration passed. - seekFrom(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the
ConfigLocator
configuration passed. - seekFrom(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the
ConfigLocator
configuration passed. - seekFrom(Class<?>, String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the
ConfigLocator
configuration passed. - seekFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(String) - Method in class org.refcodes.properties.TomlPropertiesBuilder
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(String, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFrom(String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Loads a properties file from the file path directly or (if not found) from the first folder containing such a file as of the specification for the
ConfigLocator
(if not provided, thenConfigLocator.ALL
is assumed). - seekFromJavaProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromJavaProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromJsonProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromJsonProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromTomlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromTomlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromXmlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromXmlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromYamlProperties(File) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - seekFromYamlProperties(String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification of the
ConfigLocator.ALL
configuration. - setProperties(Properties) - Method in interface org.refcodes.properties.PropertiesAccessor.PropertiesMutator
-
Sets the properties for the
Properties
property. - setProperties(T) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
-
Hook to set the properties.
- setPropertiesNotation(PropertiesNotation) - Method in interface org.refcodes.properties.PropertiesNotationAccessor.PropertiesNotationMutator
-
Sets the properties notation for the
PropertiesNotation
property. - size() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- size() - Method in class org.refcodes.properties.EnvironmentProperties
- size() - Method in class org.refcodes.properties.JavaProperties
- size() - Method in class org.refcodes.properties.JsonProperties
- size() - Method in class org.refcodes.properties.ProfilePropertiesProjection
- size() - Method in class org.refcodes.properties.PropertiesImpl
- size() - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- size() - Method in class org.refcodes.properties.SystemProperties
- size() - Method in class org.refcodes.properties.TomlProperties
- size() - Method in class org.refcodes.properties.XmlProperties
- size() - Method in class org.refcodes.properties.YamlProperties
- start() - Method in class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
- start() - Method in class org.refcodes.properties.ScheduledResourcePropertiesDecorator
- stop() - Method in class org.refcodes.properties.ScheduledResourcePropertiesBuilderDecorator
- stop() - Method in class org.refcodes.properties.ScheduledResourcePropertiesDecorator
- StrictProperties - Interface in org.refcodes.properties
-
The
StrictProperties
extends theProperties
with all the getters to throw aKeyNotFoundRuntimeException
instead of returning null in case the key was not found. - StrictProperties.MutableStrictProperties - Interface in org.refcodes.properties
-
The Interface MutableStrictProperties.
- StrictProperties.StrictPropertiesBuilder - Interface in org.refcodes.properties
-
The Interface StrictPropertiesBuilder.
- StrictPropertiesDecorator - Class in org.refcodes.properties
-
The
StrictPropertiesDecorator
type decorates aProperties
instance with all the getters to throw aKeyNotFoundRuntimeException
instead of returning null in case the key was not found. - StrictPropertiesDecorator(Properties) - Constructor for class org.refcodes.properties.StrictPropertiesDecorator
-
Decorates the provided
Properties
with additional behavior with all the getters to throw aKeyNotFoundRuntimeException
instead of returning null in case the key was not found . - SystemProperties - Class in org.refcodes.properties
-
Extension of the
Properties
type overwriting methods in order to access system properties as passed via the "-Dkey=value" when launching the JVM (e.g.java -Dconsole.width=220) The keys are transformed to a system properties by removing a prefixed "/" path delimiter (as ofProperties.getDelimiter()
and converting all other path delimiters "/" to the system property's (de facto standard) separator ".". - SystemProperties() - Constructor for class org.refcodes.properties.SystemProperties
T
- toByteArray(InputStream) - Static method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Converts a byte array from an
InputStream
. - toByteArray(InputStream) - Static method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Converts a byte array from an
InputStream
. - toDataStructure(String) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- toDataStructure(String) - Method in class org.refcodes.properties.EnvironmentProperties
- toDataStructure(String) - Method in class org.refcodes.properties.JavaProperties
- toDataStructure(String) - Method in class org.refcodes.properties.JsonProperties
- toDataStructure(String) - Method in class org.refcodes.properties.ProfilePropertiesProjection
- toDataStructure(String) - Method in class org.refcodes.properties.PropertiesImpl
- toDataStructure(String) - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- toDataStructure(String) - Method in class org.refcodes.properties.SystemProperties
- toDataStructure(String) - Method in class org.refcodes.properties.TomlProperties
- toDataStructure(String) - Method in class org.refcodes.properties.XmlProperties
- toDataStructure(String) - Method in class org.refcodes.properties.YamlProperties
- toDelimiters() - Method in class org.refcodes.properties.NormalizedPropertiesDecorator
- toDump() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- toDump() - Method in class org.refcodes.properties.AbstractResourceProperties
- toDump(Map<String, String>) - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- toDump(Map<String, String>) - Method in class org.refcodes.properties.AbstractResourceProperties
- TOML - Enum constant in enum class org.refcodes.properties.PropertiesNotation
- TomlProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "TOML properties". - TomlProperties() - Constructor for class org.refcodes.properties.TomlProperties
-
Create an empty
TomlProperties
instance. - TomlProperties(File) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given
File
. - TomlProperties(File, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given
File
. - TomlProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads or seeks the TOML Properties from the given
File
. - TomlProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads or seeks the TOML Properties from the given
File
. - TomlProperties(InputStream) - Constructor for class org.refcodes.properties.TomlProperties
-
Reads the TOML Properties from the given
InputStream
. - TomlProperties(InputStream, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Reads the TOML Properties from the given
InputStream
. - TomlProperties(Class<?>, String) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(Object) - Constructor for class org.refcodes.properties.TomlProperties
-
Create a
TomlProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - TomlProperties(String) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(String, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given file's path.
- TomlProperties(URL) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given
URL
. - TomlProperties(URL, char...) - Constructor for class org.refcodes.properties.TomlProperties
-
Loads the TOML Properties from the given
URL
. - TomlProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.TomlProperties
-
Create a
TomlProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlProperties(Properties) - Constructor for class org.refcodes.properties.TomlProperties
-
Create a
TomlProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.TomlProperties
-
Create a
TomlProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlProperties.TomlPropertiesFactory - Class in org.refcodes.properties
-
The
TomlProperties.TomlPropertiesFactory
represents aResourcePropertiesFactory
creating instances of typeTomlProperties
. - TomlPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "TOML properties". - TomlPropertiesBuilder() - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Create an empty
TomlPropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - TomlPropertiesBuilder(File) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given
File
. - TomlPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given
File
. - TomlPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads or seeks the TOML properties from the given
File
. - TomlPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads or seeks the TOML properties from the given
File
. - TomlPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Reads the TOML properties from the given
InputStream
. - TomlPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Reads the TOML properties from the given
InputStream
. - TomlPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Create a
TomlPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - TomlPropertiesBuilder(String) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given file's path.
- TomlPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given
URL
. - TomlPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Loads the TOML properties from the given
URL
. - TomlPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Create a
TomlPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Create a
TomlPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.TomlPropertiesBuilder
-
Create a
TomlPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - TomlPropertiesBuilder.TomlPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
TomlPropertiesBuilder.TomlPropertiesBuilderFactory
represents aResourcePropertiesFactory.ResourcePropertiesBuilderFactory
creating instances of typeTomlPropertiesBuilder
. - TomlPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
- TomlPropertiesFactory() - Constructor for class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
- toNormalized(String, char, char...) - Static method in class org.refcodes.properties.NormalizedPropertiesDecorator
- toNormalized(Properties) - Static method in class org.refcodes.properties.PropertiesSugar
-
Decorates the provided
Properties
with additional behavior by normalizing the key representing the path pointing to the according value. - toNormalized(Properties, char[]) - Static method in class org.refcodes.properties.PropertiesSugar
-
Decorates the provided
Properties
with additional behavior by normalizing the key representing the path pointing to the according value. - toPrecedence(Properties...) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
Properties
composite querying the providedProperties
in the given order. - toPrintable() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- toPrintable() - Method in class org.refcodes.properties.AbstractResourceProperties
- toProperties(File) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given
File
. - toProperties(File) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given
File
. - toProperties(File, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given
File
. - toProperties(File, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given
File
. - toProperties(File, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Loads or seeks the properties from the given
File
. - toProperties(File, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Loads or seeks the properties from the given
File
. - toProperties(InputStream) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Reads the properties from the given
InputStream
. - toProperties(InputStream, char...) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Reads the properties from the given
InputStream
. - toProperties(Class<?>, String) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(Class<?>, String, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(Object) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Will return
ResourceProperties
created by the first addedResourcePropertiesFactory
instance. - toProperties(Object) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Will return
ResourceProperties.ResourcePropertiesBuilder
created by the first addedResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instance. - toProperties(Object) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(Object) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - toProperties(String) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Loads the properties from the given file's path.
- toProperties(String, ConfigLocator, char...) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Loads the properties from the given file's path.
- toProperties(URL) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Loads the properties from the given
URL
. - toProperties(URL, char...) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Loads the properties from the given
URL
. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Will return
ResourceProperties
created by the first addedResourcePropertiesFactory
instance. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Will return
ResourceProperties.ResourcePropertiesBuilder
created by the first addedResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instance. - toProperties(Map<?, ?>) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Map<?, ?>) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedMap
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Will return
ResourceProperties
created by the first addedResourcePropertiesFactory
instance. - toProperties(Properties) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Will return
ResourceProperties.ResourcePropertiesBuilder
created by the first addedResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instance. - toProperties(Properties) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties
instance using the path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.JavaProperties.JavaPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.JavaPropertiesBuilder.JavaPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.JsonProperties.JsonPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.JsonPropertiesBuilder.JsonPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.PolyglotProperties.PolyglotPropertiesFactory
-
Will return
ResourceProperties
created by the first addedResourcePropertiesFactory
instance. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.PolyglotPropertiesBuilder.PolyglotPropertiesBuilderFactory
-
Will return
ResourceProperties.ResourcePropertiesBuilder
created by the first addedResourcePropertiesFactory.ResourcePropertiesBuilderFactory
instance. - toProperties(Properties.PropertiesBuilder) - Method in interface org.refcodes.properties.ResourcePropertiesFactory.ResourcePropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in interface org.refcodes.properties.ResourcePropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.TomlProperties.TomlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.TomlPropertiesBuilder.TomlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toProperties(Properties.PropertiesBuilder) - Method in class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
-
Create a
ResourceProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - toPropertiesBuilder() - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates an empty
Properties.PropertiesBuilder
. - toPropertiesBuilder(Properties...) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a new
Properties.PropertiesBuilder
from theProperties
. - toProperty(String, String) - Static method in class org.refcodes.properties.PropertiesSugar
-
Creates a
Property
from the provided key and the provided value. - toRuntimeProfile() - Method in interface org.refcodes.properties.ProfileProperties
-
Evaluates the active Runtime-Profiles as of
ProfileProperties.getRuntimeProfiles()
and creates the accordingProperties
. - toRuntimeProfile(String...) - Method in interface org.refcodes.properties.ProfileProperties
-
Evaluates the provided Runtime-Profiles and creates the according
Properties
. - toSerialized() - Method in class org.refcodes.properties.AbstractResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized() - Method in class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized() - Method in interface org.refcodes.properties.ResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(char) - Method in interface org.refcodes.properties.ResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String) - Method in interface org.refcodes.properties.ResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String, char) - Method in class org.refcodes.properties.AbstractResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilderDecorator
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String, char) - Method in class org.refcodes.properties.AbstractResourcePropertiesDecorator
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String, char) - Method in interface org.refcodes.properties.ResourceProperties.MutableResoureProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
- toSerialized(String, char) - Method in interface org.refcodes.properties.ResourceProperties
-
Produces the external representation of the properties as of the serialized format supported by the implementing class.
V
- valueOf(String) - Static method in enum class org.refcodes.properties.PropertiesNotation
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.properties.PropertiesPath
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.refcodes.properties.ReloadMode
-
Returns the enum constant of this class with the specified name.
- values() - Method in class org.refcodes.properties.AbstractPropertiesDecorator
- values() - Method in class org.refcodes.properties.EnvironmentProperties
- values() - Method in class org.refcodes.properties.JavaProperties
- values() - Method in class org.refcodes.properties.JsonProperties
- values() - Method in class org.refcodes.properties.ProfilePropertiesProjection
- values() - Method in class org.refcodes.properties.PropertiesImpl
- values() - Static method in enum class org.refcodes.properties.PropertiesNotation
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.refcodes.properties.PropertiesPath
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Method in class org.refcodes.properties.PropertiesPrecedenceComposite
- values() - Static method in enum class org.refcodes.properties.ReloadMode
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Method in class org.refcodes.properties.SystemProperties
- values() - Method in class org.refcodes.properties.TomlProperties
- values() - Method in class org.refcodes.properties.XmlProperties
- values() - Method in class org.refcodes.properties.YamlProperties
W
- withAppendProperties(Properties) - Method in interface org.refcodes.properties.PropertiesPrecedence.PropertiesPrecedenceBuilder
-
Builder method for the
PropertiesPrecedence.MutablePropertiesPrecedence.appendProperties(Properties)
method. - withFile(File) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withFile(File, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withFile(File, ConfigLocator) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withFile(File, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withInputStream(InputStream) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Reads the properties from the given
InputStream
. - withInputStream(InputStream, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Reads the properties from the given
InputStream
. - withInsert(Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsert(Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsert(Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsert(Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsert(Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsert(PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsert(PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsert(PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsert(PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsert(PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Object[], Object, Object[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Object, Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Object, Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Object, Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Object, Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Object, Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(String[], Object, String[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(String, Object, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(String, Object, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(String, Object, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(String, Object, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(String, Object, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(String, PathMap<String>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(Object, Object...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(Object, Object...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(Object, Object...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(Object, Object...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(Object, Object...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(Object, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(Object, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(Object, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(Object, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(Object, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(Object, String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(Object, String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(Object, String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(Object, String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(Object, String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(Object, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(PathMap<String>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(PathMap<String>, Object...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(PathMap<String>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(PathMap<String>, String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Object[], Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Object[], Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Object[], Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Object[], Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Object[], Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Object[], PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Object, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(String[], Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(String[], Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(String[], Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(String[], Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(String[], Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(String[], PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(String, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(String, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(String, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(String, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(String, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(String, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(String, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(String, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(String, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(String, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Collection<?>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Collection<?>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Collection<?>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Collection<?>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Collection<?>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withInsertTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withInsertTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withInsertTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withInsertTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withInsertTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withLoadFrom(File) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(File)
. - withLoadFrom(File, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(File, char...)
. - withLoadFrom(InputStream) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(InputStream)
. - withLoadFrom(InputStream, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(InputStream, char...)
. - withLoadFrom(Class<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(Class, String)
. - withLoadFrom(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(Class, String, char...)
. - withLoadFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(String)
. - withLoadFrom(String, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(String, char...)
. - withLoadFrom(URL) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(URL)
. - withLoadFrom(URL, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(URL, char...)
. - withMerge(Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMerge(Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMerge(Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMerge(Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMerge(Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMerge(PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMerge(PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMerge(PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMerge(PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMerge(PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Object[], Object, Object[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Object[], Object, Object[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Object[], PathMap<String>, Object[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Object, Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Object, Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Object, Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Object, Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Object, Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Object, PathMap<String>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Object, PathMap<String>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(String[], Object, String[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(String[], Object, String[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(String[], PathMap<String>, String[]) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(String[], PathMap<String>, String[]) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(String, Object, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(String, Object, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(String, Object, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(String, Object, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(String, Object, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(String, PathMap<String>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(String, PathMap<String>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Collection<?>, Object, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeBetween(Collection<?>, PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(Object, Object...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(Object, Object...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(Object, Object...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(Object, Object...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(Object, Object...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(Object, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(Object, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(Object, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(Object, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(Object, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(Object, String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(Object, String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(Object, String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(Object, String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(Object, String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(Object, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(Object, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(PathMap<String>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(PathMap<String>, Object...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Object...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(PathMap<String>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(PathMap<String>, String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeFrom(PathMap<String>, Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeFrom(PathMap<String>, Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Object[], Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Object[], Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Object[], Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Object[], Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Object[], Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Object[], PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Object[], PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Object, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Object, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Object, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Object, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Object, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Object, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Object, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(String[], Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(String[], Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(String[], Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(String[], Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(String[], Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(String[], PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(String[], PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(String, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(String, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(String, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(String, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(String, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(String, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(String, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(String, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(String, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(String, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Collection<?>, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Collection<?>, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Collection<?>, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Collection<?>, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Collection<?>, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withMergeTo(Collection<?>, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withMergeTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withMergeTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withMergeTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withMergeTo(Collection<?>, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPrependProperties(Properties) - Method in interface org.refcodes.properties.PropertiesPrecedence.PropertiesPrecedenceBuilder
-
Builder method for the
PropertiesPrecedence.MutablePropertiesPrecedence.prependProperties(Properties)
method. - withProperties(Properties) - Method in interface org.refcodes.properties.PropertiesAccessor.PropertiesBuilder
-
Sets the properties for the
Properties
property. - withPropertiesNotation(PropertiesNotation) - Method in interface org.refcodes.properties.PropertiesNotationAccessor.PropertiesNotationBuilder
-
Sets the properties notation for the
PropertiesNotation
property. - withPut(Object[], String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(Object[], String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(Object[], String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(Object[], String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(Object[], String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPut(String[], String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(String[], String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(String[], String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(String[], String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(String[], String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPut(String, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(String, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(String, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(String, String) - Method in class org.refcodes.properties.PropertiesBuilderImpl
- withPut(String, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(String, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPut(Collection<?>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(Collection<?>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(Collection<?>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(Collection<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(Collection<?>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPut(Property) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(Property) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(Property) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(Property) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(Property) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPut(Relation<String, String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPut(Relation<String, String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPut(Relation<String, String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPut(Relation<String, String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPut(Relation<String, String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutBoolean(Object[], Boolean) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutBoolean(Object[], Boolean) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutBoolean(Object[], Boolean) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutBoolean(Object[], Boolean) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutBoolean(Object[], Boolean) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutBoolean(Object, Boolean) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutBoolean(Object, Boolean) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutBoolean(Object, Boolean) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutBoolean(Object, Boolean) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutBoolean(Object, Boolean) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutBoolean(String[], Boolean) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutBoolean(String[], Boolean) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutBoolean(String[], Boolean) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutBoolean(String[], Boolean) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutBoolean(String[], Boolean) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutBoolean(String, Boolean) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutBoolean(String, Boolean) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutBoolean(String, Boolean) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutBoolean(String, Boolean) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutBoolean(String, Boolean) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutBoolean(Collection<?>, Boolean) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutBoolean(Collection<?>, Boolean) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutBoolean(Collection<?>, Boolean) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutBoolean(Collection<?>, Boolean) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutBoolean(Collection<?>, Boolean) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutByte(Object[], Byte) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutByte(Object[], Byte) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutByte(Object[], Byte) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutByte(Object[], Byte) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutByte(Object[], Byte) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutByte(Object, Byte) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutByte(Object, Byte) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutByte(Object, Byte) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutByte(Object, Byte) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutByte(Object, Byte) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutByte(String[], Byte) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutByte(String[], Byte) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutByte(String[], Byte) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutByte(String[], Byte) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutByte(String[], Byte) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutByte(String, Byte) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutByte(String, Byte) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutByte(String, Byte) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutByte(String, Byte) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutByte(String, Byte) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutByte(Collection<?>, Byte) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutByte(Collection<?>, Byte) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutByte(Collection<?>, Byte) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutByte(Collection<?>, Byte) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutByte(Collection<?>, Byte) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutChar(Object[], Character) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutChar(Object[], Character) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutChar(Object[], Character) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutChar(Object[], Character) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutChar(Object[], Character) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutChar(Object, Character) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutChar(Object, Character) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutChar(Object, Character) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutChar(Object, Character) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutChar(Object, Character) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutChar(String[], Character) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutChar(String[], Character) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutChar(String[], Character) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutChar(String[], Character) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutChar(String[], Character) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutChar(String, Character) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutChar(String, Character) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutChar(String, Character) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutChar(String, Character) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutChar(String, Character) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutChar(Collection<?>, Character) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutChar(Collection<?>, Character) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutChar(Collection<?>, Character) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutChar(Collection<?>, Character) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutChar(Collection<?>, Character) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutClass(Object[], Class<C>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutClass(Object[], Class<C>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutClass(Object[], Class<C>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutClass(Object[], Class<C>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutClass(Object[], Class<C>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutClass(Object, Class<C>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutClass(Object, Class<C>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutClass(Object, Class<C>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutClass(Object, Class<C>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutClass(Object, Class<C>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutClass(String[], Class<C>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutClass(String[], Class<C>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutClass(String[], Class<C>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutClass(String[], Class<C>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutClass(String[], Class<C>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutClass(String, Class<C>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutClass(String, Class<C>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutClass(String, Class<C>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutClass(String, Class<C>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutClass(String, Class<C>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutClass(Collection<?>, Class<C>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutClass(Collection<?>, Class<C>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutClass(Collection<?>, Class<C>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutClass(Collection<?>, Class<C>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutClass(Collection<?>, Class<C>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Object[], int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Object[], int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Object[], int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Object[], int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Object[], int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Object[], int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Object[], int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Object[], int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Object[], int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Object[], int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Object, int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Object, int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Object, int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Object, int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Object, int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Object, int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Object, int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Object, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Object, int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Object, int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(String[], int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(String[], int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(String[], int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(String[], int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(String[], int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(String[], int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(String[], int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(String[], int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(String[], int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(String[], int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(String, int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(String, int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(String, int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(String, int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(String, int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(String, int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(String, int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(String, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(String, int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(String, int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Collection<?>, int, Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Collection<?>, int, Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Collection<?>, int, Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Collection<?>, int, Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Collection<?>, int, Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDirAt(Collection<?>, int, PathMap<String>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDouble(Object[], Double) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDouble(Object[], Double) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDouble(Object[], Double) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDouble(Object[], Double) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDouble(Object[], Double) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDouble(Object, Double) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDouble(Object, Double) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDouble(Object, Double) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDouble(Object, Double) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDouble(Object, Double) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDouble(String[], Double) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDouble(String[], Double) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDouble(String[], Double) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDouble(String[], Double) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDouble(String[], Double) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDouble(String, Double) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDouble(String, Double) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDouble(String, Double) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDouble(String, Double) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDouble(String, Double) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutDouble(Collection<?>, Double) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutDouble(Collection<?>, Double) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutDouble(Collection<?>, Double) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutDouble(Collection<?>, Double) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutDouble(Collection<?>, Double) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutEnum(Object[], E) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutEnum(Object[], E) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutEnum(Object[], E) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutEnum(Object[], E) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutEnum(Object[], E) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutEnum(Object, E) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutEnum(Object, E) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutEnum(Object, E) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutEnum(Object, E) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutEnum(Object, E) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutEnum(String[], E) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutEnum(String[], E) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutEnum(String[], E) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutEnum(String[], E) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutEnum(String[], E) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutEnum(String, E) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutEnum(String, E) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutEnum(String, E) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutEnum(String, E) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutEnum(String, E) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutEnum(Collection<?>, E) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutEnum(Collection<?>, E) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutEnum(Collection<?>, E) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutEnum(Collection<?>, E) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutEnum(Collection<?>, E) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutFloat(Object[], Float) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutFloat(Object[], Float) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutFloat(Object[], Float) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutFloat(Object[], Float) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutFloat(Object[], Float) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutFloat(Object, Float) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutFloat(Object, Float) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutFloat(Object, Float) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutFloat(Object, Float) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutFloat(Object, Float) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutFloat(String[], Float) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutFloat(String[], Float) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutFloat(String[], Float) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutFloat(String[], Float) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutFloat(String[], Float) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutFloat(String, Float) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutFloat(String, Float) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutFloat(String, Float) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutFloat(String, Float) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutFloat(String, Float) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutFloat(Collection<?>, Float) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutFloat(Collection<?>, Float) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutFloat(Collection<?>, Float) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutFloat(Collection<?>, Float) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutFloat(Collection<?>, Float) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutInt(Object[], Integer) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutInt(Object[], Integer) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutInt(Object[], Integer) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutInt(Object[], Integer) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutInt(Object[], Integer) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutInt(Object, Integer) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutInt(Object, Integer) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutInt(Object, Integer) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutInt(Object, Integer) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutInt(Object, Integer) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutInt(String[], Integer) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutInt(String[], Integer) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutInt(String[], Integer) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutInt(String[], Integer) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutInt(String[], Integer) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutInt(String, Integer) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutInt(String, Integer) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutInt(String, Integer) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutInt(String, Integer) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutInt(String, Integer) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutInt(Collection<?>, Integer) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutInt(Collection<?>, Integer) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutInt(Collection<?>, Integer) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutInt(Collection<?>, Integer) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutInt(Collection<?>, Integer) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutLong(Object[], Long) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutLong(Object[], Long) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutLong(Object[], Long) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutLong(Object[], Long) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutLong(Object[], Long) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutLong(Object, Long) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutLong(Object, Long) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutLong(Object, Long) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutLong(Object, Long) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutLong(Object, Long) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutLong(String[], Long) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutLong(String[], Long) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutLong(String[], Long) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutLong(String[], Long) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutLong(String[], Long) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutLong(String, Long) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutLong(String, Long) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutLong(String, Long) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutLong(String, Long) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutLong(String, Long) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutLong(Collection<?>, Long) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutLong(Collection<?>, Long) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutLong(Collection<?>, Long) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutLong(Collection<?>, Long) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutLong(Collection<?>, Long) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutShort(Object[], Short) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutShort(Object[], Short) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutShort(Object[], Short) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutShort(Object[], Short) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutShort(Object[], Short) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutShort(Object, Short) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutShort(Object, Short) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutShort(Object, Short) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutShort(Object, Short) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutShort(Object, Short) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutShort(String[], Short) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutShort(String[], Short) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutShort(String[], Short) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutShort(String[], Short) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutShort(String[], Short) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutShort(String, Short) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutShort(String, Short) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutShort(String, Short) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutShort(String, Short) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutShort(String, Short) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutShort(Collection<?>, Short) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutShort(Collection<?>, Short) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutShort(Collection<?>, Short) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutShort(Collection<?>, Short) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutShort(Collection<?>, Short) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutString(Object[], String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutString(Object[], String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutString(Object[], String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutString(Object[], String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutString(Object[], String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutString(Object, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutString(Object, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutString(Object, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutString(Object, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutString(Object, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutString(String[], String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutString(String[], String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutString(String[], String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutString(String[], String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutString(String[], String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutString(String, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutString(String, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutString(String, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutString(String, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutString(String, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withPutString(Collection<?>, String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withPutString(Collection<?>, String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withPutString(Collection<?>, String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withPutString(Collection<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withPutString(Collection<?>, String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemoveFrom(Object) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemoveFrom(Object) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemoveFrom(Object) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemoveFrom(Object) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemoveFrom(Object) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemoveFrom(Object...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemoveFrom(Object...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemoveFrom(Object...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemoveFrom(Object...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemoveFrom(Object...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemoveFrom(String) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemoveFrom(String) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemoveFrom(String) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemoveFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemoveFrom(String) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemoveFrom(String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemoveFrom(String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemoveFrom(String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemoveFrom(String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemoveFrom(String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemoveFrom(Collection<?>) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemoveFrom(Collection<?>) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemoveFrom(Collection<?>) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemoveFrom(Collection<?>) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemoveFrom(Collection<?>) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withRemovePaths(String...) - Method in class org.refcodes.properties.AbstractResourcePropertiesBuilder
- withRemovePaths(String...) - Method in interface org.refcodes.properties.ProfileProperties.ProfilePropertiesBuilder
- withRemovePaths(String...) - Method in interface org.refcodes.properties.Properties.PropertiesBuilder
- withRemovePaths(String...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
- withRemovePaths(String...) - Method in interface org.refcodes.properties.StrictProperties.StrictPropertiesBuilder
- withResourceClass(Class<?>, String) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withResourceClass(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withResourceClass(Class<?>, String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withResourceClass(String) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withResourceClass(String, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withResourceClass(String, ConfigLocator, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads a properties file from the file directly or (if not found) from first folder containing such a file as of the specification for the method
ConfigLocator.getFolders()
. - withSeekFrom(File) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.seekFrom(File)
. - withSeekFrom(File, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.seekFrom(File, char...)
. - withSeekFrom(Class<?>, String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.seekFrom(Class, String)
. - withSeekFrom(Class<?>, String, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.seekFrom(Class, String, char...)
. - withSeekFrom(Class<?>, ConfigLocator, String, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.loadFrom(String)
. - withSeekFrom(String) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.seekFrom(String)
. - withSeekFrom(String, char...) - Method in interface org.refcodes.properties.ResourceProperties.ResourcePropertiesBuilder
-
Builder method for
ResourceProperties.MutableResoureProperties.saveTo(String, char)
. - withUrl(URL) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads the properties from the given
URL
. - withUrl(URL, char...) - Method in interface org.refcodes.properties.ResourceLoaderBuilder
-
Loads the properties from the given
URL
.
X
- XML - Enum constant in enum class org.refcodes.properties.PropertiesNotation
- XmlProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "XML properties". - XmlProperties() - Constructor for class org.refcodes.properties.XmlProperties
-
Create an empty
XmlProperties
instance. - XmlProperties(File) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given
File
. - XmlProperties(File, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given
File
. - XmlProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads or seeks the XML Properties from the given
File
. - XmlProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads or seeks the XML Properties from the given
File
. - XmlProperties(InputStream) - Constructor for class org.refcodes.properties.XmlProperties
-
Reads the XML Properties from the given
InputStream
. - XmlProperties(InputStream, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Reads the XML Properties from the given
InputStream
. - XmlProperties(Class<?>, String) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(Object) - Constructor for class org.refcodes.properties.XmlProperties
-
Create a
XmlProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - XmlProperties(String) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(String, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given file's path.
- XmlProperties(URL) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given
URL
. - XmlProperties(URL, char...) - Constructor for class org.refcodes.properties.XmlProperties
-
Loads the XML Properties from the given
URL
. - XmlProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.XmlProperties
-
Create a
XmlProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlProperties(Properties) - Constructor for class org.refcodes.properties.XmlProperties
-
Create a
XmlProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.XmlProperties
-
Create a
XmlProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlProperties.XmlPropertiesFactory - Class in org.refcodes.properties
-
The
XmlProperties.XmlPropertiesFactory
represents aResourcePropertiesFactory
creating instances of typeXmlProperties
. - XmlPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "XML properties" (or just "properties"). - XmlPropertiesBuilder() - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Create an empty
XmlPropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - XmlPropertiesBuilder(File) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given
File
. - XmlPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given
File
. - XmlPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads or seeks the XML properties from the given
File
. - XmlPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads or seeks the XML properties from the given
File
. - XmlPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Reads the XML properties from the given
InputStream
. - XmlPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Reads the XML properties from the given
InputStream
. - XmlPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Create a
XmlPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - XmlPropertiesBuilder(String) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given file's path.
- XmlPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given
URL
. - XmlPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Loads the XML properties from the given
URL
. - XmlPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Create a
XmlPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Create a
XmlPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.XmlPropertiesBuilder
-
Create a
XmlPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - XmlPropertiesBuilder.XmlPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
XmlPropertiesBuilder.XmlPropertiesBuilderFactory
represents aResourcePropertiesFactory.ResourcePropertiesBuilderFactory
creating instances of typeXmlPropertiesBuilder
. - XmlPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.XmlPropertiesBuilder.XmlPropertiesBuilderFactory
- XmlPropertiesFactory() - Constructor for class org.refcodes.properties.XmlProperties.XmlPropertiesFactory
Y
- YAML - Enum constant in enum class org.refcodes.properties.PropertiesNotation
- YamlProperties - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties
interface with support of so called "YAML properties". - YamlProperties() - Constructor for class org.refcodes.properties.YamlProperties
-
Create an empty
YamlProperties
instance. - YamlProperties(File) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given
File
. - YamlProperties(File, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given
File
. - YamlProperties(File, ConfigLocator) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads or seeks the YAML Properties from the given
File
. - YamlProperties(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads or seeks the YAML Properties from the given
File
. - YamlProperties(InputStream) - Constructor for class org.refcodes.properties.YamlProperties
-
Reads the YAML Properties from the given
InputStream
. - YamlProperties(InputStream, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Reads the YAML Properties from the given
InputStream
. - YamlProperties(Class<?>, String) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(Class<?>, String, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(Object) - Constructor for class org.refcodes.properties.YamlProperties
-
Create a
YamlProperties
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - YamlProperties(String) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(String, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(String, ConfigLocator) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given file's path.
- YamlProperties(URL) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given
URL
. - YamlProperties(URL, char...) - Constructor for class org.refcodes.properties.YamlProperties
-
Loads the YAML Properties from the given
URL
. - YamlProperties(Map<?, ?>) - Constructor for class org.refcodes.properties.YamlProperties
-
Create a
YamlProperties
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlProperties(Properties) - Constructor for class org.refcodes.properties.YamlProperties
-
Create a
YamlProperties
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlProperties(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.YamlProperties
-
Create a
YamlProperties
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlProperties.YamlPropertiesFactory - Class in org.refcodes.properties
-
The
YamlProperties.YamlPropertiesFactory
represents aResourcePropertiesFactory
creating instances of typeYamlProperties
. - YamlPropertiesBuilder - Class in org.refcodes.properties
-
Implementation of the
ResourceProperties.ResourcePropertiesBuilder
interface with support of so called "YAML properties" (or just "properties"). - YamlPropertiesBuilder() - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Create an empty
YamlPropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations. - YamlPropertiesBuilder(File) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given
File
. - YamlPropertiesBuilder(File, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given
File
. - YamlPropertiesBuilder(File, ConfigLocator) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads or seeks the YAML properties from the given
File
. - YamlPropertiesBuilder(File, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads or seeks the YAML properties from the given
File
. - YamlPropertiesBuilder(InputStream) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Reads the YAML properties from the given
InputStream
. - YamlPropertiesBuilder(InputStream, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Reads the YAML properties from the given
InputStream
. - YamlPropertiesBuilder(Class<?>, String) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(Class<?>, String, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(Class<?>, String, ConfigLocator) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(Class<?>, String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(Object) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Create a
YamlPropertiesBuilder
instance containing the elements as ofPathMap.MutablePathMap.insert(Object)
using the default path delimiter "/" (Delimiter.PATH
) for the path declarations: "Inspects the given object and adds all elements found in the given object. - YamlPropertiesBuilder(String) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(String, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(String, ConfigLocator) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(String, ConfigLocator, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given file's path.
- YamlPropertiesBuilder(URL) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given
URL
. - YamlPropertiesBuilder(URL, char...) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Loads the YAML properties from the given
URL
. - YamlPropertiesBuilder(Map<?, ?>) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Create a
YamlPropertiesBuilder
instance containing the elements of the providedMap
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlPropertiesBuilder(Properties) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Create a
YamlPropertiesBuilder
instance containing the elements of the providedProperties
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlPropertiesBuilder(Properties.PropertiesBuilder) - Constructor for class org.refcodes.properties.YamlPropertiesBuilder
-
Create a
YamlPropertiesBuilder
instance containing the elements of the providedProperties.PropertiesBuilder
instance using the default path delimiter "/" (Delimiter.PATH
) for the path declarations - YamlPropertiesBuilder.YamlPropertiesBuilderFactory - Class in org.refcodes.properties
-
The
YamlPropertiesBuilder.YamlPropertiesBuilderFactory
represents aResourcePropertiesFactory.ResourcePropertiesBuilderFactory
creating instances of typeYamlPropertiesBuilder
. - YamlPropertiesBuilderFactory() - Constructor for class org.refcodes.properties.YamlPropertiesBuilder.YamlPropertiesBuilderFactory
- YamlPropertiesFactory() - Constructor for class org.refcodes.properties.YamlProperties.YamlPropertiesFactory
_
- _properties - Variable in class org.refcodes.properties.AbstractResourceProperties
- _properties - Variable in class org.refcodes.properties.PropertiesImpl
- _properties - Variable in class org.refcodes.properties.PropertiesPrecedenceComposite
- _propertiesFile - Variable in class org.refcodes.properties.AbstractResourcePropertiesBuilder
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form