public static enum CoordinateFormat.DegMinSec extends java.lang.Enum<CoordinateFormat.DegMinSec>
Enum Constant and Description |
---|
COLON
Colon.
|
DEGREE
Degrees.
|
EMPTY
Empty.
|
MINUTE
Minutes.
|
NONE
None.
|
SECOND
Seconds.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CoordinateFormat.DegMinSec |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateFormat.DegMinSec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateFormat.DegMinSec DEGREE
public static final CoordinateFormat.DegMinSec MINUTE
public static final CoordinateFormat.DegMinSec SECOND
public static final CoordinateFormat.DegMinSec COLON
public static final CoordinateFormat.DegMinSec NONE
public static final CoordinateFormat.DegMinSec EMPTY
public static CoordinateFormat.DegMinSec[] values()
for (CoordinateFormat.DegMinSec c : CoordinateFormat.DegMinSec.values()) System.out.println(c);
public static CoordinateFormat.DegMinSec 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<CoordinateFormat.DegMinSec>