Package com.google.cloud.asset.v1
Enum ConditionEvaluation.EvaluationValue
- java.lang.Object
-
- java.lang.Enum<ConditionEvaluation.EvaluationValue>
-
- com.google.cloud.asset.v1.ConditionEvaluation.EvaluationValue
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ConditionEvaluation.EvaluationValue>
- Enclosing class:
- ConditionEvaluation
public static enum ConditionEvaluation.EvaluationValue extends Enum<ConditionEvaluation.EvaluationValue> implements com.google.protobuf.ProtocolMessageEnum
Value of this expression.
Protobuf enumgoogle.cloud.asset.v1.ConditionEvaluation.EvaluationValue
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONDITIONAL
The evaluation result is `conditional` when the condition expression contains variables that are either missing input values or have not been supported by Analyzer yet.EVALUATION_VALUE_UNSPECIFIED
Reserved for future use.FALSE
The evaluation result is `false`.TRUE
The evaluation result is `true`.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
CONDITIONAL_VALUE
The evaluation result is `conditional` when the condition expression contains variables that are either missing input values or have not been supported by Analyzer yet.static int
EVALUATION_VALUE_UNSPECIFIED_VALUE
Reserved for future use.static int
FALSE_VALUE
The evaluation result is `false`.static int
TRUE_VALUE
The evaluation result is `true`.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ConditionEvaluation.EvaluationValue
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<ConditionEvaluation.EvaluationValue>
internalGetValueMap()
static ConditionEvaluation.EvaluationValue
valueOf(int value)
Deprecated.static ConditionEvaluation.EvaluationValue
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ConditionEvaluation.EvaluationValue
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConditionEvaluation.EvaluationValue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVALUATION_VALUE_UNSPECIFIED
public static final ConditionEvaluation.EvaluationValue EVALUATION_VALUE_UNSPECIFIED
Reserved for future use.
EVALUATION_VALUE_UNSPECIFIED = 0;
-
TRUE
public static final ConditionEvaluation.EvaluationValue TRUE
The evaluation result is `true`.
TRUE = 1;
-
FALSE
public static final ConditionEvaluation.EvaluationValue FALSE
The evaluation result is `false`.
FALSE = 2;
-
CONDITIONAL
public static final ConditionEvaluation.EvaluationValue CONDITIONAL
The evaluation result is `conditional` when the condition expression contains variables that are either missing input values or have not been supported by Analyzer yet.
CONDITIONAL = 3;
-
UNRECOGNIZED
public static final ConditionEvaluation.EvaluationValue UNRECOGNIZED
-
-
Field Detail
-
EVALUATION_VALUE_UNSPECIFIED_VALUE
public static final int EVALUATION_VALUE_UNSPECIFIED_VALUE
Reserved for future use.
EVALUATION_VALUE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
TRUE_VALUE
public static final int TRUE_VALUE
The evaluation result is `true`.
TRUE = 1;
- See Also:
- Constant Field Values
-
FALSE_VALUE
public static final int FALSE_VALUE
The evaluation result is `false`.
FALSE = 2;
- See Also:
- Constant Field Values
-
CONDITIONAL_VALUE
public static final int CONDITIONAL_VALUE
The evaluation result is `conditional` when the condition expression contains variables that are either missing input values or have not been supported by Analyzer yet.
CONDITIONAL = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ConditionEvaluation.EvaluationValue[] 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 (ConditionEvaluation.EvaluationValue c : ConditionEvaluation.EvaluationValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConditionEvaluation.EvaluationValue 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 ConditionEvaluation.EvaluationValue 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 ConditionEvaluation.EvaluationValue 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<ConditionEvaluation.EvaluationValue> 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 ConditionEvaluation.EvaluationValue 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
-
-