Enum Class FieldType

java.lang.Object
java.lang.Enum<FieldType>
io.atlasmap.v2.FieldType
All Implemented Interfaces:
Serializable, Comparable<FieldType>, java.lang.constant.Constable

public enum FieldType extends Enum<FieldType>
  • Enum Constant Details

    • ANY

      public static final FieldType ANY
    • ANY_DATE

      public static final FieldType ANY_DATE
    • BIG_INTEGER

      public static final FieldType BIG_INTEGER
    • BOOLEAN

      public static final FieldType BOOLEAN
    • BYTE

      public static final FieldType BYTE
    • BYTE_ARRAY

      public static final FieldType BYTE_ARRAY
    • CHAR

      public static final FieldType CHAR
    • COMPLEX

      public static final FieldType COMPLEX
    • DATE

      public static final FieldType DATE
    • DATE_TIME

      public static final FieldType DATE_TIME
    • DATE_TIME_TZ

      public static final FieldType DATE_TIME_TZ
    • DATE_TZ

      public static final FieldType DATE_TZ
    • DECIMAL

      public static final FieldType DECIMAL
    • DOUBLE

      public static final FieldType DOUBLE
    • FLOAT

      public static final FieldType FLOAT
    • INTEGER

      public static final FieldType INTEGER
    • LONG

      public static final FieldType LONG
    • NONE

      public static final FieldType NONE
    • NUMBER

      public static final FieldType NUMBER
    • SHORT

      public static final FieldType SHORT
    • STRING

      public static final FieldType STRING
    • TIME

      public static final FieldType TIME
    • TIME_TZ

      public static final FieldType TIME_TZ
    • UNSIGNED_BYTE

      public static final FieldType UNSIGNED_BYTE
    • UNSIGNED_INTEGER

      public static final FieldType UNSIGNED_INTEGER
    • UNSIGNED_LONG

      public static final FieldType UNSIGNED_LONG
    • UNSIGNED_SHORT

      public static final FieldType UNSIGNED_SHORT
    • UNSUPPORTED

      public static final FieldType UNSUPPORTED
  • Method Details

    • values

      public static FieldType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FieldType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static FieldType fromValue(String v)