public enum Resolution extends Enum<Resolution>
| Enum Constant and Description |
|---|
CENTH_DEGREE |
FIVE |
HALF_CENTH |
HALF_DEGREE |
HALF_MILLI |
HALF_TENTH |
MILLI_DEGREE |
ONE |
TEN |
TENTH_DEGREE |
| Modifier and Type | Method and Description |
|---|---|
static Resolution |
fromLabel(String label) |
Integer |
getCsquareLength() |
String |
getLabel() |
Double |
getResolution() |
static Resolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Resolution TEN
public static final Resolution FIVE
public static final Resolution ONE
public static final Resolution HALF_DEGREE
public static final Resolution TENTH_DEGREE
public static final Resolution HALF_TENTH
public static final Resolution CENTH_DEGREE
public static final Resolution HALF_CENTH
public static final Resolution MILLI_DEGREE
public static final Resolution HALF_MILLI
public static Resolution[] values()
for (Resolution c : Resolution.values()) System.out.println(c);
public static Resolution 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 nullpublic String getLabel()
public Double getResolution()
public Integer getCsquareLength()
public static final Resolution fromLabel(String label)
Copyright © 2015. All Rights Reserved.