public static enum StageInfo.StageType extends Enum<StageInfo.StageType>
| Modifier and Type | Method and Description |
|---|---|
static StageInfo.StageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StageInfo.StageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StageInfo.StageType S3
public static final StageInfo.StageType AZURE
public static final StageInfo.StageType LOCAL_FS
public static final StageInfo.StageType GCS
public static StageInfo.StageType[] values()
for (StageInfo.StageType c : StageInfo.StageType.values()) System.out.println(c);
public static StageInfo.StageType 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 © 2022. All rights reserved.