public enum CoordinateFormat extends Enum<CoordinateFormat>
| Enum Constant and Description |
|---|
dd
degre decimal
|
dmd
degre minute decimal
|
dms
degre minute second
|
| Modifier and Type | Method and Description |
|---|---|
static CoordinateFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateFormat dd
public static final CoordinateFormat dms
public static final CoordinateFormat dmd
public static CoordinateFormat[] values()
for (CoordinateFormat c : CoordinateFormat.values()) System.out.println(c);
public static CoordinateFormat 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 © 2008–2019 Ultreia.io. All rights reserved.