public static enum Constants.Preposition extends Enum<Constants.Preposition>
| Enum Constant and Description |
|---|
AFTER |
ALONG |
AT |
BEFORE |
PAST |
THROUGH |
TOWARDS |
| Modifier and Type | Method and Description |
|---|---|
static Constants.Preposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Preposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Preposition BEFORE
public static final Constants.Preposition AT
public static final Constants.Preposition AFTER
public static final Constants.Preposition TOWARDS
public static final Constants.Preposition THROUGH
public static final Constants.Preposition ALONG
public static final Constants.Preposition PAST
public static Constants.Preposition[] values()
for (Constants.Preposition c : Constants.Preposition.values()) System.out.println(c);
public static Constants.Preposition 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 © 2018. All rights reserved.