Enum Class Clothing.Type

java.lang.Object
java.lang.Enum<Clothing.Type>
net.risingworld.api.definitions.Clothing.Type
All Implemented Interfaces:
Serializable, Comparable<Clothing.Type>, Constable
Enclosing class:
Clothing

public static enum Clothing.Type extends Enum<Clothing.Type>
  • Enum Constant Details

    • Face

      public static final Clothing.Type Face
      Glasses, masks, goggles etc
    • Top

      public static final Clothing.Type Top
      Top, e.g shirt, jacket etc
    • Legs

      public static final Clothing.Type Legs
      Bottom, e.g pants, shorts etc
    • Feet

      public static final Clothing.Type Feet
      Footwear, e.g shoes
  • Field Details

    • value

      public final int value
  • Method Details

    • values

      public static Clothing.Type[] 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 Clothing.Type 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
    • get

      public static Clothing.Type get(int value)