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