public enum MaskState extends java.lang.Enum<MaskState>
Essentially: Active = apply mask to activations and errors.
Passthrough = feed forward the input mask (if/when necessary) but don't actually apply it.
| Enum Constant and Description |
|---|
Active |
Passthrough |
| Modifier and Type | Method and Description |
|---|---|
static MaskState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaskState Active
public static final MaskState Passthrough
public static MaskState[] values()
for (MaskState c : MaskState.values()) System.out.println(c);
public static MaskState 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