Package org.azd.enums

Enum Class FieldType

java.lang.Object
java.lang.Enum<FieldType>
org.azd.enums.FieldType
All Implemented Interfaces:
Serializable, Comparable<FieldType>, Constable

public enum FieldType extends Enum<FieldType>
The type of the field.
  • Enum Constant Details

    • BOOLEAN

      public static final FieldType BOOLEAN
      Boolean field type.
    • DATETIME

      public static final FieldType DATETIME
      Datetime field type.
    • DOUBLE

      public static final FieldType DOUBLE
      Double field type.
    • GUID

      public static final FieldType GUID
      Guid field type.
    • HISTORY

      public static final FieldType HISTORY
      History field type.
    • HTML

      public static final FieldType HTML
      HTML (Multiline) field type.
    • IDENTITY

      public static final FieldType IDENTITY
      Identity field type.
    • INTEGER

      public static final FieldType INTEGER
      Integer field type.
    • PICKLISTDOUBLE

      public static final FieldType PICKLISTDOUBLE
      Double picklist field type. When creating a double picklist field from REST API, use "Double" FieldType.
    • PICKLISTINTEGER

      public static final FieldType PICKLISTINTEGER
      Integer picklist field type. When creating a integer picklist field from REST API, use "Integer" FieldType.
    • PICKLISTSTRING

      public static final FieldType PICKLISTSTRING
      String picklist field type. When creating a string picklist field from REST API, use "String" FieldType.
    • PLAINTEXT

      public static final FieldType PLAINTEXT
      Plain text field type.
    • STRING

      public static final FieldType STRING
      String field type.
    • TREEPATH

      public static final FieldType TREEPATH
      Treepath field type.
  • 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