public enum StageStatus extends Enum<StageStatus>
| Enum Constant and Description |
|---|
BOTH
Use for staging pairs; do export.
|
EXTERNAL
Don't use for staging pairs; do export.
|
INTERNAL
Only use for staging pairs; don't export.
|
| 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 INTERNAL
public static final StageStatus EXTERNAL
public static final StageStatus BOTH
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 © 2020. All rights reserved.