Enum DataType

    • Enum Constant Detail

      • String

        public static final DataType String
      • Time

        public static final DataType Time
      • Time_Interval

        public static final DataType Time_Interval
      • Times_ListOf

        public static final DataType Times_ListOf
      • Text

        public static final DataType Text
      • Boolean

        public static final DataType Boolean
      • Number

        public static final DataType Number
      • GeoJSON

        public static final DataType GeoJSON
      • File

        public static final DataType File
    • Method Detail

      • values

        public static DataType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DataType c : DataType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DataType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()
        Value.
        Returns:
        the string
      • fromValue

        public static DataType fromValue​(String v)
        From value.
        Parameters:
        v - the v
        Returns:
        the data type