public static enum Term.Kind extends Enum<Term.Kind>
| Enum Constant and Description |
|---|
ANY |
CLASS |
INDIVIDUAL |
NAMESPACE |
PROPERTY |
| Modifier and Type | Method and Description |
|---|---|
static Term.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Term.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Term.Kind NAMESPACE
public static final Term.Kind CLASS
public static final Term.Kind PROPERTY
public static final Term.Kind INDIVIDUAL
public static final Term.Kind ANY
public static Term.Kind[] values()
for (Term.Kind c : Term.Kind.values()) System.out.println(c);
public static Term.Kind 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 © 2019. All rights reserved.