- java.lang.Object
-
- java.lang.Enum<Tile.MapProvider>
-
- eu.hansolo.tilesfx.Tile.MapProvider
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Tile.MapProvider>
- Enclosing class:
- Tile
public static enum Tile.MapProvider extends java.lang.Enum<Tile.MapProvider>
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringname
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Tile.MapProvidervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Tile.MapProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BW
public static final Tile.MapProvider BW
-
STREET
public static final Tile.MapProvider STREET
-
BRIGHT
public static final Tile.MapProvider BRIGHT
-
DARK
public static final Tile.MapProvider DARK
-
SAT
public static final Tile.MapProvider SAT
-
TOPO
public static final Tile.MapProvider TOPO
-
-
Method Detail
-
values
public static Tile.MapProvider[] 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 (Tile.MapProvider c : Tile.MapProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tile.MapProvider 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
-
-