org.openstreetmap.josm.io.imagery
Enum ImageryReader.State
java.lang.Object
java.lang.Enum<ImageryReader.State>
org.openstreetmap.josm.io.imagery.ImageryReader.State
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ImageryReader.State>
- Enclosing class:
- ImageryReader
private static enum ImageryReader.State
- extends java.lang.Enum<ImageryReader.State>
Method Summary |
static ImageryReader.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageryReader.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
INIT
public static final ImageryReader.State INIT
IMAGERY
public static final ImageryReader.State IMAGERY
ENTRY
public static final ImageryReader.State ENTRY
ENTRY_ATTRIBUTE
public static final ImageryReader.State ENTRY_ATTRIBUTE
PROJECTIONS
public static final ImageryReader.State PROJECTIONS
CODE
public static final ImageryReader.State CODE
BOUNDS
public static final ImageryReader.State BOUNDS
SHAPE
public static final ImageryReader.State SHAPE
UNKNOWN
public static final ImageryReader.State UNKNOWN
values
public static ImageryReader.State[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ImageryReader.State c : ImageryReader.State.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ImageryReader.State valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
JOSM