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