Enum ImageryReader.State
- java.lang.Object
-
- java.lang.Enum<ImageryReader.State>
-
- org.openstreetmap.josm.io.imagery.ImageryReader.State
-
- All Implemented Interfaces:
Serializable
,Comparable<ImageryReader.State>
- Enclosing class:
- ImageryReader
private static enum ImageryReader.State extends Enum<ImageryReader.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOUNDS
CODE
CUSTOM_HTTP_HEADERS
DEFAULT_LAYERS
ENTRY
ENTRY_ATTRIBUTE
IMAGERY
INIT
METADATA
MIRROR
MIRROR_ATTRIBUTE
MIRROR_PROJECTIONS
NO_TILE
NO_TILESUM
NOOP
PROJECTIONS
SHAPE
UNKNOWN
-
Constructor Summary
Constructors Modifier Constructor Description private
State()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageryReader.State
valueOf(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.
-
-
-
Enum Constant Detail
-
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
-
MIRROR
public static final ImageryReader.State MIRROR
-
MIRROR_ATTRIBUTE
public static final ImageryReader.State MIRROR_ATTRIBUTE
-
MIRROR_PROJECTIONS
public static final ImageryReader.State MIRROR_PROJECTIONS
-
CODE
public static final ImageryReader.State CODE
-
BOUNDS
public static final ImageryReader.State BOUNDS
-
SHAPE
public static final ImageryReader.State SHAPE
-
NO_TILE
public static final ImageryReader.State NO_TILE
-
NO_TILESUM
public static final ImageryReader.State NO_TILESUM
-
METADATA
public static final ImageryReader.State METADATA
-
DEFAULT_LAYERS
public static final ImageryReader.State DEFAULT_LAYERS
-
CUSTOM_HTTP_HEADERS
public static final ImageryReader.State CUSTOM_HTTP_HEADERS
-
NOOP
public static final ImageryReader.State NOOP
-
UNKNOWN
public static final ImageryReader.State UNKNOWN
-
-
Constructor Detail
-
State
private State()
-
-
Method Detail
-
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(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-