public static enum PROJ.ProjectileType extends java.lang.Enum<PROJ.ProjectileType>
Enum Constant and Description |
---|
Arrow |
Barrier |
Beam |
Cone |
Flame |
Lobber |
Missile |
Modifier and Type | Method and Description |
---|---|
static PROJ.ProjectileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PROJ.ProjectileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PROJ.ProjectileType Missile
public static final PROJ.ProjectileType Lobber
public static final PROJ.ProjectileType Beam
public static final PROJ.ProjectileType Flame
public static final PROJ.ProjectileType Cone
public static final PROJ.ProjectileType Barrier
public static final PROJ.ProjectileType Arrow
public static PROJ.ProjectileType[] values()
for (PROJ.ProjectileType c : PROJ.ProjectileType.values()) System.out.println(c);
public static PROJ.ProjectileType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null