Enum Class EatType

java.lang.Object
java.lang.Enum<EatType>
zombie.scripting.objects.EatType
All Implemented Interfaces:
Serializable, Comparable<EatType>, Constable

public enum EatType extends Enum<EatType>
  • Enum Constant Details

    • BLEACH_BOTTLE

      public static final EatType BLEACH_BOTTLE
    • BOTTLE

      public static final EatType BOTTLE
    • BOURBON

      public static final EatType BOURBON
    • BUCKET

      public static final EatType BUCKET
    • CANDRINK

      public static final EatType CANDRINK
    • CIGARETTES

      public static final EatType CIGARETTES
    • EAT_BOX

      public static final EatType EAT_BOX
    • EAT_OFF_STICK

      public static final EatType EAT_OFF_STICK
    • EAT_SMALL

      public static final EatType EAT_SMALL
    • GLUG_FOOD

      public static final EatType GLUG_FOOD
    • BOWL_TWO_HANDS

      public static final EatType BOWL_TWO_HANDS
    • FORCED_TWO_HANDS

      public static final EatType FORCED_TWO_HANDS
    • PIPE

      public static final EatType PIPE
    • PIZZA

      public static final EatType PIZZA
    • PLATE

      public static final EatType PLATE
    • POPCAN

      public static final EatType POPCAN
    • POT

      public static final EatType POT
    • SNIFF

      public static final EatType SNIFF
    • TEACUP

      public static final EatType TEACUP
  • Method Details

    • values

      public static EatType[] 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 EatType 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EatType>