Package com.google.cloud.documentai.v1
Enum Document.Entity.NormalizedValue.StructuredValueCase
- java.lang.Object
-
- java.lang.Enum<Document.Entity.NormalizedValue.StructuredValueCase>
-
- com.google.cloud.documentai.v1.Document.Entity.NormalizedValue.StructuredValueCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Document.Entity.NormalizedValue.StructuredValueCase>
- Enclosing class:
- Document.Entity.NormalizedValue
public static enum Document.Entity.NormalizedValue.StructuredValueCase extends Enum<Document.Entity.NormalizedValue.StructuredValueCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_VALUE
BOOLEAN_VALUE
DATE_VALUE
DATETIME_VALUE
FLOAT_VALUE
INTEGER_VALUE
MONEY_VALUE
STRUCTUREDVALUE_NOT_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Document.Entity.NormalizedValue.StructuredValueCase
forNumber(int value)
int
getNumber()
static Document.Entity.NormalizedValue.StructuredValueCase
valueOf(int value)
Deprecated.static Document.Entity.NormalizedValue.StructuredValueCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Document.Entity.NormalizedValue.StructuredValueCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MONEY_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase MONEY_VALUE
-
DATE_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase DATE_VALUE
-
DATETIME_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase DATETIME_VALUE
-
ADDRESS_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase ADDRESS_VALUE
-
BOOLEAN_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase BOOLEAN_VALUE
-
INTEGER_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase INTEGER_VALUE
-
FLOAT_VALUE
public static final Document.Entity.NormalizedValue.StructuredValueCase FLOAT_VALUE
-
STRUCTUREDVALUE_NOT_SET
public static final Document.Entity.NormalizedValue.StructuredValueCase STRUCTUREDVALUE_NOT_SET
-
-
Method Detail
-
values
public static Document.Entity.NormalizedValue.StructuredValueCase[] 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 (Document.Entity.NormalizedValue.StructuredValueCase c : Document.Entity.NormalizedValue.StructuredValueCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Document.Entity.NormalizedValue.StructuredValueCase 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 nameNullPointerException
- if the argument is null
-
valueOf
@Deprecated public static Document.Entity.NormalizedValue.StructuredValueCase valueOf(int value)
Deprecated.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:
value
- 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 nameNullPointerException
- if the argument is null
-
forNumber
public static Document.Entity.NormalizedValue.StructuredValueCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-