public static enum RecursiveExponentialFilter.Edges extends java.lang.Enum<RecursiveExponentialFilter.Edges>
The default boundary condition is output-zero-slope.
| Enum Constant and Description |
|---|
INPUT_ZERO_SLOPE
Extrapolate input samples beyond edges with values at the edges.
|
INPUT_ZERO_VALUE
Extrapolate input samples beyond edges with zero values.
|
OUTPUT_ZERO_SLOPE
Constrain output values beyond edges to be constant.
|
OUTPUT_ZERO_VALUE
Constrain output values beyond edges to be zero.
|
| Modifier and Type | Method and Description |
|---|---|
static RecursiveExponentialFilter.Edges |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecursiveExponentialFilter.Edges[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecursiveExponentialFilter.Edges INPUT_ZERO_VALUE
public static final RecursiveExponentialFilter.Edges INPUT_ZERO_SLOPE
public static final RecursiveExponentialFilter.Edges OUTPUT_ZERO_VALUE
public static final RecursiveExponentialFilter.Edges OUTPUT_ZERO_SLOPE
public static RecursiveExponentialFilter.Edges[] values()
for (RecursiveExponentialFilter.Edges c : RecursiveExponentialFilter.Edges.values()) System.out.println(c);
public static RecursiveExponentialFilter.Edges 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