public enum LABEL_STATE extends Enum<LABEL_STATE>
Enum Constant and Description |
---|
LABEL_STATE_BOUND
Label is bound
|
LABEL_STATE_LINKED
Label is linked (waiting to be bound)
|
LABEL_STATE_UNUSED
Label is unused.
|
Modifier and Type | Method and Description |
---|---|
static LABEL_STATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LABEL_STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LABEL_STATE LABEL_STATE_UNUSED
public static final LABEL_STATE LABEL_STATE_LINKED
public static final LABEL_STATE LABEL_STATE_BOUND
public static LABEL_STATE[] values()
for (LABEL_STATE c : LABEL_STATE.values()) System.out.println(c);
public static LABEL_STATE 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 nullCopyright © 2017. All rights reserved.