public static enum QuotaService.DataType extends java.lang.Enum<QuotaService.DataType>
Enum Constant and Description |
---|
API_TIME_IN_MEGACYCLES |
CPU_TIME_IN_MEGACYCLES |
Modifier and Type | Method and Description |
---|---|
static QuotaService.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QuotaService.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuotaService.DataType API_TIME_IN_MEGACYCLES
public static final QuotaService.DataType CPU_TIME_IN_MEGACYCLES
public static QuotaService.DataType[] values()
for (QuotaService.DataType c : QuotaService.DataType.values()) System.out.println(c);
public static QuotaService.DataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null