Enum Class FoodType

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

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

    • BACON

      public static final FoodType BACON
    • BEAN

      public static final FoodType BEAN
    • BEEF

      public static final FoodType BEEF
    • BERRY

      public static final FoodType BERRY
    • BREAD

      public static final FoodType BREAD
    • CANDY

      public static final FoodType CANDY
    • CAT_FOOD

      public static final FoodType CAT_FOOD
    • CHEESE

      public static final FoodType CHEESE
    • CHOCOLATE

      public static final FoodType CHOCOLATE
    • CITRUS

      public static final FoodType CITRUS
    • COCOA

      public static final FoodType COCOA
    • COFFEE

      public static final FoodType COFFEE
    • DOG_FOOD

      public static final FoodType DOG_FOOD
    • DRESSING

      public static final FoodType DRESSING
    • EGG

      public static final FoodType EGG
    • FISH

      public static final FoodType FISH
    • FRUITS

      public static final FoodType FRUITS
    • GAME

      public static final FoodType GAME
    • GREENS

      public static final FoodType GREENS
    • HERB

      public static final FoodType HERB
    • HOT_PEPPER

      public static final FoodType HOT_PEPPER
    • INSECT

      public static final FoodType INSECT
    • JUICE

      public static final FoodType JUICE
    • MEAT

      public static final FoodType MEAT
    • MILK

      public static final FoodType MILK
    • MUSHROOM

      public static final FoodType MUSHROOM
    • NO_EXPLICIT

      public static final FoodType NO_EXPLICIT
    • NUT

      public static final FoodType NUT
    • OIL

      public static final FoodType OIL
    • PASTA

      public static final FoodType PASTA
    • POULTRY

      public static final FoodType POULTRY
    • RICE

      public static final FoodType RICE
    • ROE

      public static final FoodType ROE
    • SAUSAGE

      public static final FoodType SAUSAGE
    • SEAFOOD

      public static final FoodType SEAFOOD
    • SEED

      public static final FoodType SEED
    • STOCK

      public static final FoodType STOCK
    • SUGAR

      public static final FoodType SUGAR
    • TEA

      public static final FoodType TEA
    • THICKENER

      public static final FoodType THICKENER
    • VEGETABLE

      public static final FoodType VEGETABLE
    • VEGETABLES

      public static final FoodType VEGETABLES
    • VENISON

      public static final FoodType VENISON
  • Method Details

    • values

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