public static enum UnaryTestNode.UnaryOperator extends Enum<UnaryTestNode.UnaryOperator>
Modifier and Type | Method and Description |
---|---|
static UnaryTestNode.UnaryOperator |
determineOperator(String symbol) |
static UnaryTestNode.UnaryOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnaryTestNode.UnaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnaryTestNode.UnaryOperator LTE
public static final UnaryTestNode.UnaryOperator LT
public static final UnaryTestNode.UnaryOperator GT
public static final UnaryTestNode.UnaryOperator GTE
public static final UnaryTestNode.UnaryOperator NE
public static final UnaryTestNode.UnaryOperator EQ
public static final UnaryTestNode.UnaryOperator NOT
public static final UnaryTestNode.UnaryOperator IN
public final String symbol
public static UnaryTestNode.UnaryOperator[] values()
for (UnaryTestNode.UnaryOperator c : UnaryTestNode.UnaryOperator.values()) System.out.println(c);
public static UnaryTestNode.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 static UnaryTestNode.UnaryOperator determineOperator(String symbol)
Copyright © 2001–2018 JBoss by Red Hat. All rights reserved.