Package org.bukkit.potion
Enum Class PotionType
- All Implemented Interfaces:
Serializable
,Comparable<PotionType>
,Constable
,Keyed
,RegistryAware
This enum reflects and matches each potion state that can be obtained from
the Creative mode inventory
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Deprecated.Do not use, interface will get removed, and the plugin won't runNested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic PotionType
getByEffect
(PotionEffectType effectType) Deprecated.MisleadingDeprecated.Potions can have multiple effects usegetPotionEffects()
getKey()
Deprecated.A key might not always be present, usegetKeyOrThrow()
instead.Gets the key of this instance if it is registered otherwise returnsnull
.Gets the key of this instance if it is registered otherwise throws an error.int
boolean
Checks if the potion type has an extended state.boolean
Deprecated.PotionType can have multiple effects, some of which can be instant and others not.boolean
Returns whether this instance is register in a registry and therefore has a key or not.boolean
Checks if the potion type has an upgraded state.static PotionType
Returns the enum constant of this class with the specified name.static PotionType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WATER
-
MUNDANE
-
THICK
-
AWKWARD
-
NIGHT_VISION
-
LONG_NIGHT_VISION
-
INVISIBILITY
-
LONG_INVISIBILITY
-
LEAPING
-
LONG_LEAPING
-
STRONG_LEAPING
-
FIRE_RESISTANCE
-
LONG_FIRE_RESISTANCE
-
SWIFTNESS
-
LONG_SWIFTNESS
-
STRONG_SWIFTNESS
-
SLOWNESS
-
LONG_SLOWNESS
-
STRONG_SLOWNESS
-
WATER_BREATHING
-
LONG_WATER_BREATHING
-
HEALING
-
STRONG_HEALING
-
HARMING
-
STRONG_HARMING
-
POISON
-
LONG_POISON
-
STRONG_POISON
-
REGENERATION
-
LONG_REGENERATION
-
STRONG_REGENERATION
-
STRENGTH
-
LONG_STRENGTH
-
STRONG_STRENGTH
-
WEAKNESS
-
LONG_WEAKNESS
-
LUCK
-
TURTLE_MASTER
-
LONG_TURTLE_MASTER
-
STRONG_TURTLE_MASTER
-
SLOW_FALLING
-
LONG_SLOW_FALLING
-
WIND_CHARGED
-
WEAVING
-
OOZING
-
INFESTED
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getEffectType
Deprecated.Potions can have multiple effects usegetPotionEffects()
- Returns:
- the potion effect type of this potion type
-
getPotionEffects
- Returns:
- a list of all effects this potion type has
-
isInstant
Deprecated.PotionType can have multiple effects, some of which can be instant and others not. UsePotionEffectType.isInstant()
in combination withgetPotionEffects()
andPotionEffect.getType()
- Returns:
- if this potion type is instant
-
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() -
getKeyOrThrow
Description copied from interface:RegistryAware
Gets the key of this instance if it is registered otherwise throws an error.
This is a convenience method and plugins should always checkRegistryAware.isRegistered()
before using this method.- Specified by:
getKeyOrThrow
in interfaceRegistryAware
- Returns:
- the key with which this instance is registered.
- See Also:
-
getKeyOrNull
Description copied from interface:RegistryAware
Gets the key of this instance if it is registered otherwise returnsnull
.- Specified by:
getKeyOrNull
in interfaceRegistryAware
- Returns:
- the key with which this instance is registered or
null
if not registered. - See Also:
-
isRegistered
public boolean isRegistered()Description copied from interface:RegistryAware
Returns whether this instance is register in a registry and therefore has a key or not.- Specified by:
isRegistered
in interfaceRegistryAware
- Returns:
- true, if this instance is registered. Otherwise, false.
- See Also:
-
getByEffect
@Deprecated(since="1.9") @Nullable public static PotionType getByEffect(@Nullable PotionEffectType effectType) Deprecated.Misleading- Parameters:
effectType
- the effect to get by- Returns:
- the matching potion type
-
getKey
Deprecated.A key might not always be present, usegetKeyOrThrow()
instead.Return the namespaced identifier for this object.
-