javax.datamining
Class OutlierTreatment
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.OutlierTreatment
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class OutlierTreatment
- extends Enum
The enumeration OutlierTreatment
defines how outliers are to be treated during
model build.
- Author:
- JSR-73 Java Data Mining Expert Group
- See Also:
- Serialized Form
|
Method Summary |
static void |
addExtension(java.lang.String name)
Adds a vendor extension name to OutlierTreatment. |
static OutlierTreatment |
valueOf(java.lang.String name)
Returns an instance of OutlierTreatment corresponding to the specified name. |
static OutlierTreatment[] |
values()
Returns a list of all OutlierTreatment enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
asIs
public static final OutlierTreatment asIs
asMissing
public static final OutlierTreatment asMissing
systemDefault
public static final OutlierTreatment systemDefault
systemDetermined
public static final OutlierTreatment systemDetermined
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to OutlierTreatment.
- Parameters:
name - The name of the unique vendor extension
- Throws:
JDMException - When name is an invalid string or redundant to existing standard enums.
valueOf
public static OutlierTreatment valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
OutlierTreatment corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
OutlierTreatment - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static OutlierTreatment[] values()
- Returns a list of all
OutlierTreatment enumerations defined.
- Returns:
OutlierTreatment[]