public static enum ExpressionFactory.UnaryOperator extends Enum<ExpressionFactory.UnaryOperator>
Enum Constant and Description |
---|
NOT |
Modifier and Type | Method and Description |
---|---|
abstract void |
checkType(Expression arg) |
String |
javaRepresentation() |
static ExpressionFactory.UnaryOperator |
valueOf(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(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 String javaRepresentation()
public abstract void checkType(Expression arg)
Copyright © 2017 Oracle. All rights reserved.