Method Summary |
|
public void | addValue(Number value, Comparable chipx, Comparable chipy) Sets a value in the dataset. |
public void | addValue(int v, int x, int y) Adds a value to the dataset. |
public double | getChipSpace() Returns the space to draw between chips. |
public Number | getChipValue(int chipx, int chipy) Returns the data value for a chip.
Parameters: chipx - the x-index. Parameters: chipy - the y-index. |
public Number | getChipValue(Comparable chipx, Comparable chipy) Returns the value for a given chip x and y or null.
Parameters: chipx - the x-index. Parameters: chipy - the y-index. |
public int | getMaxChipX() Returns the wafer x-dimension. |
public int | getMaxChipY() Returns the number of chips in the y-dimension. |
public Number | getMaxValue() Returns the maximum value stored in the dataset. |
public Number | getMinValue() Returns the minimum value stored in the dataset. |
public int | getUniqueValueCount() Returns the number of unique values. |
public Set | getUniqueValues() Returns the set of unique values. |
public boolean | isMaxValue(Number check) Tests to see if the passed value is larger than the stored maxvalue.
Parameters: check - the number to check. |
public boolean | isMinValue(Number check) Tests to see if the passed value is smaller than the stored minvalue.
Parameters: check - the number to check. |
public void | setChipSpace(double space) Sets the space to draw between chips. |
public void | setMaxChipX(int maxChipX) Sets wafer x dimension. |
public void | setMaxChipY(int maxChipY) Sets the number of chips in the y-dimension. |
public void | setValue(Number value, Comparable chipx, Comparable chipy) Sets a value in the dataset and updates min and max value entries. |