@Generated public enum Stage extends Enum<Stage>
* `None`: The initial stage of a model version.
* `Staging`: Staging or pre-production stage.
* `Production`: Production stage.
* `Archived`: Archived stage.
| Enum Constant and Description |
|---|
ARCHIVED |
NONE |
PRODUCTION |
STAGING |
| Modifier and Type | Method and Description |
|---|---|
static Stage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stage ARCHIVED
public static final Stage NONE
public static final Stage PRODUCTION
public static final Stage STAGING
public static Stage[] values()
for (Stage c : Stage.values()) System.out.println(c);
public static Stage 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 © 2024. All rights reserved.