Class HandledNameConverter
java.lang.Object
me.datafox.dfxengine.text.converter.HandledNameConverter
- All Implemented Interfaces:
NameConverter<Handled>
A
NameConverter
that uses Handled.getHandle()
followed by Handle.getId()
as the singular
form. It is not capable of generating the plural form on its own.-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
HandledNameConverter
public HandledNameConverter()
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceNameConverter<Handled>
- Returns:
- type of the object that this converter can convert. Always returns
Handled.class
-
isPluralCapable
public boolean isPluralCapable()- Specified by:
isPluralCapable
in interfaceNameConverter<Handled>
- Returns:
true
if this converter can also convert to plural form. Always returnsfalse
-
convert
- Specified by:
convert
in interfaceNameConverter<Handled>
- Parameters:
object
- object to be converted- Returns:
- name of the object in singular form
-
convertPlural
- Specified by:
convertPlural
in interfaceNameConverter<Handled>
- Parameters:
object
- ignored parameter- Returns:
- name of the object in singular form, or
null
if this converter does not support plural form. Always returnsnull
-