public static enum SimpleTerm.Type extends Enum<SimpleTerm.Type>
| Enum Constant and Description |
|---|
COMPARISON |
IN_TERM |
NESTED |
TOP_LEVEL |
| Modifier and Type | Method and Description |
|---|---|
static SimpleTerm.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleTerm.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleTerm.Type COMPARISON
public static final SimpleTerm.Type IN_TERM
public static final SimpleTerm.Type NESTED
public static final SimpleTerm.Type TOP_LEVEL
public static SimpleTerm.Type[] values()
for (SimpleTerm.Type c : SimpleTerm.Type.values()) System.out.println(c);
public static SimpleTerm.Type 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 nullCopyright © 2016. All rights reserved.