public enum UnitsOfPixelResolutionMap extends Enum<UnitsOfPixelResolutionMap>
Java class for Units_of_Pixel_Resolution_Map.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Units_of_Pixel_Resolution_Map">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="deg/pixel"/>
<enumeration value="km/pixel"/>
<enumeration value="m/pixel"/>
<enumeration value="mm/pixel"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEG_PIXEL |
KM_PIXEL |
M_PIXEL |
MM_PIXEL |
| Modifier and Type | Method and Description |
|---|---|
static UnitsOfPixelResolutionMap |
fromValue(String v) |
String |
value() |
static UnitsOfPixelResolutionMap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnitsOfPixelResolutionMap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnitsOfPixelResolutionMap DEG_PIXEL
public static final UnitsOfPixelResolutionMap KM_PIXEL
public static final UnitsOfPixelResolutionMap M_PIXEL
public static final UnitsOfPixelResolutionMap MM_PIXEL
public static UnitsOfPixelResolutionMap[] values()
for (UnitsOfPixelResolutionMap c : UnitsOfPixelResolutionMap.values()) System.out.println(c);
public static UnitsOfPixelResolutionMap 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 value()
public static UnitsOfPixelResolutionMap fromValue(String v)
Copyright © 2020. All rights reserved.