public static enum FilterBuffer2.Extrapolation extends java.lang.Enum<FilterBuffer2.Extrapolation>
| Enum Constant and Description |
|---|
ZERO_SLOPE
Extrapolate values at the ends with zero slope.
|
ZERO_VALUE
Extrapolate with zero values.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterBuffer2.Extrapolation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterBuffer2.Extrapolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterBuffer2.Extrapolation ZERO_VALUE
public static final FilterBuffer2.Extrapolation ZERO_SLOPE
public static FilterBuffer2.Extrapolation[] values()
for (FilterBuffer2.Extrapolation c : FilterBuffer2.Extrapolation.values()) System.out.println(c);
public static FilterBuffer2.Extrapolation 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