@Generated public enum OnlineStoreState extends Enum<OnlineStoreState>
| Enum Constant and Description |
|---|
AVAILABLE |
DELETING |
FAILING_OVER |
STARTING |
STOPPED |
UPDATING |
| Modifier and Type | Method and Description |
|---|---|
static OnlineStoreState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnlineStoreState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnlineStoreState AVAILABLE
public static final OnlineStoreState DELETING
public static final OnlineStoreState FAILING_OVER
public static final OnlineStoreState STARTING
public static final OnlineStoreState STOPPED
public static final OnlineStoreState UPDATING
public static OnlineStoreState[] values()
for (OnlineStoreState c : OnlineStoreState.values()) System.out.println(c);
public static OnlineStoreState 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 © 2026. All rights reserved.