public enum ResolutionState extends Enum<ResolutionState>
Enum Constant and Description |
---|
ANY
Any resolution state.
|
IN_PROGRESS
In-progress state.
|
NULL
Null resolution state.
|
OPEN
Open resolution state (any real state other than RESOLVED).
|
RESOLVED
Resolved state.
|
UNRESOLVED
Unresolved state.
|
Modifier and Type | Method and Description |
---|---|
static ResolutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionState ANY
public static final ResolutionState OPEN
public static final ResolutionState NULL
public static final ResolutionState UNRESOLVED
public static final ResolutionState RESOLVED
public static final ResolutionState IN_PROGRESS
public static ResolutionState[] values()
for (ResolutionState c : ResolutionState.values()) System.out.println(c);
public static ResolutionState 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 © 2013-2015 JBoss by Red Hat. All Rights Reserved.