public enum StandardUnivariateKernels extends Enum<StandardUnivariateKernels> implements UnivariateKernel
Enum Constant and Description |
---|
Flat
Flat window
|
Gaussian
Univariate Gaussian kernel
|
Modifier and Type | Method and Description |
---|---|
static StandardUnivariateKernels |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardUnivariateKernels[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
evaluate, getCutOff, sample
public static final StandardUnivariateKernels Gaussian
public static final StandardUnivariateKernels Flat
public static StandardUnivariateKernels[] values()
for (StandardUnivariateKernels c : StandardUnivariateKernels.values()) System.out.println(c);
public static StandardUnivariateKernels 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 null