Package flyteidl.core
Enum Condition.ComparisonExpression.Operator
- java.lang.Object
-
- java.lang.Enum<Condition.ComparisonExpression.Operator>
-
- flyteidl.core.Condition.ComparisonExpression.Operator
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,java.io.Serializable,java.lang.Comparable<Condition.ComparisonExpression.Operator>
- Enclosing class:
- Condition.ComparisonExpression
public static enum Condition.ComparisonExpression.Operator extends java.lang.Enum<Condition.ComparisonExpression.Operator> implements com.google.protobuf.ProtocolMessageEnum
Binary Operator for each expression
Protobuf enumflyteidl.core.ComparisonExpression.Operator
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Condition.ComparisonExpression.OperatorforNumber(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<Condition.ComparisonExpression.Operator>internalGetValueMap()static Condition.ComparisonExpression.OperatorvalueOf(int value)Deprecated.static Condition.ComparisonExpression.OperatorvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static Condition.ComparisonExpression.OperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Condition.ComparisonExpression.Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final Condition.ComparisonExpression.Operator EQ
EQ = 0;
-
NEQ
public static final Condition.ComparisonExpression.Operator NEQ
NEQ = 1;
-
GT
public static final Condition.ComparisonExpression.Operator GT
Greater Than
GT = 2;
-
GTE
public static final Condition.ComparisonExpression.Operator GTE
GTE = 3;
-
LT
public static final Condition.ComparisonExpression.Operator LT
Less Than
LT = 4;
-
LTE
public static final Condition.ComparisonExpression.Operator LTE
LTE = 5;
-
UNRECOGNIZED
public static final Condition.ComparisonExpression.Operator UNRECOGNIZED
-
-
Field Detail
-
EQ_VALUE
public static final int EQ_VALUE
EQ = 0;- See Also:
- Constant Field Values
-
NEQ_VALUE
public static final int NEQ_VALUE
NEQ = 1;- See Also:
- Constant Field Values
-
GT_VALUE
public static final int GT_VALUE
Greater Than
GT = 2;- See Also:
- Constant Field Values
-
GTE_VALUE
public static final int GTE_VALUE
GTE = 3;- See Also:
- Constant Field Values
-
LT_VALUE
public static final int LT_VALUE
Less Than
LT = 4;- See Also:
- Constant Field Values
-
LTE_VALUE
public static final int LTE_VALUE
LTE = 5;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Condition.ComparisonExpression.Operator[] 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 (Condition.ComparisonExpression.Operator c : Condition.ComparisonExpression.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Condition.ComparisonExpression.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- 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 Condition.ComparisonExpression.Operator 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static Condition.ComparisonExpression.Operator 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<Condition.ComparisonExpression.Operator> 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 Condition.ComparisonExpression.Operator 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-