public static enum HomogeneousKernelMap.KernelType extends Enum<HomogeneousKernelMap.KernelType>
HomogeneousKernelMap
Enum Constant and Description |
---|
Chi2
Chi^2 kernel
|
Intersection
Intersection kernel
|
JensonShannon
Jenson-Shannon Kernel
|
Modifier and Type | Method and Description |
---|---|
protected abstract double |
getSpectrum(double omega) |
static HomogeneousKernelMap.KernelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HomogeneousKernelMap.KernelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HomogeneousKernelMap.KernelType Intersection
public static final HomogeneousKernelMap.KernelType Chi2
public static final HomogeneousKernelMap.KernelType JensonShannon
public static HomogeneousKernelMap.KernelType[] values()
for (HomogeneousKernelMap.KernelType c : HomogeneousKernelMap.KernelType.values()) System.out.println(c);
public static HomogeneousKernelMap.KernelType 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 nullprotected abstract double getSpectrum(double omega)