public enum LessBinaryOperatorType extends Enum<LessBinaryOperatorType>
| Enum Constant and Description |
|---|
ACCESSOR
Property access (left[right])
|
ADD
Addition (left + right)
|
CHILD
Direct child combinator (left > right)
|
DESCENDANT
Descendant (left right)
|
DIVIDE
Division (left / right)
|
MULTIPLY
Multiplication (left * right)
|
SUBTRACT
Subtraction (left - right)
|
| Modifier and Type | Method and Description |
|---|---|
static LessBinaryOperatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LessBinaryOperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LessBinaryOperatorType ADD
public static final LessBinaryOperatorType SUBTRACT
public static final LessBinaryOperatorType MULTIPLY
public static final LessBinaryOperatorType DIVIDE
public static final LessBinaryOperatorType ACCESSOR
public static final LessBinaryOperatorType DESCENDANT
public static final LessBinaryOperatorType CHILD
public static LessBinaryOperatorType[] values()
for (LessBinaryOperatorType c : LessBinaryOperatorType.values()) System.out.println(c);
public static LessBinaryOperatorType 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 nullCopyright © 2014. All rights reserved.