Class SimpleColumn<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      SimpleColumn​(java.lang.String id, java.lang.String description, java.lang.Class<T> valueType)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Returns the column description.
      java.lang.String getId()
      java.lang.Class<T> getValueType()
      Returns the type of the values in the column.
      • Methods inherited from class java.lang.Object

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

      • SimpleColumn

        public SimpleColumn​(java.lang.String id,
                            java.lang.String description,
                            java.lang.Class<T> valueType)
        Constructor.
        Parameters:
        id - String; id
        description - String; description
        valueType - Class<T>; value type
    • Method Detail

      • getId

        public java.lang.String getId()
        Specified by:
        getId in interface Identifiable
      • getDescription

        public java.lang.String getDescription()
        Returns the column description.
        Specified by:
        getDescription in interface Column<T>
        Returns:
        String; column description
      • getValueType

        public java.lang.Class<T> getValueType()
        Returns the type of the values in the column.
        Specified by:
        getValueType in interface Column<T>
        Returns:
        Class<?>; type of the values in the column