Package io.flowcean.learner.grpc
Enum LearnerOuterClass.DataField.FieldCase
- java.lang.Object
-
- java.lang.Enum<LearnerOuterClass.DataField.FieldCase>
-
- io.flowcean.learner.grpc.LearnerOuterClass.DataField.FieldCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<LearnerOuterClass.DataField.FieldCase>
- Enclosing class:
- LearnerOuterClass.DataField
public static enum LearnerOuterClass.DataField.FieldCase extends Enum<LearnerOuterClass.DataField.FieldCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOUBLE
FIELD_NOT_SET
INT
STRING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static LearnerOuterClass.DataField.FieldCase
forNumber(int value)
int
getNumber()
static LearnerOuterClass.DataField.FieldCase
valueOf(int value)
Deprecated.static LearnerOuterClass.DataField.FieldCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static LearnerOuterClass.DataField.FieldCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT
public static final LearnerOuterClass.DataField.FieldCase INT
-
DOUBLE
public static final LearnerOuterClass.DataField.FieldCase DOUBLE
-
STRING
public static final LearnerOuterClass.DataField.FieldCase STRING
-
FIELD_NOT_SET
public static final LearnerOuterClass.DataField.FieldCase FIELD_NOT_SET
-
-
Method Detail
-
values
public static LearnerOuterClass.DataField.FieldCase[] 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 (LearnerOuterClass.DataField.FieldCase c : LearnerOuterClass.DataField.FieldCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LearnerOuterClass.DataField.FieldCase 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 LearnerOuterClass.DataField.FieldCase 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 LearnerOuterClass.DataField.FieldCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-