public static enum RealArray.Filter extends Enum<RealArray.Filter>
| Enum Constant and Description |
|---|
GAUSSIAN |
GAUSSIAN_FIRST_DERIVATIVE |
GAUSSIAN_SECOND_DERIVATIVE |
| Modifier and Type | Method and Description |
|---|---|
static RealArray.Filter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealArray.Filter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealArray.Filter GAUSSIAN
public static final RealArray.Filter GAUSSIAN_FIRST_DERIVATIVE
public static final RealArray.Filter GAUSSIAN_SECOND_DERIVATIVE
public String string
public static RealArray.Filter[] values()
for (RealArray.Filter c : RealArray.Filter.values()) System.out.println(c);
public static RealArray.Filter 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 © 1994–2024 Peter Murray-Rust. All rights reserved.