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