public static enum BounceEffect.BounceDirection extends Enum<BounceEffect.BounceDirection>
| Modifier and Type | Method and Description |
|---|---|
static BounceEffect.BounceDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BounceEffect.BounceDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BounceEffect.BounceDirection up
public static final BounceEffect.BounceDirection down
public static final BounceEffect.BounceDirection left
public static final BounceEffect.BounceDirection right
public static BounceEffect.BounceDirection[] values()
for (BounceEffect.BounceDirection c : BounceEffect.BounceDirection.values()) System.out.println(c);
public static BounceEffect.BounceDirection 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 © 2009-2012. All Rights Reserved.