public enum KickTable extends Enum<KickTable>
Enum Constant and Description |
---|
DOWN_LEFT |
DOWN_RIGHT |
IDOWN_LEFT |
IDOWN_RIGHT |
ILEFT_DOWN |
ILEFT_UP |
IRIGHT_DOWN |
IRIGHT_UP |
IUP_LEFT |
IUP_RIGHT |
LEFT_DOWN |
LEFT_UP |
NO_KICK |
RIGHT_DOWN |
RIGHT_UP |
UP_LEFT |
UP_RIGHT |
Modifier and Type | Method and Description |
---|---|
int[][] |
table() |
static KickTable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KickTable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KickTable NO_KICK
public static final KickTable UP_RIGHT
public static final KickTable RIGHT_DOWN
public static final KickTable DOWN_LEFT
public static final KickTable LEFT_UP
public static final KickTable UP_LEFT
public static final KickTable RIGHT_UP
public static final KickTable DOWN_RIGHT
public static final KickTable LEFT_DOWN
public static final KickTable IUP_RIGHT
public static final KickTable IRIGHT_DOWN
public static final KickTable IDOWN_LEFT
public static final KickTable ILEFT_UP
public static final KickTable IUP_LEFT
public static final KickTable IRIGHT_UP
public static final KickTable IDOWN_RIGHT
public static final KickTable ILEFT_DOWN
public static KickTable[] values()
for (KickTable c : KickTable.values()) System.out.println(c);
public static KickTable 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 int[][] table()
Copyright © 2015. All rights reserved.