Class CamelCaseStringConverter<T>

  • Type Parameters:
    T - the type to convert

    public class CamelCaseStringConverter<T>
    extends javafx.util.StringConverter<T>
    CamelCase StringConverter.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T fromString​(java.lang.String string)  
      T[] getObjects()
      Gets the objects array.
      java.lang.String toString​(T object)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CamelCaseStringConverter

        public CamelCaseStringConverter​(T[] objects)
        Creates a converter.
        Parameters:
        objects - the objects representing the available camelcase values
    • Method Detail

      • getObjects

        public T[] getObjects()
        Gets the objects array.
        Returns:
        the objects
      • toString

        public java.lang.String toString​(T object)
        Specified by:
        toString in class javafx.util.StringConverter<T>
      • fromString

        public T fromString​(java.lang.String string)
        Specified by:
        fromString in class javafx.util.StringConverter<T>