public static enum Quota.Status extends Enum<Quota.Status>
Enum Constant and Description |
---|
ABNORMAL |
INITIALIZING |
OFF |
ON |
Modifier and Type | Method and Description |
---|---|
static Quota.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quota.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quota.Status ON
public static final Quota.Status OFF
public static final Quota.Status INITIALIZING
public static final Quota.Status ABNORMAL
public static Quota.Status[] values()
for (Quota.Status c : Quota.Status.values()) System.out.println(c);
public static Quota.Status 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 Alibaba Cloud Computing. All rights reserved.