Package de.tilman_neumann.jml.base
Class BigIntGrid
- java.lang.Object
-
- de.tilman_neumann.jml.base.NumberGrid<BigInteger>
-
- de.tilman_neumann.jml.base.BigIntGrid
-
- All Implemented Interfaces:
Serializable
public class BigIntGrid extends NumberGrid<BigInteger>
A two-dimensional grid of big integers.- Author:
- Tilman Neumann
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BigIntGrid(String xLabel, int xStart, int xIncrement, String yLabel, int yStart, int yIncrement)
Full constructor with all options.BigIntGrid(String xLabel, int xStart, String yLabel, int yStart)
Simplified constructor with offsets 1.
-
-
-
Constructor Detail
-
BigIntGrid
public BigIntGrid(String xLabel, int xStart, 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(String xLabel, int xStart, int xIncrement, 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
-
-