public enum BinaryOperatorKind extends Enum<BinaryOperatorKind>
| Enum Constant and Description | 
|---|
| ADDAddition operator | 
| ANDAnd operator | 
| DIVDivision operator | 
| EQEquality operator | 
| GEGreater than or equals (">=") operator | 
| GTGreater than operator (">") | 
| HASOData has operator used for OData enumerations | 
| INIn operator | 
| LELesser operator or equals ("<=") operator | 
| LTLesser than operator ("<") | 
| MODModulo operator | 
| MULMultiplication operator | 
| NEInequality operator | 
| OROr operator | 
| SUBSubtraction operator | 
| Modifier and Type | Method and Description | 
|---|---|
| static BinaryOperatorKind | get(String operator)URI syntax to enumeration value | 
| String | toString() | 
| static BinaryOperatorKind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BinaryOperatorKind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BinaryOperatorKind HAS
public static final BinaryOperatorKind IN
public static final BinaryOperatorKind MUL
public static final BinaryOperatorKind DIV
public static final BinaryOperatorKind MOD
public static final BinaryOperatorKind ADD
public static final BinaryOperatorKind SUB
public static final BinaryOperatorKind GT
public static final BinaryOperatorKind GE
public static final BinaryOperatorKind LT
public static final BinaryOperatorKind LE
public static final BinaryOperatorKind EQ
public static final BinaryOperatorKind NE
public static final BinaryOperatorKind AND
public static final BinaryOperatorKind OR
public static BinaryOperatorKind[] values()
for (BinaryOperatorKind c : BinaryOperatorKind.values()) System.out.println(c);
public static BinaryOperatorKind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static BinaryOperatorKind get(String operator)
operator - Operator in the syntax used in the URIpublic String toString()
toString in class Enum<BinaryOperatorKind>Copyright © 2013–2023 The Apache Software Foundation. All rights reserved.