Enum DataType
- java.lang.Object
-
- java.lang.Enum<DataType>
-
- com.google.cloud.datalabeling.v1beta1.DataType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<DataType>
public enum DataType extends Enum<DataType> implements com.google.protobuf.ProtocolMessageEnum
Protobuf enumgoogle.cloud.datalabeling.v1beta1.DataType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_TYPE_UNSPECIFIED
DATA_TYPE_UNSPECIFIED = 0;
GENERAL_DATA
Allowed for continuous evaluation.IMAGE
Allowed for continuous evaluation.TEXT
Allowed for continuous evaluation.UNRECOGNIZED
VIDEO
VIDEO = 2;
-
Field Summary
Fields Modifier and Type Field Description static int
DATA_TYPE_UNSPECIFIED_VALUE
DATA_TYPE_UNSPECIFIED = 0;
static int
GENERAL_DATA_VALUE
Allowed for continuous evaluation.static int
IMAGE_VALUE
Allowed for continuous evaluation.static int
TEXT_VALUE
Allowed for continuous evaluation.static int
VIDEO_VALUE
VIDEO = 2;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DataType
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<DataType>
internalGetValueMap()
static DataType
valueOf(int value)
Deprecated.static DataType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static DataType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_TYPE_UNSPECIFIED
public static final DataType DATA_TYPE_UNSPECIFIED
DATA_TYPE_UNSPECIFIED = 0;
-
IMAGE
public static final DataType IMAGE
Allowed for continuous evaluation.
IMAGE = 1;
-
VIDEO
public static final DataType VIDEO
VIDEO = 2;
-
TEXT
public static final DataType TEXT
Allowed for continuous evaluation.
TEXT = 4;
-
GENERAL_DATA
public static final DataType GENERAL_DATA
Allowed for continuous evaluation.
GENERAL_DATA = 6;
-
UNRECOGNIZED
public static final DataType UNRECOGNIZED
-
-
Field Detail
-
DATA_TYPE_UNSPECIFIED_VALUE
public static final int DATA_TYPE_UNSPECIFIED_VALUE
DATA_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
IMAGE_VALUE
public static final int IMAGE_VALUE
Allowed for continuous evaluation.
IMAGE = 1;
- See Also:
- Constant Field Values
-
VIDEO_VALUE
public static final int VIDEO_VALUE
VIDEO = 2;
- See Also:
- Constant Field Values
-
TEXT_VALUE
public static final int TEXT_VALUE
Allowed for continuous evaluation.
TEXT = 4;
- See Also:
- Constant Field Values
-
GENERAL_DATA_VALUE
public static final int GENERAL_DATA_VALUE
Allowed for continuous evaluation.
GENERAL_DATA = 6;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DataType[] 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 (DataType c : DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataType 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:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static DataType 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 DataType 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<DataType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static DataType 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
-
-