Enum Class PotionType

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

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

    • UNCRAFTABLE

      public static final PotionType UNCRAFTABLE
    • WATER

      public static final PotionType WATER
    • MUNDANE

      public static final PotionType MUNDANE
    • THICK

      public static final PotionType THICK
    • AWKWARD

      public static final PotionType AWKWARD
    • NIGHT_VISION

      public static final PotionType NIGHT_VISION
    • LONG_NIGHT_VISION

      public static final PotionType LONG_NIGHT_VISION
    • INVISIBILITY

      public static final PotionType INVISIBILITY
    • LONG_INVISIBILITY

      public static final PotionType LONG_INVISIBILITY
    • JUMP

      public static final PotionType JUMP
    • LONG_LEAPING

      public static final PotionType LONG_LEAPING
    • STRONG_LEAPING

      public static final PotionType STRONG_LEAPING
    • FIRE_RESISTANCE

      public static final PotionType FIRE_RESISTANCE
    • LONG_FIRE_RESISTANCE

      public static final PotionType LONG_FIRE_RESISTANCE
    • SPEED

      public static final PotionType SPEED
    • LONG_SWIFTNESS

      public static final PotionType LONG_SWIFTNESS
    • STRONG_SWIFTNESS

      public static final PotionType STRONG_SWIFTNESS
    • SLOWNESS

      public static final PotionType SLOWNESS
    • LONG_SLOWNESS

      public static final PotionType LONG_SLOWNESS
    • STRONG_SLOWNESS

      public static final PotionType STRONG_SLOWNESS
    • WATER_BREATHING

      public static final PotionType WATER_BREATHING
    • LONG_WATER_BREATHING

      public static final PotionType LONG_WATER_BREATHING
    • INSTANT_HEAL

      public static final PotionType INSTANT_HEAL
    • STRONG_HEALING

      public static final PotionType STRONG_HEALING
    • INSTANT_DAMAGE

      public static final PotionType INSTANT_DAMAGE
    • STRONG_HARMING

      public static final PotionType STRONG_HARMING
    • POISON

      public static final PotionType POISON
    • LONG_POISON

      public static final PotionType LONG_POISON
    • STRONG_POISON

      public static final PotionType STRONG_POISON
    • REGEN

      public static final PotionType REGEN
    • LONG_REGENERATION

      public static final PotionType LONG_REGENERATION
    • STRONG_REGENERATION

      public static final PotionType STRONG_REGENERATION
    • STRENGTH

      public static final PotionType STRENGTH
    • LONG_STRENGTH

      public static final PotionType LONG_STRENGTH
    • STRONG_STRENGTH

      public static final PotionType STRONG_STRENGTH
    • WEAKNESS

      public static final PotionType WEAKNESS
    • LONG_WEAKNESS

      public static final PotionType LONG_WEAKNESS
    • LUCK

      public static final PotionType LUCK
    • TURTLE_MASTER

      public static final PotionType TURTLE_MASTER
    • LONG_TURTLE_MASTER

      public static final PotionType LONG_TURTLE_MASTER
    • STRONG_TURTLE_MASTER

      public static final PotionType STRONG_TURTLE_MASTER
    • SLOW_FALLING

      public static final PotionType SLOW_FALLING
    • LONG_SLOW_FALLING

      public static final PotionType LONG_SLOW_FALLING
  • 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 public PotionEffectType getEffectType()
      Deprecated.
      Potions can have multiple effects use getPotionEffects()
      Returns:
      the potion effect type of this potion type
    • getPotionEffects

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

      @Deprecated 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 @Nullable public static PotionType getByEffect(@Nullable PotionEffectType effectType)
      Deprecated.
      Misleading
      Parameters:
      effectType - the effect to get by
      Returns:
      the matching potion type
    • getKey

      @NotNull public 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