public static enum ExpressionFactory.UnaryOperator extends java.lang.Enum<ExpressionFactory.UnaryOperator>
Enum Constant and Description |
---|
NOT |
Modifier and Type | Method and Description |
---|---|
abstract void |
checkType(Expression arg) |
java.lang.String |
javaRepresentation() |
static ExpressionFactory.UnaryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionFactory.UnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionFactory.UnaryOperator NOT
public static ExpressionFactory.UnaryOperator[] values()
for (ExpressionFactory.UnaryOperator c : ExpressionFactory.UnaryOperator.values()) System.out.println(c);
public static ExpressionFactory.UnaryOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String javaRepresentation()
public abstract void checkType(Expression arg)