public enum Passthrough extends java.lang.Enum<Passthrough>
| 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 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Passthrough[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Passthrough ALL
public static final Passthrough CONDITIONAL
public static final Passthrough COUNT
public static Passthrough[] values()
for (Passthrough c : Passthrough.values()) System.out.println(c);
public static Passthrough 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