Inheritance diagram for kddml.Core.DataMining.DataField:
Public Member Functions | |
DataField (String name) | |
DataField (String name, byte type) | |
void | addEnumeratedValue (String value) throws MiningModelException |
String[] | getEnumeratedValues () |
boolean | equals (DataFieldManager data_field) |
void | setDisplayedName (String display_name) |
void | setType (byte type) |
String | getName () |
String | getDisplayedName () |
byte | getType () |
String | toString () |
String | getStringType () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor give the field name. It constructs an ordinal attribute.
|
|
Constructor given the field name and the type.
|
|
Adds a new category to a discrete field. Throws an exception if the field is not discrete.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Returns enumerated values for a nominal attribute as array of strings. Return an empty array if the attribute is not discrete.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Compares two data fields. Returns true two data fields are equal.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Sets the displayed name of the field.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Sets the type of the field.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Returns the name of the data field.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Return the displayed name of the field.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Return the type of the field. Can be categorical, ordinal, continuous. Categorical fields have the operator "=", ordinal fields have an additional "<", and continuous fields also have arithmetic operators.
Implements kddml.Core.DataMining.DataFieldManager. |
|
Returns a representation of this object as string.
|
|
Returns a string representation of the type.
Implements kddml.Core.DataMining.DataFieldManager. |