public enum SvmType extends Enum<SvmType>
Enum Constant and Description |
---|
C_SVM |
EpsilonSVRegression |
NU_SVM |
NuSVRegression |
OneClassSVM |
Modifier and Type | Method and Description |
---|---|
static SvmType |
getByName(String name) |
String |
toString() |
static SvmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SvmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvmType C_SVM
public static final SvmType NU_SVM
public static final SvmType OneClassSVM
public static final SvmType EpsilonSVRegression
public static final SvmType NuSVRegression
public static SvmType[] values()
for (SvmType c : SvmType.values()) System.out.println(c);
public static SvmType 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 © 2013–2019 Ubiquitous Knowledge Processing (UKP) Lab. All rights reserved.