public static enum TiledTileset.GridOrientation extends java.lang.Enum<TiledTileset.GridOrientation>
Represents an orientation that a tileset's tile grid can have.
Enum Constant and Description |
---|
ISOMETRIC |
ORTHOGONAL |
Modifier and Type | Method and Description |
---|---|
static TiledTileset.GridOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TiledTileset.GridOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiledTileset.GridOrientation ORTHOGONAL
public static final TiledTileset.GridOrientation ISOMETRIC
public static TiledTileset.GridOrientation[] values()
for (TiledTileset.GridOrientation c : TiledTileset.GridOrientation.values()) System.out.println(c);
public static TiledTileset.GridOrientation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null