public static enum KennLine.MoveMode extends Enum<KennLine.MoveMode>
| Enum Constant and Description |
|---|
fixed |
proportional |
telescope |
| Modifier and Type | Method and Description |
|---|---|
static KennLine.MoveMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KennLine.MoveMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KennLine.MoveMode proportional
public static final KennLine.MoveMode fixed
public static final KennLine.MoveMode telescope
public static KennLine.MoveMode[] values()
for (KennLine.MoveMode c : KennLine.MoveMode.values()) System.out.println(c);
public static KennLine.MoveMode 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 null