public static enum UTMProjectionChoice.Hemisphere extends Enum<UTMProjectionChoice.Hemisphere>
Enum Constant and Description |
---|
North
North emisphere
|
South
South emisphere
|
Modifier and Type | Method and Description |
---|---|
static UTMProjectionChoice.Hemisphere |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UTMProjectionChoice.Hemisphere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UTMProjectionChoice.Hemisphere North
public static final UTMProjectionChoice.Hemisphere South
public static UTMProjectionChoice.Hemisphere[] values()
for (UTMProjectionChoice.Hemisphere c : UTMProjectionChoice.Hemisphere.values()) System.out.println(c);
public static UTMProjectionChoice.Hemisphere 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 null