Package fr.igred.omero.repository
Class ChannelWrapper
- java.lang.Object
-
- fr.igred.omero.GenericObjectWrapper<ChannelData>
-
- fr.igred.omero.repository.ChannelWrapper
-
public class ChannelWrapper extends GenericObjectWrapper<ChannelData>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class fr.igred.omero.GenericObjectWrapper
GenericObjectWrapper.SortById<U extends GenericObjectWrapper<?>>
-
-
Field Summary
-
Fields inherited from class fr.igred.omero.GenericObjectWrapper
data
-
-
Constructor Summary
Constructors Constructor Description ChannelWrapper(ChannelData channel)
Constructor of the class ChannelWrapper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChannelData
asChannelData()
int
getAlpha()
Gets the sRGB alpha value of the channel.int
getBlue()
Gets the sRGB blue value of the channel.String
getChannelLabeling()
Returns the label of the channel.Color
getColor()
Gets the original channel color.int
getGreen()
Gets the sRGB green value of the channel.int
getIndex()
Returns the channel index.String
getName()
Returns the name of the channel.int
getRed()
Gets the sRGB red value of the channel.void
setName(String name)
Sets the name of the channel.-
Methods inherited from class fr.igred.omero.GenericObjectWrapper
getCreated, getGroupId, getId, getOwner, saveAndUpdate, toString
-
-
-
-
Constructor Detail
-
ChannelWrapper
public ChannelWrapper(ChannelData channel)
Constructor of the class ChannelWrapper.- Parameters:
channel
- The ChannelData contained in the ChannelWrapper.
-
-
Method Detail
-
asChannelData
public ChannelData asChannelData()
- Returns:
- ChannelData contained.
-
getIndex
public int getIndex()
Returns the channel index.- Returns:
- See above.
-
getChannelLabeling
public String getChannelLabeling()
Returns the label of the channel.Following the specification: Name→Fluor→Emission wavelength→index.
- Returns:
- See above.
-
getName
public String getName()
Returns the name of the channel.- Returns:
- See above.
-
setName
public void setName(String name)
Sets the name of the channel.- Parameters:
name
- The name of the channel.
-
getColor
public Color getColor()
Gets the original channel color.- Returns:
- The original channel color.
-
getAlpha
public int getAlpha()
Gets the sRGB alpha value of the channel.- Returns:
- See above.
-
getRed
public int getRed()
Gets the sRGB red value of the channel.- Returns:
- See above.
-
getGreen
public int getGreen()
Gets the sRGB green value of the channel.- Returns:
- See above.
-
getBlue
public int getBlue()
Gets the sRGB blue value of the channel.- Returns:
- See above.
-
-