Enum Class PotionType

java.lang.Object
java.lang.Enum<PotionType>
org.bukkit.potion.PotionType
All Implemented Interfaces:
FeatureDependant, Serializable, Comparable<PotionType>, Constable, Keyed, Keyed

public enum PotionType extends Enum<PotionType> implements Keyed, FeatureDependant
This enum reflects and matches each potion state that can be obtained from the Creative mode inventory
  • Enum Constant Details

    • AWKWARD

      public static final PotionType AWKWARD
    • FIRE_RESISTANCE

      public static final PotionType FIRE_RESISTANCE
    • HARMING

      public static final PotionType HARMING
    • HEALING

      public static final PotionType HEALING
    • INFESTED

      public static final PotionType INFESTED
    • INVISIBILITY

      public static final PotionType INVISIBILITY
    • LEAPING

      public static final PotionType LEAPING
    • LONG_FIRE_RESISTANCE

      public static final PotionType LONG_FIRE_RESISTANCE
    • LONG_INVISIBILITY

      public static final PotionType LONG_INVISIBILITY
    • LONG_LEAPING

      public static final PotionType LONG_LEAPING
    • LONG_NIGHT_VISION

      public static final PotionType LONG_NIGHT_VISION
    • LONG_POISON

      public static final PotionType LONG_POISON
    • LONG_REGENERATION

      public static final PotionType LONG_REGENERATION
    • LONG_SLOW_FALLING

      public static final PotionType LONG_SLOW_FALLING
    • LONG_SLOWNESS

      public static final PotionType LONG_SLOWNESS
    • LONG_STRENGTH

      public static final PotionType LONG_STRENGTH
    • LONG_SWIFTNESS

      public static final PotionType LONG_SWIFTNESS
    • LONG_TURTLE_MASTER

      public static final PotionType LONG_TURTLE_MASTER
    • LONG_WATER_BREATHING

      public static final PotionType LONG_WATER_BREATHING
    • LONG_WEAKNESS

      public static final PotionType LONG_WEAKNESS
    • LUCK

      public static final PotionType LUCK
    • MUNDANE

      public static final PotionType MUNDANE
    • NIGHT_VISION

      public static final PotionType NIGHT_VISION
    • OOZING

      public static final PotionType OOZING
    • POISON

      public static final PotionType POISON
    • REGENERATION

      public static final PotionType REGENERATION
    • SLOW_FALLING

      public static final PotionType SLOW_FALLING
    • SLOWNESS

      public static final PotionType SLOWNESS
    • STRENGTH

      public static final PotionType STRENGTH
    • STRONG_HARMING

      public static final PotionType STRONG_HARMING
    • STRONG_HEALING

      public static final PotionType STRONG_HEALING
    • STRONG_LEAPING

      public static final PotionType STRONG_LEAPING
    • STRONG_POISON

      public static final PotionType STRONG_POISON
    • STRONG_REGENERATION

      public static final PotionType STRONG_REGENERATION
    • STRONG_SLOWNESS

      public static final PotionType STRONG_SLOWNESS
    • STRONG_STRENGTH

      public static final PotionType STRONG_STRENGTH
    • STRONG_SWIFTNESS

      public static final PotionType STRONG_SWIFTNESS
    • STRONG_TURTLE_MASTER

      public static final PotionType STRONG_TURTLE_MASTER
    • SWIFTNESS

      public static final PotionType SWIFTNESS
    • THICK

      public static final PotionType THICK
    • TURTLE_MASTER

      public static final PotionType TURTLE_MASTER
    • WATER

      public static final PotionType WATER
    • WATER_BREATHING

      public static final PotionType WATER_BREATHING
    • WEAKNESS

      public static final PotionType WEAKNESS
    • WEAVING

      public static final PotionType WEAVING
    • WIND_CHARGED

      public static final PotionType WIND_CHARGED
  • Method Details

    • values

      public static PotionType[] 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

      public static PotionType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getEffectType

      @Nullable @Deprecated(since="1.20.2") public @Nullable PotionEffectType getEffectType()
      Deprecated.
      Potions can have multiple effects use getPotionEffects()
      Returns:
      the potion effect type of this potion type
    • getPotionEffects

      @NotNull public @NotNull List<PotionEffect> getPotionEffects()
      Returns:
      a list of all effects this potion type has
    • isInstant

      @Deprecated(since="1.20.2") public boolean isInstant()
      Deprecated.
      PotionType can have multiple effects, some of which can be instant and others not. Use PotionEffectType.isInstant() in combination with getPotionEffects() and PotionEffect.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()
    • getByEffect

      @Deprecated(since="1.9") @Nullable public static @Nullable PotionType getByEffect(@Nullable @Nullable PotionEffectType effectType)
      Deprecated.
      Misleading
      Parameters:
      effectType - the effect to get by
      Returns:
      the matching potion type
    • getKey

      @NotNull public @NotNull NamespacedKey getKey()
      Description copied from interface: Keyed
      Return the namespaced identifier for this object.
      Specified by:
      getKey in interface Keyed
      Returns:
      this object's key