|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EquipAs.Values>
org.starhope.appius.game.intangible.EquipAs.Values
public static enum EquipAs.Values
This is the real, nested enum. We basically "fake it" by implementing the Enum view wrapped around this to provide some enhanced functionality.
Enum Constant Summary | |
---|---|
BACK
Backpack or similar |
|
CEILING
the ceiling of a decorated room |
|
EARS
ear coverings, earrings, earmuffs, &c. |
|
EYES
eyewear, eyeglasses, &c. |
|
FLOOR
the floor of a decorated room |
|
FOLLOW
something that follows around the player like a puppy |
|
GLOVES
gloves or similar |
|
HAT
hat, helmet, head covering |
|
INVENTORY
Not equipped. |
|
INVIS
invisibly equips. |
|
NECK
Neckwear, e.g. |
|
ONE_HAND
one-handed carry item, e.g. |
|
ORBITAL
thing orbiting around the character, primarily Orbitz for Tootsville |
|
OVERHEAD
thing hovering over one's head: primarily Pivitz for Tootsville |
|
PANTS
Pants |
|
SHIRT
Shirt |
|
SHOES
shoes, footwear, &c |
|
SUIT
full-body suit, this is also where we'll stick tattoos and Toots Patterns |
|
TAIL
something that decorates a character's tail (for e.g. |
|
TWO_HAND
two-handed carry item, e.g. |
|
WALL
the wall of a decorated room |
Method Summary | |
---|---|
static EquipAs.Values |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EquipAs.Values[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EquipAs.Values BACK
public static final EquipAs.Values CEILING
public static final EquipAs.Values EARS
public static final EquipAs.Values EYES
public static final EquipAs.Values FLOOR
public static final EquipAs.Values FOLLOW
public static final EquipAs.Values GLOVES
public static final EquipAs.Values HAT
public static final EquipAs.Values INVENTORY
public static final EquipAs.Values INVIS
public static final EquipAs.Values NECK
public static final EquipAs.Values ONE_HAND
public static final EquipAs.Values ORBITAL
public static final EquipAs.Values OVERHEAD
public static final EquipAs.Values PANTS
public static final EquipAs.Values SHIRT
public static final EquipAs.Values SHOES
public static final EquipAs.Values SUIT
public static final EquipAs.Values TAIL
public static final EquipAs.Values TWO_HAND
public static final EquipAs.Values WALL
Method Detail |
---|
public static EquipAs.Values[] values()
for (EquipAs.Values c : EquipAs.Values.values()) System.out.println(c);
public static EquipAs.Values valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |