public static enum FIRFilter.FilterType extends Enum<FIRFilter.FilterType>
| Enum Constant and Description |
|---|
CAUSAL
Causal and non-linear filter
|
LINEAR
Linear, non-causal and centered filter
|
| Modifier and Type | Method and Description |
|---|---|
static FIRFilter.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FIRFilter.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FIRFilter.FilterType CAUSAL
public static final FIRFilter.FilterType LINEAR
public static FIRFilter.FilterType[] values()
for (FIRFilter.FilterType c : FIRFilter.FilterType.values()) System.out.println(c);
public static FIRFilter.FilterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 CNES. All rights reserved.