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