Enum FieldValueType

java.lang.Object
java.lang.Enum<FieldValueType>
com.azure.ai.formrecognizer.models.FieldValueType
All Implemented Interfaces:
Serializable, Comparable<FieldValueType>, java.lang.constant.Constable

public enum FieldValueType extends Enum<FieldValueType>
Defines values for FieldValueType.
  • Enum Constant Details

    • STRING

      public static final FieldValueType STRING
      Enum value string.
    • DATE

      public static final FieldValueType DATE
      Enum value date.
    • TIME

      public static final FieldValueType TIME
      Enum value time.
    • PHONE_NUMBER

      public static final FieldValueType PHONE_NUMBER
      Enum value phoneNumber.
    • FLOAT

      public static final FieldValueType FLOAT
      Enum value floating point number.
    • LONG

      public static final FieldValueType LONG
      Enum value long.
    • LIST

      public static final FieldValueType LIST
      Enum value list.
    • MAP

      public static final FieldValueType MAP
      Enum value map.
    • SELECTION_MARK_STATE

      public static final FieldValueType SELECTION_MARK_STATE
      Enum value selection mark state.
    • COUNTRY_REGION

      public static final FieldValueType COUNTRY_REGION
      Enum value country region.
  • Method Details

    • values

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

      public static FieldValueType 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