public static enum TransverseMercator.Hemisphere extends java.lang.Enum<TransverseMercator.Hemisphere>
| Enum Constant and Description |
|---|
North
North emisphere
|
South
South emisphere
|
| Modifier and Type | Method and Description |
|---|---|
static TransverseMercator.Hemisphere |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransverseMercator.Hemisphere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransverseMercator.Hemisphere North
public static final TransverseMercator.Hemisphere South
public static TransverseMercator.Hemisphere[] values()
for (TransverseMercator.Hemisphere c : TransverseMercator.Hemisphere.values()) System.out.println(c);
public static TransverseMercator.Hemisphere valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null