net.charlesames.utility.html
Class DiscreteGraphBuilder.Column

java.lang.Object
  extended by net.charlesames.utility.html.DiscreteGraphBuilder.Column
Enclosing class:
DiscreteGraphBuilder

public class DiscreteGraphBuilder.Column
extends java.lang.Object

Author:
Charles Ames Column

Constructor Summary
DiscreteGraphBuilder.Column()
          Constructor for Column instances.
 
Method Summary
 void addValue(int value)
          Add a value to the list of values which occur
 int getMaxValue()
           
 int getMinValue()
           
 java.util.SortedSet<java.lang.Integer> getValues()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DiscreteGraphBuilder.Column

public DiscreteGraphBuilder.Column()
Constructor for Column instances.

Method Detail

addValue

public void addValue(int value)
Add a value to the list of values which occur

Parameters:
value -

getValues

public java.util.SortedSet<java.lang.Integer> getValues()
Returns:
A sorted list of values.

getMinValue

public int getMinValue()
Returns:
The smallest value that occurs in this column.

getMaxValue

public int getMaxValue()
Returns:
The largest value that occurs in this column.