Package ome.xml.model.primitives
Class Color
- java.lang.Object
-
- ome.xml.model.primitives.PrimitiveType<Integer>
-
- ome.xml.model.primitives.Color
-
public class Color extends PrimitiveType<Integer>
Primitive type that represents an RGBA color.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAlpha()
Returns the alpha component of this color.int
getBlue()
Returns the blue component of this color.int
getGreen()
Returns the green component of this color.int
getRed()
Returns the red component of this color.static Color
valueOf(String s)
Returns anColor
object holding the value of the specified string.-
Methods inherited from class ome.xml.model.primitives.PrimitiveType
equals, getValue, toString
-
-
-
-
Constructor Detail
-
Color
public Color(Integer value)
-
Color
public Color(int r, int g, int b, int a)
-
-
Method Detail
-
valueOf
public static Color valueOf(String s)
Returns anColor
object holding the value of the specified string.- Parameters:
s
- The string to be parsed.- Returns:
- See above.
-
getRed
public int getRed()
Returns the red component of this color.- Returns:
- See above.
-
getGreen
public int getGreen()
Returns the green component of this color.- Returns:
- See above.
-
getBlue
public int getBlue()
Returns the blue component of this color.- Returns:
- See above.
-
getAlpha
public int getAlpha()
Returns the alpha component of this color.- Returns:
- See above.
-
-