Class ImageFileInfo
- java.lang.Object
-
- ch.systemsx.cisd.openbis.dss.etl.dto.api.ImageFileInfo
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ImageFileInfo
public class ImageFileInfo extends java.lang.Object implements java.io.Serializable
DTO with information about one image file- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ImageFileInfo(java.lang.String channelCode, int tileRow, int tileColumn, java.lang.String imageRelativePath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getChannelCode()
java.lang.String
getContainerDataSetCode()
java.lang.String
getImageRelativePath()
int
getTileColumn()
int
getTileRow()
boolean
hasWellLocation()
void
setContainerDataSetCode(java.lang.String containerDataSetCode)
void
setDepth(java.lang.Float value)
void
setImageIdentifier(ImageIdentifier imageIdentifier)
void
setSeriesNumber(java.lang.Integer value)
void
setTile(int row, int column)
void
setTimepoint(java.lang.Float value)
void
setUniqueImageIdentifier(java.lang.String uniqueImageIdentifier)
void
setWell(int row, int column)
boolean
setWell(java.lang.String wellText)
java.lang.String
toString()
java.lang.Float
tryGetDepth()
java.lang.Integer
tryGetSeriesNumber()
java.lang.Float
tryGetTimepoint()
java.lang.String
tryGetUniqueStringIdentifier()
java.lang.Integer
tryGetWellColumn()
ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.WellLocation
tryGetWellLocation()
java.lang.Integer
tryGetWellRow()
-
-
-
Method Detail
-
tryGetUniqueStringIdentifier
public java.lang.String tryGetUniqueStringIdentifier()
-
tryGetWellRow
public java.lang.Integer tryGetWellRow()
-
tryGetWellColumn
public java.lang.Integer tryGetWellColumn()
-
tryGetWellLocation
public ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.WellLocation tryGetWellLocation()
-
hasWellLocation
public boolean hasWellLocation()
-
getTileRow
public int getTileRow()
-
getTileColumn
public int getTileColumn()
-
getChannelCode
public java.lang.String getChannelCode()
-
getImageRelativePath
public java.lang.String getImageRelativePath()
-
tryGetTimepoint
public java.lang.Float tryGetTimepoint()
-
tryGetDepth
public java.lang.Float tryGetDepth()
-
tryGetSeriesNumber
public java.lang.Integer tryGetSeriesNumber()
-
setImageIdentifier
public void setImageIdentifier(ImageIdentifier imageIdentifier)
-
setWell
public void setWell(int row, int column)
-
setWell
public boolean setWell(java.lang.String wellText)
- Returns:
- true if well row and column could be parsed
-
setTile
public void setTile(int row, int column)
-
setTimepoint
public void setTimepoint(java.lang.Float value)
-
setDepth
public void setDepth(java.lang.Float value)
-
setSeriesNumber
public void setSeriesNumber(java.lang.Integer value)
-
setUniqueImageIdentifier
public void setUniqueImageIdentifier(java.lang.String uniqueImageIdentifier)
-
getContainerDataSetCode
public java.lang.String getContainerDataSetCode()
-
setContainerDataSetCode
public void setContainerDataSetCode(java.lang.String containerDataSetCode)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-