public enum ENodeStatus extends Enum<ENodeStatus>
Enum Constant and Description |
---|
nsDetached |
nsFlattened |
nsNormal |
nsPartitial |
nsRemoved |
Modifier and Type | Method and Description |
---|---|
static ENodeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ENodeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ENodeStatus nsNormal
public static final ENodeStatus nsDetached
public static final ENodeStatus nsFlattened
public static final ENodeStatus nsPartitial
public static final ENodeStatus nsRemoved
public static ENodeStatus[] values()
for (ENodeStatus c : ENodeStatus.values()) System.out.println(c);
public static ENodeStatus 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 null