public static enum FireworkEffect.Type extends Enum<FireworkEffect.Type>
| Enum Constant and Description | 
|---|
| BALLA small ball effect. | 
| BALL_LARGEA large ball effect. | 
| BURSTA burst effect. | 
| CREEPERA creeper-face effect. | 
| STARA 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 © 2015. All rights reserved.