public static enum LinearAnomalyType.LinearType extends Enum<LinearAnomalyType.LinearType> implements Serializable
Enum Constant and Description |
---|
ONECLASS_SVM
Linear one-class SVM
|
Modifier and Type | Method and Description |
---|---|
de.bwaldvogel.liblinear.SolverType |
getSolverType()
Gets the type of the solver.
|
static LinearAnomalyType.LinearType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinearAnomalyType.LinearType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinearAnomalyType.LinearType ONECLASS_SVM
public static LinearAnomalyType.LinearType[] values()
for (LinearAnomalyType.LinearType c : LinearAnomalyType.LinearType.values()) System.out.println(c);
public static LinearAnomalyType.LinearType 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 nullpublic de.bwaldvogel.liblinear.SolverType getSolverType()
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.