Package de.tilman_neumann.jml.base
Class BigIntGrid
java.lang.Object
de.tilman_neumann.jml.base.NumberGrid<java.math.BigInteger>
de.tilman_neumann.jml.base.BigIntGrid
- All Implemented Interfaces:
java.io.Serializable
public class BigIntGrid extends NumberGrid<java.math.BigInteger>
A two-dimensional grid of big integers.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description BigIntGrid(java.lang.String xLabel, int xStart, int xIncrement, java.lang.String yLabel, int yStart, int yIncrement)
Full constructor with all options.BigIntGrid(java.lang.String xLabel, int xStart, java.lang.String yLabel, int yStart)
Simplified constructor with offsets 1. -
Method Summary
Methods inherited from class de.tilman_neumann.jml.base.NumberGrid
add, getNumberOfColumns, getRows, toList, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
BigIntGrid
public BigIntGrid(java.lang.String xLabel, int xStart, java.lang.String yLabel, int yStart)Simplified constructor with offsets 1.- Parameters:
xLabel
- The letter to use for the x-axisxStart
- The start value for the x-axis-valuesyLabel
- The letter to use for the y-axisyStart
- The start value for the y-axis-values
-
BigIntGrid
public BigIntGrid(java.lang.String xLabel, int xStart, int xIncrement, java.lang.String yLabel, int yStart, int yIncrement)Full constructor with all options.- Parameters:
xLabel
- The letter to use for the x-axisxStart
- The start value for the x-axis-valuesxIncrement
- The increment for the x-axis-valuesyLabel
- The letter to use for the y-axisyStart
- The start value for the y-axis-valuesyIncrement
- The increment for the y-axis-values
-