public static enum DiscoBallEffect.Direction extends Enum<DiscoBallEffect.Direction>
| Modifier and Type | Method and Description |
|---|---|
static DiscoBallEffect.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscoBallEffect.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscoBallEffect.Direction UP
public static final DiscoBallEffect.Direction DOWN
public static final DiscoBallEffect.Direction BOTH
public static DiscoBallEffect.Direction[] values()
for (DiscoBallEffect.Direction c : DiscoBallEffect.Direction.values()) System.out.println(c);
public static DiscoBallEffect.Direction 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 © 2021 elMakers. All rights reserved.