public enum StageStatus extends Enum<StageStatus>
Enum Constant and Description |
---|
Active |
Available |
Canceled |
Completed |
Modifier and Type | Method and Description |
---|---|
static StageStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageStatus Available
public static final StageStatus Active
public static final StageStatus Completed
public static final StageStatus Canceled
public static StageStatus[] values()
for (StageStatus c : StageStatus.values()) System.out.println(c);
public static StageStatus 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 © 2001–2019 JBoss by Red Hat. All rights reserved.