public static enum Location.NumberMode extends Enum<Location.NumberMode>
Enum Constant and Description |
---|
not_applicable |
particular |
unknown |
Modifier and Type | Method and Description |
---|---|
static Location.NumberMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Location.NumberMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Location.NumberMode unknown
public static final Location.NumberMode not_applicable
public static final Location.NumberMode particular
public static Location.NumberMode[] values()
for (Location.NumberMode c : Location.NumberMode.values()) System.out.println(c);
public static Location.NumberMode 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 nullsee also the complete user documentation .