public enum Hgv extends Enum<Hgv>
| Enum Constant and Description |
|---|
AGRICULTURAL |
DELIVERY |
DESIGNATED |
DESTINATION |
DISCOURAGED |
MISSING |
NO |
YES |
| Modifier and Type | Method and Description |
|---|---|
static Hgv |
find(String name) |
String |
toString() |
static Hgv |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Hgv[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Hgv MISSING
public static final Hgv YES
public static final Hgv DESIGNATED
public static final Hgv DESTINATION
public static final Hgv DELIVERY
public static final Hgv DISCOURAGED
public static final Hgv AGRICULTURAL
public static final Hgv NO
public static final String KEY
public static Hgv[] values()
for (Hgv c : Hgv.values()) System.out.println(c);
public static Hgv 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 © 2012–2022. All rights reserved.