public static enum Clothes.Type extends java.lang.Enum<Clothes.Type>
Enum Constant and Description |
---|
Face
E.g. glasses, masks, goggles etc
|
Feet
Footwear, e.g. shoes
|
Head
Headgear, e.g. helmet, hats, cappys etc
|
Legs
Bottom, e.g. pants, shorts etc
|
Top
Top, e.g. shirt, jacket etc
|
Modifier and Type | Method and Description |
---|---|
static Clothes.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Clothes.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Clothes.Type Head
public static final Clothes.Type Face
public static final Clothes.Type Top
public static final Clothes.Type Legs
public static final Clothes.Type Feet
public static Clothes.Type[] values()
for (Clothes.Type c : Clothes.Type.values()) System.out.println(c);
public static Clothes.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null