public enum WorldAssemblyStatus extends Enum<WorldAssemblyStatus>
| Modifier and Type | Class and Description |
|---|---|
static class |
WorldAssemblyStatus.Adapter
Converts a string to a WorldAssemblyStatus, and vice versa.
|
| Enum Constant and Description |
|---|
DELEGATE |
MEMBER |
NON_MEMBER |
| Modifier and Type | Method and Description |
|---|---|
static WorldAssemblyStatus |
fromString(String underlying)
Returns the WorldAssemblyStatus with the supplied underlying string.
|
String |
toString()
Return the underlying string.
|
static WorldAssemblyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorldAssemblyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorldAssemblyStatus NON_MEMBER
public static final WorldAssemblyStatus MEMBER
public static final WorldAssemblyStatus DELEGATE
public static WorldAssemblyStatus[] values()
for (WorldAssemblyStatus c : WorldAssemblyStatus.values()) System.out.println(c);
public static WorldAssemblyStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static WorldAssemblyStatus fromString(String underlying)
underlying - string to find the WorldAssemblyStatus ofpublic String toString()
toString in class Enum<WorldAssemblyStatus>Copyright © 2017. All rights reserved.