public static enum RuntimeResult.ConsumptionState extends Enum<RuntimeResult.ConsumptionState>
| Enum Constant and Description |
|---|
EXHAUSTED |
HAS_MORE |
NOT_STARTED |
| Modifier and Type | Method and Description |
|---|---|
static RuntimeResult.ConsumptionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeResult.ConsumptionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeResult.ConsumptionState NOT_STARTED
public static final RuntimeResult.ConsumptionState HAS_MORE
public static final RuntimeResult.ConsumptionState EXHAUSTED
public static RuntimeResult.ConsumptionState[] values()
for (RuntimeResult.ConsumptionState c : RuntimeResult.ConsumptionState.values()) System.out.println(c);
public static RuntimeResult.ConsumptionState 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 © 2016–2021 MWARE SOLUTIONS. All rights reserved.