public static enum FireworkEffect.Type extends Enum<FireworkEffect.Type>
Enum Constant and Description |
---|
BALL
A small ball effect.
|
BALL_LARGE
A large ball effect.
|
BURST
A burst effect.
|
CREEPER
A creeper-face effect.
|
STAR
A star-shaped effect.
|
Modifier and Type | Method and Description |
---|---|
static FireworkEffect.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FireworkEffect.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FireworkEffect.Type BALL
public static final FireworkEffect.Type BALL_LARGE
public static final FireworkEffect.Type STAR
public static final FireworkEffect.Type BURST
public static final FireworkEffect.Type CREEPER
public static FireworkEffect.Type[] values()
for (FireworkEffect.Type c : FireworkEffect.Type.values()) System.out.println(c);
public static FireworkEffect.Type 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 © 2016. All rights reserved.