public enum ModifierType extends Enum<ModifierType>
| Modifier and Type | Method and Description |
|---|---|
static ModifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifierType DYNAMIC
public static final ModifierType CREATURE_FLEE_SPEED_BONUS
public static final ModifierType ENDERMAN_ATTACK_SPEED_BOOST
public static final ModifierType SPRINT_SPEED_BOOST
public static final ModifierType PIGZOMBIE_ATTACK_SPEED_BOOST
public static final ModifierType WITCH_DRINKING_SPEED_PENALTY
public static final ModifierType ZOMBIE_BABY_SPEED_BOOST
public static final ModifierType ATTACK_DAMAGE_MODIFIER
public static final ModifierType ATTACK_SPEED_MODIFIER
public static final ModifierType SPEED_POTION_MODIFIER
public static final ModifierType HEALTH_BOOST_POTION_MODIFIER
public static final ModifierType SLOW_POTION_MODIFIER
public static final ModifierType STRENGTH_POTION_MODIFIER
public static final ModifierType WEAKNESS_POTION_MODIFIER
public static final ModifierType HASTE_POTION_MODIFIER
public static final ModifierType MINING_FATIGUE_POTION_MODIFIER
public static final ModifierType LUCK_POTION_MODIFIER
public static final ModifierType UNLUCK_POTION_MODIFIER
public static final ModifierType BOOTS_MODIFIER
public static final ModifierType LEGGINGS_MODIFIER
public static final ModifierType CHESTPLATE_MODIFIER
public static final ModifierType HELMET_MODIFIER
public static final ModifierType COVERED_ARMOR_BONUS
public static ModifierType[] values()
for (ModifierType c : ModifierType.values()) System.out.println(c);
public static ModifierType 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 © 2020. All rights reserved.