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