Package com.google.cloud.automl.v1beta1
Enum DocumentDimensions.DocumentDimensionUnit
- java.lang.Object
-
- java.lang.Enum<DocumentDimensions.DocumentDimensionUnit>
-
- com.google.cloud.automl.v1beta1.DocumentDimensions.DocumentDimensionUnit
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<DocumentDimensions.DocumentDimensionUnit>
- Enclosing class:
- DocumentDimensions
public static enum DocumentDimensions.DocumentDimensionUnit extends Enum<DocumentDimensions.DocumentDimensionUnit> implements com.google.protobuf.ProtocolMessageEnum
Unit of the document dimension.
Protobuf enumgoogle.cloud.automl.v1beta1.DocumentDimensions.DocumentDimensionUnit
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTIMETERDocument dimension is measured in centimeters.DOCUMENT_DIMENSION_UNIT_UNSPECIFIEDShould not be used.INCHDocument dimension is measured in inches.POINTDocument dimension is measured in points.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intCENTIMETER_VALUEDocument dimension is measured in centimeters.static intDOCUMENT_DIMENSION_UNIT_UNSPECIFIED_VALUEShould not be used.static intINCH_VALUEDocument dimension is measured in inches.static intPOINT_VALUEDocument dimension is measured in points.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DocumentDimensions.DocumentDimensionUnitforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<DocumentDimensions.DocumentDimensionUnit>internalGetValueMap()static DocumentDimensions.DocumentDimensionUnitvalueOf(int value)Deprecated.static DocumentDimensions.DocumentDimensionUnitvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static DocumentDimensions.DocumentDimensionUnitvalueOf(String name)Returns the enum constant of this type with the specified name.static DocumentDimensions.DocumentDimensionUnit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_DIMENSION_UNIT_UNSPECIFIED
public static final DocumentDimensions.DocumentDimensionUnit DOCUMENT_DIMENSION_UNIT_UNSPECIFIED
Should not be used.
DOCUMENT_DIMENSION_UNIT_UNSPECIFIED = 0;
-
INCH
public static final DocumentDimensions.DocumentDimensionUnit INCH
Document dimension is measured in inches.
INCH = 1;
-
CENTIMETER
public static final DocumentDimensions.DocumentDimensionUnit CENTIMETER
Document dimension is measured in centimeters.
CENTIMETER = 2;
-
POINT
public static final DocumentDimensions.DocumentDimensionUnit POINT
Document dimension is measured in points. 72 points = 1 inch.
POINT = 3;
-
UNRECOGNIZED
public static final DocumentDimensions.DocumentDimensionUnit UNRECOGNIZED
-
-
Field Detail
-
DOCUMENT_DIMENSION_UNIT_UNSPECIFIED_VALUE
public static final int DOCUMENT_DIMENSION_UNIT_UNSPECIFIED_VALUE
Should not be used.
DOCUMENT_DIMENSION_UNIT_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
INCH_VALUE
public static final int INCH_VALUE
Document dimension is measured in inches.
INCH = 1;- See Also:
- Constant Field Values
-
CENTIMETER_VALUE
public static final int CENTIMETER_VALUE
Document dimension is measured in centimeters.
CENTIMETER = 2;- See Also:
- Constant Field Values
-
POINT_VALUE
public static final int POINT_VALUE
Document dimension is measured in points. 72 points = 1 inch.
POINT = 3;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DocumentDimensions.DocumentDimensionUnit[] 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 (DocumentDimensions.DocumentDimensionUnit c : DocumentDimensions.DocumentDimensionUnit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentDimensions.DocumentDimensionUnit 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static DocumentDimensions.DocumentDimensionUnit 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 DocumentDimensions.DocumentDimensionUnit forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<DocumentDimensions.DocumentDimensionUnit> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static DocumentDimensions.DocumentDimensionUnit valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-