public enum TmxTileInstanceEffect extends Enum<TmxTileInstanceEffect>
| Enum Constant and Description |
|---|
FLIPPED_DIAGONALLY |
FLIPPED_HORIZONTALLY |
FLIPPED_VERTICALLY |
| Modifier and Type | Field and Description |
|---|---|
int |
gidFlag |
| Modifier and Type | Method and Description |
|---|---|
static TmxTileInstanceEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TmxTileInstanceEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TmxTileInstanceEffect FLIPPED_HORIZONTALLY
public static final TmxTileInstanceEffect FLIPPED_VERTICALLY
public static final TmxTileInstanceEffect FLIPPED_DIAGONALLY
public static TmxTileInstanceEffect[] values()
for (TmxTileInstanceEffect c : TmxTileInstanceEffect.values()) System.out.println(c);
public static TmxTileInstanceEffect 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 nullCopyright © 2014. All rights reserved.