Package org.bukkit.potion
Enum PotionType
- All Implemented Interfaces:
Serializable
,Comparable<PotionType>
,java.lang.constant.Constable
This enum reflects and matches each potion state that can be obtained from
the Creative mode inventory
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic PotionType
getByEffect
(PotionEffectType effectType) Deprecated.Misleadingint
boolean
Checks if the potion type has an extended state.boolean
boolean
Checks if the potion type has an upgraded state.static PotionType
Returns the enum constant of this type with the specified name.static PotionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNCRAFTABLE
-
WATER
-
MUNDANE
-
THICK
-
AWKWARD
-
NIGHT_VISION
-
INVISIBILITY
-
JUMP
-
FIRE_RESISTANCE
-
SPEED
-
SLOWNESS
-
WATER_BREATHING
-
INSTANT_HEAL
-
INSTANT_DAMAGE
-
POISON
-
REGEN
-
STRENGTH
-
WEAKNESS
-
LUCK
-
TURTLE_MASTER
-
SLOW_FALLING
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getEffectType
-
isInstant
public boolean isInstant() -
isUpgradeable
public boolean isUpgradeable()Checks if the potion type has an upgraded state. This refers to whether or not the potion type can be Tier 2, such as Potion of Fire Resistance II.- Returns:
- true if the potion type can be upgraded;
-
isExtendable
public boolean isExtendable()Checks if the potion type has an extended state. This refers to the extended duration potions- Returns:
- true if the potion type can be extended
-
getMaxLevel
public int getMaxLevel() -
getByEffect
Deprecated.Misleading- Parameters:
effectType
- the effect to get by- Returns:
- the matching potion type
-