org.android.activityminer.pmml.model.transformation
Class DerivedField

Package class diagram package DerivedField
java.lang.Object
  extended by org.android.activityminer.pmml.model.NamedTypeWithDisplayName
      extended by org.android.activityminer.pmml.model.transformation.DerivedField

public class DerivedField
extends NamedTypeWithDisplayName

The derived field representation (without extensions)


Field Summary
private  DataType dataType
          The dataType of an DerivedField element specifies the default column type.
private  Expression expression
          The expression
private  OpTypes optype
          The opType is used to indicate admissible operations on the values.
private  List<Value> values
          The values
 
Constructor Summary
DerivedField()
           
 
Method Summary
 DataType getDataType()
          Getter for the dataType
 String getDataTypeValue()
          Getter for the dataType string value
 Expression getExpression()
          Getter for the expression
 OpTypes getOptype()
          Getter for the optype
 List<Value> getValues()
          Getter for the associated values
 void setDataType(DataType dataType)
          Setter for the dataType
 void setDataTypeValue(String dataType)
          Setter for the dataType string value
 void setExpression(Expression expression)
          Setter for the expression
 void setOptype(OpTypes optype)
          Setter for the optype
 void setValues(List<Value> values)
          Setter for the values
 
Methods inherited from class org.android.activityminer.pmml.model.NamedTypeWithDisplayName
getDisplayName, getName, setDisplayName, setName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

optype

private OpTypes optype
The opType is used to indicate admissible operations on the values.


dataType

private DataType dataType
The dataType of an DerivedField element specifies the default column type.


expression

private Expression expression
The expression


values

private List<Value> values
The values

Constructor Detail

DerivedField

public DerivedField()
Method Detail

setValues

public void setValues(List<Value> values)
Setter for the values

Parameters:
values - the values to set

getValues

public List<Value> getValues()
Getter for the associated values

Returns:
the values

setOptype

public void setOptype(OpTypes optype)
Setter for the optype

Parameters:
optype - the optype to set

getOptype

public OpTypes getOptype()
Getter for the optype

Returns:
the optype

setDataTypeValue

public void setDataTypeValue(String dataType)
Setter for the dataType string value

Parameters:
dataType - the dataType to set

getDataTypeValue

public String getDataTypeValue()
Getter for the dataType string value

Returns:
the dataType

setDataType

public void setDataType(DataType dataType)
Setter for the dataType

Parameters:
dataType - the dataType to set

getDataType

public DataType getDataType()
Getter for the dataType

Returns:
the dataType

getExpression

public Expression getExpression()
Getter for the expression

Returns:
the expression

setExpression

public void setExpression(Expression expression)
Setter for the expression

Parameters:
expression - the expression to set