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

Field Summary
static ImportExportFormat CWM1_0
           
static ImportExportFormat CWM1_1
           
static ImportExportFormat JDM1_0
           
static ImportExportFormat PMML1_0
           
static ImportExportFormat PMML2_0
           
static ImportExportFormat PMML2_1
           
static ImportExportFormat PMML3_0
           
static ImportExportFormat systemDefault
           
 
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 javax.datamining.Enum
compareTo, equals, name
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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
Method Detail

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[]