static enum Linkage.State extends java.lang.Enum<Linkage.State>
| Modifier and Type | Method and Description |
|---|---|
static Linkage.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Linkage.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Linkage.State NEW
public static final Linkage.State UNLINKED
public static final Linkage.State LINKING
public static final Linkage.State LINKED
public static Linkage.State[] values()
for (Linkage.State c : Linkage.State.values()) System.out.println(c);
public static Linkage.State 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 null