com.penguinwerks.jodene.data
Class Column

java.lang.Object
  extended bycom.penguinwerks.jodene.data.Column
All Implemented Interfaces:
java.io.Serializable

public class Column
extends java.lang.Object
implements java.io.Serializable

Represents a column in the output data set. A column has a name and an optional scaler.

Author:
Paul Hoehne
See Also:
Serialized Form

Constructor Summary
Column()
          The constructor for the comment.
 
Method Summary
 java.lang.String getName()
          This will be the name of the column in the output data set.
 Scaler getScaler()
          This will be the scaler used to scale the value.
 boolean isScaling()
          Identifies the column as performing scaling.
 void setName(java.lang.String name)
          This will be the name of the column in the output data set.
 void setScaler(Scaler scaler)
          This will be the scaler used to scale the value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Column

public Column()
The constructor for the comment.

Method Detail

getName

public java.lang.String getName()
This will be the name of the column in the output data set.

Returns:
Returns the name.

setName

public void setName(java.lang.String name)
This will be the name of the column in the output data set.

Parameters:
name - The name to set.

getScaler

public Scaler getScaler()
This will be the scaler used to scale the value.

Returns:
Returns the scaler.

setScaler

public void setScaler(Scaler scaler)
This will be the scaler used to scale the value.

Parameters:
scaler - The scaler to set.

isScaling

public boolean isScaling()
Identifies the column as performing scaling.

Returns:
True, if the column scales.