public static enum SVMModel.KernelType extends Enum<SVMModel.KernelType>
| Modifier and Type | Method and Description |
|---|---|
static SVMModel.KernelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVMModel.KernelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVMModel.KernelType LINEAR
public static final SVMModel.KernelType POLY
public static final SVMModel.KernelType RBF
public static final SVMModel.KernelType SIGMOID
public static SVMModel.KernelType[] values()
for (SVMModel.KernelType c : SVMModel.KernelType.values()) System.out.println(c);
public static SVMModel.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 nullCopyright © 2018. All rights reserved.