Class XSSFColor
- java.lang.Object
-
- org.apache.poi.ss.usermodel.ExtendedColor
-
- org.apache.poi.xssf.usermodel.XSSFColor
-
- All Implemented Interfaces:
Color
public class XSSFColor extends ExtendedColor
Represents a color in SpreadsheetML
-
-
Constructor Summary
Constructors Constructor Description XSSFColor()XSSFColor(byte[] rgb)XSSFColor(byte[] rgb, IndexedColorMap colorMap)XSSFColor(Color clr, IndexedColorMap map)TEST ONLYXSSFColor(IndexedColors indexedColor, IndexedColorMap colorMap)XSSFColor(IndexedColorMap colorMap)new color with the given indexed color map
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static XSSFColorfrom(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor color)static XSSFColorfrom(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor color, IndexedColorMap map)byte[]getARGB()Standard Alpha Red Green Blue ctColor value (ARGB).org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColorgetCTColor()Returns the underlying XML beanshortgetIndex()Indexed ctColor value.shortgetIndexed()protected byte[]getIndexedRGB()byte[]getRGB()Standard Red Green Blue ctColor value (RGB).protected byte[]getStoredRBG()intgetTheme()Index into theclrSchemecollection, referencing a particularsysClrorsrgbClrvalue expressed in the Theme part.doublegetTint()Specifies the tint value applied to the ctColor.booleanhasAlpha()inthashCode()booleanhasTint()booleanisAuto()A boolean value indicating the ctColor is automatic and system ctColor dependent.booleanisIndexed()A boolean value indicating the ctColor is IndexedbooleanisRGB()booleanisThemed()voidsetAuto(boolean auto)voidsetIndexed(int indexed)Indexed ctColor value.voidsetRGB(byte[] rgb)Standard Alpha Red Green Blue ctColor value (ARGB).voidsetTheme(int theme)Index into theclrSchemecollection, referencing a particularsysClrorsrgbClrvalue expressed in the Theme part.voidsetTint(double tint)Specifies the tint value applied to the ctColor.static XSSFColortoXSSFColor(Color color)Checked type castcolorto an XSSFColor.-
Methods inherited from class org.apache.poi.ss.usermodel.ExtendedColor
getARGBHex, getRGBOrARGB, getRGBWithTint, setARGBHex, setColor
-
-
-
-
Constructor Detail
-
XSSFColor
public XSSFColor()
- Since:
- POI 5.2.0
-
XSSFColor
public XSSFColor(IndexedColorMap colorMap)
new color with the given indexed color map- Parameters:
colorMap- The IndexedColorMap to use instead of the default one (can be null)
-
XSSFColor
public XSSFColor(Color clr, IndexedColorMap map)
TEST ONLY- Parameters:
clr- awt Colormap- The IndexedColorMap to use instead of the default one (can be null)
-
XSSFColor
public XSSFColor(byte[] rgb, IndexedColorMap colorMap)- Parameters:
rgb- The RGB-byte-values for the ColorcolorMap- The IndexedColorMap to use instead of the default one (can be null)
-
XSSFColor
public XSSFColor(byte[] rgb)
- Parameters:
rgb- The RGB-byte-values for the Color- Since:
- POI 5.2.0
-
XSSFColor
public XSSFColor(IndexedColors indexedColor, IndexedColorMap colorMap)
- Parameters:
indexedColor- color index (Enum named for default colors)colorMap- The IndexedColorMap to use instead of the default one
-
-
Method Detail
-
from
public static XSSFColor from(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor color, IndexedColorMap map)
- Parameters:
color- The ooxml color object to usemap- The IndexedColorMap to use instead of the default one (can be null)- Returns:
- null if color is null, new instance otherwise
-
from
public static XSSFColor from(org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor color)
- Parameters:
color- The ooxml color object to use- Returns:
- null if color is null, new instance otherwise
- Since:
- POI 5.2.0
-
isAuto
public boolean isAuto()
A boolean value indicating the ctColor is automatic and system ctColor dependent.- Specified by:
isAutoin classExtendedColor
-
setAuto
public void setAuto(boolean auto)
- Parameters:
auto- true if the ctColor is automatic and system ctColor dependent.
-
isIndexed
public boolean isIndexed()
A boolean value indicating the ctColor is Indexed- Specified by:
isIndexedin classExtendedColor
-
isRGB
public boolean isRGB()
- Specified by:
isRGBin classExtendedColor- Returns:
- true if the ctColor is RGB or ARGB based
-
isThemed
public boolean isThemed()
- Specified by:
isThemedin classExtendedColor- Returns:
- true if the ctColor is Theme based
-
hasAlpha
public boolean hasAlpha()
- Returns:
- true if the ctColor has a alpha
-
hasTint
public boolean hasTint()
- Returns:
- true if the ctColor has a tint
-
getIndex
public short getIndex()
Indexed ctColor value. Only used for backwards compatibility. References a ctColor in indexedColors.- Specified by:
getIndexin classExtendedColor
-
getIndexed
public short getIndexed()
- Returns:
- Indexed ctColor value. Only used for backwards compatibility. References a ctColor in indexedColors.
-
setIndexed
public void setIndexed(int indexed)
Indexed ctColor value. Only used for backwards compatibility. References a ctColor in indexedColors.- Parameters:
indexed- color index
-
getRGB
public byte[] getRGB()
Standard Red Green Blue ctColor value (RGB). If there was an A (Alpha) value, it will be stripped.- Specified by:
getRGBin classExtendedColor
-
getARGB
public byte[] getARGB()
Standard Alpha Red Green Blue ctColor value (ARGB).- Specified by:
getARGBin classExtendedColor
-
getStoredRBG
protected byte[] getStoredRBG()
- Specified by:
getStoredRBGin classExtendedColor
-
getIndexedRGB
protected byte[] getIndexedRGB()
- Specified by:
getIndexedRGBin classExtendedColor
-
setRGB
public void setRGB(byte[] rgb)
Standard Alpha Red Green Blue ctColor value (ARGB).- Specified by:
setRGBin classExtendedColor
-
getTheme
public int getTheme()
Index into theclrSchemecollection, referencing a particularsysClrorsrgbClrvalue expressed in the Theme part.- Specified by:
getThemein classExtendedColor
-
setTheme
public void setTheme(int theme)
Index into theclrSchemecollection, referencing a particularsysClrorsrgbClrvalue expressed in the Theme part.- Parameters:
theme- index
-
getTint
public double getTint()
Specifies the tint value applied to the ctColor.If tint is supplied, then it is applied to the RGB value of the ctColor to determine the final ctColor applied.
The tint value is stored as a double from -1.0 .. 1.0, where -1.0 means 100% darken and 1.0 means 100% lighten. Also, 0.0 means no change.
In loading the RGB value, it is converted to HLS where HLS values are (0..HLSMAX), where HLSMAX is currently 255.
Here are some examples of how to apply tint to ctColor:If (tint < 0) Lum' = Lum * (1.0 + tint) For example: Lum = 200; tint = -0.5; Darken 50% Lum' = 200 * (0.5) => 100 For example: Lum = 200; tint = -1.0; Darken 100% (make black) Lum' = 200 * (1.0-1.0) => 0 If (tint > 0) Lum' = Lum * (1.0-tint) + (HLSMAX - HLSMAX * (1.0-tint)) For example: Lum = 100; tint = 0.75; Lighten 75% Lum' = 100 * (1-.75) + (HLSMAX - HLSMAX*(1-.75)) = 100 * .25 + (255 - 255 * .25) = 25 + (255 - 63) = 25 + 192 = 217 For example: Lum = 100; tint = 1.0; Lighten 100% (make white) Lum' = 100 * (1-1) + (HLSMAX - HLSMAX*(1-1)) = 100 * 0 + (255 - 255 * 0) = 0 + (255 - 0) = 255
- Specified by:
getTintin classExtendedColor- Returns:
- the tint value
-
setTint
public void setTint(double tint)
Specifies the tint value applied to the ctColor.If tint is supplied, then it is applied to the RGB value of the ctColor to determine the final ctColor applied.
The tint value is stored as a double from -1.0 .. 1.0, where -1.0 means 100% darken and 1.0 means 100% lighten. Also, 0.0 means no change.
In loading the RGB value, it is converted to HLS where HLS values are (0..HLSMAX), where HLSMAX is currently 255.
Here are some examples of how to apply tint to ctColor:If (tint < 0) Lum' = Lum * (1.0 + tint) For example: Lum = 200; tint = -0.5; Darken 50% Lum' = 200 * (0.5) => 100 For example: Lum = 200; tint = -1.0; Darken 100% (make black) Lum' = 200 * (1.0-1.0) => 0 If (tint > 0) Lum' = Lum * (1.0-tint) + (HLSMAX - HLSMAX * (1.0-tint)) For example: Lum = 100; tint = 0.75; Lighten 75% Lum' = 100 * (1-.75) + (HLSMAX - HLSMAX*(1-.75)) = 100 * .25 + (255 - 255 * .25) = 25 + (255 - 63) = 25 + 192 = 217 For example: Lum = 100; tint = 1.0; Lighten 100% (make white) Lum' = 100 * (1-1) + (HLSMAX - HLSMAX*(1-1)) = 100 * 0 + (255 - 255 * 0) = 0 + (255 - 0) = 255
- Specified by:
setTintin classExtendedColor- Parameters:
tint- the tint value
-
getCTColor
@Internal public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor getCTColor()
Returns the underlying XML bean- Returns:
- the underlying XML bean
-
toXSSFColor
public static XSSFColor toXSSFColor(Color color)
Checked type castcolorto an XSSFColor.- Parameters:
color- the color to type cast- Returns:
- the type casted color
- Throws:
IllegalArgumentException- if color is null or is not an instance of XSSFColor
-
-