javax.datamining
Class ImportExportFormat
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.ImportExportFormat
- All Implemented Interfaces:
- java.lang.Comparable, java.io.Serializable
- public class ImportExportFormat
- extends Enum
The enumeration ImportExportFormat
represent the format of the object to be imported
or exported.
- 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 ImportExportFormat. |
static ImportExportFormat |
valueOf(java.lang.String name)
Returns an instance of ImportExportFormat corresponding to the specified name. |
static ImportExportFormat[] |
values()
Returns a list of all ImportExportFormat enumerations defined. |
| Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CWM1_0
public static final ImportExportFormat CWM1_0
CWM1_1
public static final ImportExportFormat CWM1_1
JDM1_0
public static final ImportExportFormat JDM1_0
PMML1_0
public static final ImportExportFormat PMML1_0
PMML2_0
public static final ImportExportFormat PMML2_0
PMML2_1
public static final ImportExportFormat PMML2_1
PMML3_0
public static final ImportExportFormat PMML3_0
systemDefault
public static final ImportExportFormat systemDefault
addExtension
public static void addExtension(java.lang.String name)
throws JDMException
- Adds a vendor extension
name to ImportExportFormat.
- 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 ImportExportFormat valueOf(java.lang.String name)
throws JDMException
- Returns an instance of
ImportExportFormat corresponding to the specified name.
- Parameters:
name - The name of the enumeration value
- Returns:
ImportExportFormat - The instance of the specified enumeration.
- Throws:
JDMException - When name is not valid.
values
public static ImportExportFormat[] values()
- Returns a list of all
ImportExportFormat enumerations defined.
- Returns:
ImportExportFormat[]