Class PlateWellMaterialMapping
- java.lang.Object
-
- ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.PlateWellMaterialMapping
-
- All Implemented Interfaces:
java.io.Serializable
@JsonObject("PlateWellMaterialMapping") public class PlateWellMaterialMapping extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PlateWellMaterialMapping(PlateIdentifier plateIdentifier, Geometry plateGeometry, int defaultSize)
PlateWellMaterialMapping(PlateIdentifier plateIdentifier, Geometry plateGeometry, java.util.List<MaterialIdentifier>[] mapping)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<MaterialIdentifier>
getMaterialsForWell(int row, int col)
Returns the list of materials present in well (row,col).Geometry
getPlateGeometry()
Returns the plate geometry of the plate that this mapping is for.PlateIdentifier
getPlateIdentifier()
Returns the plate identifier that this plate is for.
-
-
-
Constructor Detail
-
PlateWellMaterialMapping
public PlateWellMaterialMapping(PlateIdentifier plateIdentifier, Geometry plateGeometry, java.util.List<MaterialIdentifier>[] mapping)
-
PlateWellMaterialMapping
public PlateWellMaterialMapping(PlateIdentifier plateIdentifier, Geometry plateGeometry, int defaultSize)
-
-
Method Detail
-
getPlateIdentifier
public PlateIdentifier getPlateIdentifier()
Returns the plate identifier that this plate is for.
-
getPlateGeometry
public Geometry getPlateGeometry()
Returns the plate geometry of the plate that this mapping is for.
-
getMaterialsForWell
public java.util.List<MaterialIdentifier> getMaterialsForWell(int row, int col)
Returns the list of materials present in well (row,col).- Parameters:
row
- The row of the well to get the materials forcol
- The column of the well to get the materials for- Returns:
- The list of materials in the specified well.
-
-