Enum Type

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Type>

    public enum Type
    extends java.lang.Enum<Type>
    Enum for determining the supported variations types of the property types.
    • Enum Constant Detail

      • SHORT

        public static final Type SHORT
      • INT

        public static final Type INT
      • LONG

        public static final Type LONG
      • FLOAT

        public static final Type FLOAT
      • DOUBLE

        public static final Type DOUBLE
      • DATE

        public static final Type DATE
      • DATE_TIME

        public static final Type DATE_TIME
      • DATE__TIME

        public static final Type DATE__TIME
      • DATETIME

        public static final Type DATETIME
      • TIME

        public static final Type TIME
      • BINARY

        public static final Type BINARY
      • INTEGER

        public static final Type INTEGER
      • DECIMAL

        public static final Type DECIMAL
      • BIGDECIMAL

        public static final Type BIGDECIMAL
      • BYTE

        public static final Type BYTE
      • BASE64BINARY

        public static final Type BASE64BINARY
      • BASE64

        public static final Type BASE64
      • HEXBINARY

        public static final Type HEXBINARY
      • UNSIGNED

        public static final Type UNSIGNED
      • UNSIGNEDINT

        public static final Type UNSIGNEDINT
      • SIGNEDINT

        public static final Type SIGNEDINT
      • UNSIGNEDSHORT

        public static final Type UNSIGNEDSHORT
      • UNSIGNEDBYTE

        public static final Type UNSIGNEDBYTE
      • ANYURI

        public static final Type ANYURI
      • UUID

        public static final Type UUID
      • TOKEN

        public static final Type TOKEN
    • Method Detail

      • values

        public static Type[] 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 (Type c : Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Type valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Type>