public static enum Passthrough.Mode extends java.lang.Enum<Passthrough.Mode>
| Enum Constant and Description |
|---|
ALL
Allow all data through
|
CONDITIONAL
Only allow data through if value > 0
|
COUNT
Only allow a fixed number of data samples through
|
| Modifier and Type | Method and Description |
|---|---|
static Passthrough.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Passthrough.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Passthrough.Mode ALL
public static final Passthrough.Mode CONDITIONAL
public static final Passthrough.Mode COUNT
public static Passthrough.Mode[] values()
for (Passthrough.Mode c : Passthrough.Mode.values()) System.out.println(c);
public static Passthrough.Mode 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