public static enum Space.SpaceType extends java.lang.Enum<Space.SpaceType>
Enum Constant and Description |
---|
DIRECT
1-to-1 space between two people
|
GROUP
Group space among multiple people
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
serializedName()
Return serialized name
|
static Space.SpaceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Space.SpaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Space.SpaceType GROUP
public static final Space.SpaceType DIRECT
public static Space.SpaceType[] values()
for (Space.SpaceType c : Space.SpaceType.values()) System.out.println(c);
public static Space.SpaceType 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 nullpublic java.lang.String serializedName()