Enum TileSuffixMode
- java.lang.Object
-
- java.lang.Enum<TileSuffixMode>
-
- org.citydb.config.project.exporter.TileSuffixMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TileSuffixMode>
public enum TileSuffixMode extends java.lang.Enum<TileSuffixMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ROW_COLUMN
XMAX_YMAX
XMAX_YMIN
XMIN_YMAX
XMIN_YMIN
XMIN_YMIN_XMAX_YMAX
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TileSuffixMode
fromValue(java.lang.String v)
java.lang.String
toString()
java.lang.String
value()
static TileSuffixMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TileSuffixMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_COLUMN
public static final TileSuffixMode ROW_COLUMN
-
XMIN_YMIN
public static final TileSuffixMode XMIN_YMIN
-
XMAX_YMIN
public static final TileSuffixMode XMAX_YMIN
-
XMIN_YMAX
public static final TileSuffixMode XMIN_YMAX
-
XMAX_YMAX
public static final TileSuffixMode XMAX_YMAX
-
XMIN_YMIN_XMAX_YMAX
public static final TileSuffixMode XMIN_YMIN_XMAX_YMAX
-
-
Method Detail
-
values
public static TileSuffixMode[] 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 (TileSuffixMode c : TileSuffixMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TileSuffixMode 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 namejava.lang.NullPointerException
- if the argument is null
-
value
public java.lang.String value()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TileSuffixMode>
-
fromValue
public static TileSuffixMode fromValue(java.lang.String v)
-
-