Package me.datafox.dfxengine.text
Class TextFactoryImpl
java.lang.Object
me.datafox.dfxengine.text.TextFactoryImpl
- All Implemented Interfaces:
TextFactory
Implementation of
TextFactory
, a singleton class that generates Strings
from Text
objects. It manages Names
, NameConverters
,
NumberFormatters
, NumberSuffixFacctories
,
TextConfiguration
and the PluralConverter
. This class is designed to be used with the
Injector
.-
Constructor Summary
ConstructorsConstructorDescriptionTextFactoryImpl
(org.slf4j.Logger logger, HandleManager handleManager, TextHandles handles, List<Name<?>> names, List<NameConverter<?>> nameConverters, List<NumberFormatter> numberFormatters, List<NumberSuffixFormatter> numberSuffixFormatters, PluralConverter pluralConverter) -
Method Summary
Modifier and TypeMethodDescription<T> Name
<T> <T> void
addNameConverter
(NameConverter<T> converter) void
addNumberFormatter
(NumberFormatter formatter) void
addNumberSuffixFormatter
(NumberSuffixFormatter formatter) If no defaultNumberSuffixFormatter
is set and thisNumberSuffixFormatter
can format any number (NumberSuffixFormatter.isInfinite()
returnstrue
), it will be set as default.<T> Name
<T> createName
(T object, String name) ThePluralConverter
is used to generate the plural form.<T> Name
<T> createName
(T object, String singular, String plural) This method should always return the sameTextConfiguration
instance.<T> Name
<T> getName
(T object) If aName
associated with the object is present, it is returned.<T> String
getName
(T object, boolean plural) If aName
associated with the object is present, it is used.<T> NameConverter
<T> getNameConverter
(Class<T> type) getNumberFormatter
(Handle handle) getNumberFormatter
(TextConfiguration configuration) getNumberSuffixFormatter
(Handle handle) getNumberSuffixFormatter
(TextConfiguration configuration) void
initialize
(List<TextConfiguration> configurations) void
setConfiguration
(TextConfiguration configuration) Clears currentTextConfiguration
and applies the provided one to it.void
The defaultNumberSuffixFormatter
must be capable of formatting any number (NumberSuffixFormatter.isInfinite()
returnstrue
).void
setPluralConverter
(PluralConverter converter) 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.TextFactory
getHandleManager
-
Constructor Details
-
TextFactoryImpl
public TextFactoryImpl(org.slf4j.Logger logger, HandleManager handleManager, TextHandles handles, List<Name<?>> names, List<NameConverter<?>> nameConverters, List<NumberFormatter> numberFormatters, List<NumberSuffixFormatter> numberSuffixFormatters, PluralConverter pluralConverter) - Parameters:
logger
-Logger
for this factoryhandleManager
-HandleManager
for this factoryhandles
-TextHandles
for this factorynames
-Names
for this factorynameConverters
-NameConverters
for this factorynumberFormatters
-NumberFormatters
for this factorynumberSuffixFormatters
-NumberSuffixFormatters
for this factorypluralConverter
-PluralConverter
for this factory
-
-
Method Details
-
build
- Specified by:
build
in interfaceTextFactory
- Parameters:
text
-Text
object to build- Returns:
String
representation of the text
-
build
- Specified by:
build
in interfaceTextFactory
- Parameters:
texts
-Text
objects to build- Returns:
String
representation of the texts
-
createName
ThePluralConverter
is used to generate the plural form.- Specified by:
createName
in interfaceTextFactory
- Type Parameters:
T
- type of the object- Parameters:
object
- object to be namedname
- name for the object in singular form- Returns:
Name
associated with the object
-
createName
- Specified by:
createName
in interfaceTextFactory
- Type Parameters:
T
- type of the object to be named- Parameters:
object
- object to be namedsingular
- name for the object in singular formplural
- name for the object in plural form- Returns:
Name
associated with the object
-
addName
- Specified by:
addName
in interfaceTextFactory
- Type Parameters:
T
- type of the object to be named- Parameters:
name
-Name
object- Returns:
- previous
Name
associated with the owner, ornull
if no previous mapping is present
-
getName
Description copied from interface:TextFactory
If aName
associated with the object is present, it is returned. Otherwise, a new Name is created usingNameConverter
if a valid one is present orObject.toString()
if not. ThePluralConverter
will be used for the plural form if theNameConverter
is not plural capable or not present.- Specified by:
getName
in interfaceTextFactory
- Type Parameters:
T
- type of the object to be named- Parameters:
object
- object to be named- Returns:
Name
associated with the object
-
getName
Description copied from interface:TextFactory
If aName
associated with the object is present, it is used. Otherwise, a new Name is created usingNameConverter
if a valid one is present orObject.toString()
if not. ThePluralConverter
will be used for the plural form if theNameConverter
is not plural capable or not present.- Specified by:
getName
in interfaceTextFactory
- Type Parameters:
T
- type of the object to be named- Parameters:
object
- object to be namedplural
- iftrue
, the plural form is returned- Returns:
- name of the object
-
addNameConverter
- Specified by:
addNameConverter
in interfaceTextFactory
- Type Parameters:
T
- type of the object that thisNameConverter
is capable of converting- Parameters:
converter
-NameConverter
to be registered
-
getNameConverter
- Specified by:
getNameConverter
in interfaceTextFactory
- Type Parameters:
T
- type of the object to be named- Parameters:
type
-Class
of the object to be named- Returns:
NameConverter
associated with the type or any of its interfaces or superclasses
-
addNumberFormatter
- Specified by:
addNumberFormatter
in interfaceTextFactory
- Parameters:
formatter
-NumberFormatter
to be registered
-
getNumberFormatter
- Specified by:
getNumberFormatter
in interfaceTextFactory
- Parameters:
handle
-Handle
of aNumberFormatter
- Returns:
NumberFormatter
associated with theHandle
ornull
if none is present
-
getNumberFormatter
- Specified by:
getNumberFormatter
in interfaceTextFactory
- Parameters:
configuration
-TextConfiguration
to be used- Returns:
NumberFormatter
configured in theTextConfiguration
ornull
if none is present
-
addNumberSuffixFormatter
If no defaultNumberSuffixFormatter
is set and thisNumberSuffixFormatter
can format any number (NumberSuffixFormatter.isInfinite()
returnstrue
), it will be set as default.- Specified by:
addNumberSuffixFormatter
in interfaceTextFactory
- Parameters:
formatter
-NumberSuffixFormatter
to be registered
-
getNumberSuffixFormatter
- Specified by:
getNumberSuffixFormatter
in interfaceTextFactory
- Parameters:
handle
-Handle
of aNumberSuffixFormatter
- Returns:
NumberSuffixFormatter
associated with theHandle
ornull
if none is present
-
getNumberSuffixFormatter
- Specified by:
getNumberSuffixFormatter
in interfaceTextFactory
- Parameters:
configuration
-TextConfiguration
to be used- Returns:
NumberSuffixFormatter
configured in theTextConfiguration
ornull
if none is present
-
setDefaultNumberSuffixFormatter
The defaultNumberSuffixFormatter
must be capable of formatting any number (NumberSuffixFormatter.isInfinite()
returnstrue
).- Specified by:
setDefaultNumberSuffixFormatter
in interfaceTextFactory
- Parameters:
formatter
-NumberSuffixFormatter
to be set as default
-
getDefaultNumberSuffixFormatter
- Specified by:
getDefaultNumberSuffixFormatter
in interfaceTextFactory
- Returns:
- default
NumberSuffixFormatter
ornull
if none is present
-
setConfiguration
Clears currentTextConfiguration
and applies the provided one to it. This method should not overwrite the currentTextConfiguration
instance and only alter its state.- Specified by:
setConfiguration
in interfaceTextFactory
- Parameters:
configuration
-TextConfiguration
to be applied
-
getConfiguration
Description copied from interface:TextFactory
This method should always return the sameTextConfiguration
instance.- Specified by:
getConfiguration
in interfaceTextFactory
- Returns:
- current
TextConfiguration
-
setPluralConverter
- Specified by:
setPluralConverter
in interfaceTextFactory
- Parameters:
converter
-PluralConverter
to be registered
-
getPluralConverter
- Specified by:
getPluralConverter
in interfaceTextFactory
- Returns:
- registered
PluralConverter
ornull
if none is present
-
initialize
-