Package me.datafox.dfxengine.text.api
Interface TextFactory
- All Known Implementing Classes:
TextFactoryImpl
public interface TextFactory
A singleton class that generates
Strings
from Text
objects. It manages Names
,
NameConverters
, NumberFormatters
,
NumberSuffixFacctories
, TextConfiguration
and the 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
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)
-
Method Details
-
build
-
build
-
getHandleManager
HandleManager getHandleManager()- Returns:
HandleManager
used by this factory
-
createName
ThePluralConverter
is used to generate the plural form.- 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
- 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
-
getName
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.- Type Parameters:
T
- type of the object to be named- Parameters:
object
- object to be named- Returns:
Name
associated with the object
-
getName
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.- 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
- Type Parameters:
T
- type of the object that thisNameConverter
is capable of converting- Parameters:
converter
-NameConverter
to be registered
-
getNameConverter
- 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
- Parameters:
formatter
-NumberFormatter
to be registered
-
getNumberFormatter
- Parameters:
handle
-Handle
of aNumberFormatter
- Returns:
NumberFormatter
associated with theHandle
ornull
if none is present
-
getNumberFormatter
- 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.- Parameters:
formatter
-NumberSuffixFormatter
to be registered
-
getNumberSuffixFormatter
- Parameters:
handle
-Handle
of aNumberSuffixFormatter
- Returns:
NumberSuffixFormatter
associated with theHandle
ornull
if none is present
-
getNumberSuffixFormatter
- 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
).- Parameters:
formatter
-NumberSuffixFormatter
to be set as default
-
getDefaultNumberSuffixFormatter
NumberSuffixFormatter getDefaultNumberSuffixFormatter()- 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.- Parameters:
configuration
-TextConfiguration
to be applied
-
getConfiguration
TextConfiguration getConfiguration()This method should always return the sameTextConfiguration
instance.- Returns:
- current
TextConfiguration
-
setPluralConverter
- Parameters:
converter
-PluralConverter
to be registered
-
getPluralConverter
PluralConverter getPluralConverter()- Returns:
- registered
PluralConverter
ornull
if none is present
-