public static enum Filter.Mode extends java.lang.Enum<Filter.Mode>
Enum Constant and Description |
---|
CIRCULAR
Repeat the data.
|
MIRROR
Mirror values at the last value.
|
OMIT
Ignore missing values.
|
REPEAT
Repeat the last value.
|
ZERO
Treat missing values as zero.
|
Modifier and Type | Method and Description |
---|---|
static Filter.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.Mode OMIT
public static final Filter.Mode ZERO
public static final Filter.Mode REPEAT
public static final Filter.Mode MIRROR
public static final Filter.Mode CIRCULAR
public static Filter.Mode[] values()
for (Filter.Mode c : Filter.Mode.values()) System.out.println(c);
public static Filter.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