public enum STTileFlipMode extends Enum<STTileFlipMode>
Java class for ST_TileFlipMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TileFlipMode"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="none"/> <enumeration value="x"/> <enumeration value="y"/> <enumeration value="xy"/> </restriction> </simpleType>
Enum Constant and Description |
---|
NONE
None
|
X
Horizontal
|
XY
Horizontal and Vertical
|
Y
Vertical
|
Modifier and Type | Method and Description |
---|---|
static STTileFlipMode |
fromValue(String v) |
String |
value() |
static STTileFlipMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTileFlipMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTileFlipMode NONE
public static final STTileFlipMode X
public static final STTileFlipMode Y
public static final STTileFlipMode XY
public static STTileFlipMode[] values()
for (STTileFlipMode c : STTileFlipMode.values()) System.out.println(c);
public static STTileFlipMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static STTileFlipMode fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.