public static enum LogicalBinaryExpression.Operator extends Enum<LogicalBinaryExpression.Operator>
| Modifier and Type | Method and Description |
|---|---|
LogicalBinaryExpression.Operator |
flip() |
static LogicalBinaryExpression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalBinaryExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalBinaryExpression.Operator AND
public static final LogicalBinaryExpression.Operator OR
public static LogicalBinaryExpression.Operator[] values()
for (LogicalBinaryExpression.Operator c : LogicalBinaryExpression.Operator.values()) System.out.println(c);
public static LogicalBinaryExpression.Operator 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 LogicalBinaryExpression.Operator flip()
Copyright © 2012–2023. All rights reserved.