public static enum SVMRegressionType.SVMMode extends Enum<SVMRegressionType.SVMMode>
Enum Constant and Description |
---|
EPSILON_SVR
epsilon-insensitive SVR.
|
NU_SVR
optimization in dual space.
|
Modifier and Type | Method and Description |
---|---|
static SVMRegressionType.SVMMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVMRegressionType.SVMMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVMRegressionType.SVMMode EPSILON_SVR
public static final SVMRegressionType.SVMMode NU_SVR
public static SVMRegressionType.SVMMode[] values()
for (SVMRegressionType.SVMMode c : SVMRegressionType.SVMMode.values()) System.out.println(c);
public static SVMRegressionType.SVMMode 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 © 2015–2021 Oracle and/or its affiliates. All rights reserved.