public enum BinaryOperatorKind extends Enum<BinaryOperatorKind>
Enum Constant and Description |
---|
ADD
Addition operator
|
AND
And operator
|
DIV
Division operator
|
EQ
Equality operator
|
GE
Greater than or equals (">=") operator
|
GT
Greater than operator (">")
|
HAS
OData has operator used for OData enumerations
|
LE
Lesser operator or equals ("<=") operator
|
LT
Lesser than operator ("<")
|
MOD
Modulo operator
|
MUL
Multiplication operator
|
NE
Inequality operator
|
OR
Or operator
|
SUB
Subtraction 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 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–2018 The Apache Software Foundation. All rights reserved.