public enum ExpressionOperator extends Enum<ExpressionOperator>
ExpressionParser.| Enum Constant and Description |
|---|
AND
operator AND
|
NOT
operator NOT
|
OR
operator OR
|
| Modifier and Type | Method and Description |
|---|---|
char |
getChar()
Getter access to attribute 'car', representative character.
|
static ExpressionOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionOperator OR
public static final ExpressionOperator AND
public static final ExpressionOperator NOT
public static ExpressionOperator[] values()
for (ExpressionOperator c : ExpressionOperator.values()) System.out.println(c);
public static ExpressionOperator 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 char getChar()
Copyright © 2013–2015 FF4J. All rights reserved.