Class RackLocation

java.lang.Object
com.genologics.ri.step.RackLocation
All Implemented Interfaces:
Serializable

public class RackLocation extends Object implements Serializable
Provides the row and column location within a Tube Rack.
Since:
2.34
See Also:
  • Field Details

    • rackIndex

      protected Integer rackIndex
      The index of the rack.
    • rackRow

      protected Integer rackRow
      The row position within the rack.
    • rackColumn

      protected Integer rackColumn
      The column position within the rack.
  • Constructor Details

    • RackLocation

      public RackLocation()
      Constructs a new empty RackLocation.
  • Method Details

    • getRackIndex

      public Integer getRackIndex()
      Gets the index of the rack.
      Returns:
      the rack index.
    • setRackIndex

      public void setRackIndex(Integer rackIndex)
      Sets the index of the rack.
      Parameters:
      rackIndex - the rack index.
    • getRackRow

      public Integer getRackRow()
      Gets the row position within the rack.
      Returns:
      the rack row.
    • setRackRow

      public void setRackRow(Integer rackRow)
      Sets the row position within the rack.
      Parameters:
      rackRow - the rack row.
    • getRackColumn

      public Integer getRackColumn()
      Gets the column position within the rack.
      Returns:
      the rack column.
    • setRackColumn

      public void setRackColumn(Integer rackColumn)
      Sets the column position within the rack.
      Parameters:
      rackColumn - the rack column.