|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--javax.datamining.Enum
|
+--javax.datamining.data.AttributeDataType
The enumeration
AttributeRepresentation is
essentially a data type for the attribute. JDM
specifies three data types: integer, double, and
string. Vendors may choose to augment this with
other representations which include: float, date,
and time.
The values defined in JDM are:
| Field Summary | |
static AttributeDataType |
doubleType
|
static AttributeDataType |
integerType
|
static AttributeDataType |
stringType
|
static AttributeDataType |
unknownType
|
| Method Summary | |
static void |
addExtension(java.lang.String name)
Adds a vendor extension name to AttributeDataType. |
static AttributeDataType |
valueOf(java.lang.String name)
Returns an instance of AttributeDataType corresponding to the specified name. |
static AttributeDataType[] |
values()
Returns a list of all AttributeDataType 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 |
public static final AttributeDataType doubleType
public static final AttributeDataType integerType
public static final AttributeDataType stringType
public static final AttributeDataType unknownType
| Method Detail |
public static void addExtension(java.lang.String name)
throws JDMException
name to AttributeDataType.
name - The name of the unique vendor extension
JDMException - When name is an invalid string or redundant to existing standard enums.
public static AttributeDataType valueOf(java.lang.String name)
throws JDMException
AttributeDataType corresponding to the specified name.
name - The name of the enumeration value
AttributeDataType - The instance of the specified enumeration.
JDMException - When name is not valid.public static AttributeDataType[] values()
AttributeDataType enumerations defined.
AttributeDataType[]
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||