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-axis
      xStart - The start value for the x-axis-values
      yLabel - The letter to use for the y-axis
      yStart - 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-axis
      xStart - The start value for the x-axis-values
      xIncrement - The increment for the x-axis-values
      yLabel - The letter to use for the y-axis
      yStart - The start value for the y-axis-values
      yIncrement - The increment for the y-axis-values