Enum FeatureValue.ValueCase
- java.lang.Object
-
- java.lang.Enum<FeatureValue.ValueCase>
-
- com.google.cloud.aiplatform.v1beta1.FeatureValue.ValueCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<FeatureValue.ValueCase>
- Enclosing class:
- FeatureValue
public static enum FeatureValue.ValueCase extends Enum<FeatureValue.ValueCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOL_ARRAY_VALUE
BOOL_VALUE
BYTES_VALUE
DOUBLE_ARRAY_VALUE
DOUBLE_VALUE
INT64_ARRAY_VALUE
INT64_VALUE
STRING_ARRAY_VALUE
STRING_VALUE
VALUE_NOT_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static FeatureValue.ValueCase
forNumber(int value)
int
getNumber()
static FeatureValue.ValueCase
valueOf(int value)
Deprecated.static FeatureValue.ValueCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeatureValue.ValueCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOL_VALUE
public static final FeatureValue.ValueCase BOOL_VALUE
-
DOUBLE_VALUE
public static final FeatureValue.ValueCase DOUBLE_VALUE
-
INT64_VALUE
public static final FeatureValue.ValueCase INT64_VALUE
-
STRING_VALUE
public static final FeatureValue.ValueCase STRING_VALUE
-
BOOL_ARRAY_VALUE
public static final FeatureValue.ValueCase BOOL_ARRAY_VALUE
-
DOUBLE_ARRAY_VALUE
public static final FeatureValue.ValueCase DOUBLE_ARRAY_VALUE
-
INT64_ARRAY_VALUE
public static final FeatureValue.ValueCase INT64_ARRAY_VALUE
-
STRING_ARRAY_VALUE
public static final FeatureValue.ValueCase STRING_ARRAY_VALUE
-
BYTES_VALUE
public static final FeatureValue.ValueCase BYTES_VALUE
-
VALUE_NOT_SET
public static final FeatureValue.ValueCase VALUE_NOT_SET
-
-
Method Detail
-
values
public static FeatureValue.ValueCase[] 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 (FeatureValue.ValueCase c : FeatureValue.ValueCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureValue.ValueCase 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 FeatureValue.ValueCase 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 FeatureValue.ValueCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-