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