public enum StageStatus extends Enum<StageStatus>
| Enum Constant and Description |
|---|
ACTIVE |
APPROVED |
CANCELLED |
NEEDS_CHANGES |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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 APPROVED
public static final StageStatus NEEDS_CHANGES
public static final StageStatus ACTIVE
public static final StageStatus CANCELLED
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 nullpublic String toString()
toString in class Enum<StageStatus>Copyright © 2024. All rights reserved.