java.io.Serializable, java.lang.Comparable<ResolverInfo.State>public static enum ResolverInfo.State extends java.lang.Enum<ResolverInfo.State>
| Enum Constant | Description |
|---|---|
Missing |
|
Pending |
|
Resolveable |
|
Unresolveable |
| Modifier and Type | Method | Description |
|---|---|---|
static ResolverInfo.State |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ResolverInfo.State[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolverInfo.State Pending
public static final ResolverInfo.State Missing
public static final ResolverInfo.State Unresolveable
public static final ResolverInfo.State Resolveable
public static ResolverInfo.State[] values()
for (ResolverInfo.State c : ResolverInfo.State.values()) System.out.println(c);
public static ResolverInfo.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