Package me.datafox.dfxengine.text.utils
Class TextConfigurationImpl
java.lang.Object
me.datafox.dfxengine.text.utils.TextConfigurationImpl
- All Implemented Interfaces:
TextConfiguration
Implementation of
TextConfiguration
, used by NumberFormatters
,
NumberSuffixFormatters
, Texts
and the TextFactory
.-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuilder
(TextFactory factory) void
clear()
Clears all entries from this configuration.<T> void
clear
(ConfigurationKey<T> key) copy()
<T> T
get
(ConfigurationKey<T> key) getAll()
<T> void
set
(ConfigurationKey<T> key, ConfigurationValue<T> value) <T> void
set
(ConfigurationKey<T> key, T value) void
set
(TextConfiguration configuration) Applies all entries of the provided configuration to this one, overwriting any existing entries if present.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface me.datafox.dfxengine.text.api.TextConfiguration
getFactory
-
Constructor Details
-
TextConfigurationImpl
- Parameters:
factory
-TextFactory
to be associated with this configuration
-
-
Method Details
-
set
- Specified by:
set
in interfaceTextConfiguration
- Type Parameters:
T
- type of the object returned by theConfigurationValue
- Parameters:
key
-ConfigurationKey
to be usedvalue
-ConfigurationValue
to be used
-
set
- Specified by:
set
in interfaceTextConfiguration
- Type Parameters:
T
- type of the object- Parameters:
key
-ConfigurationKey
to be usedvalue
- object to be used
-
set
Applies all entries of the provided configuration to this one, overwriting any existing entries if present.- Specified by:
set
in interfaceTextConfiguration
- Parameters:
configuration
-TextConfiguration
to be applied
-
get
- Specified by:
get
in interfaceTextConfiguration
- Type Parameters:
T
- type of the object- Parameters:
key
-ConfigurationKey
to be used- Returns:
- object associated with the key, or the default value if none is present
-
getAll
- Specified by:
getAll
in interfaceTextConfiguration
- Returns:
- Unmodifiable
Map
containing all entries of this configuration
-
clear
- Specified by:
clear
in interfaceTextConfiguration
- Type Parameters:
T
- type of the value- Parameters:
key
-ConfigurationKey
associated with the value to be cleared
-
clear
public void clear()Clears all entries from this configuration.- Specified by:
clear
in interfaceTextConfiguration
-
copy
- Specified by:
copy
in interfaceTextConfiguration
- Returns:
- unique configuration instance containing all entries of this configuration
-
builder
- Parameters:
factory
-TextFactory
to be associated with the builder- Returns:
TextConfigurationImpl.Builder
for a configuration
-