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