Class HandleNameConverter

java.lang.Object
me.datafox.dfxengine.text.converter.HandleNameConverter
All Implemented Interfaces:
NameConverter<Handle>

public class HandleNameConverter extends Object implements 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 Details

    • HandleNameConverter

      public HandleNameConverter()
  • Method Details

    • getType

      public Class<Handle> getType()
      Specified by:
      getType in interface NameConverter<Handle>
      Returns:
      type of the object that this converter can convert. Always returns Handle.class
    • isPluralCapable

      public boolean isPluralCapable()
      Specified by:
      isPluralCapable in interface NameConverter<Handle>
      Returns:
      true if this converter can also convert to plural form. Always returns false
    • convert

      public String convert(Handle object)
      Specified by:
      convert in interface NameConverter<Handle>
      Parameters:
      object - object to be converted
      Returns:
      name of the object in singular form
    • convertPlural

      public String convertPlural(Handle object)
      Specified by:
      convertPlural in interface NameConverter<Handle>
      Parameters:
      object - ignored parameter
      Returns:
      name of the object in singular form, or null if this converter does not support plural form. Always returns null