| Enum Constant and Description |
|---|
SAMPLED_NO |
SAMPLED_YES |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
boolean |
booleanValue() |
static Sampled |
parse(java.lang.Object value)
Turns a value into a Sampled enum.
|
static Sampled |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sampled[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sampled SAMPLED_YES
public static final Sampled SAMPLED_NO
public static final Sampled UNKNOWN
public static Sampled[] values()
for (Sampled c : Sampled.values()) System.out.println(c);
public static Sampled 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 nullpublic static Sampled parse(java.lang.Object value)
public boolean booleanValue()