Package org.apache.poi.ss.format
Class CellFormatResult
- java.lang.Object
-
- org.apache.poi.ss.format.CellFormatResult
-
public class CellFormatResult extends Object
This object contains the result of applying a cell format or cell format part to a value.
-
-
Constructor Summary
Constructors Constructor Description CellFormatResult(boolean applies, String text, Color textColor)
Creates a new format result object.
-
-
-
Field Detail
-
applies
public final boolean applies
This istrue
if no condition was given that applied to the value, or if the condition is satisfied. If a condition is relevant, and when applied the value fails the test, this isfalse
.
-
text
public final String text
The resulting text. This will never benull
.
-
-
Constructor Detail
-
CellFormatResult
public CellFormatResult(boolean applies, String text, Color textColor) throws IllegalArgumentException
Creates a new format result object.- Parameters:
applies
- The value forapplies
.text
- The value fortext
.textColor
- The value fortextColor
.- Throws:
IllegalArgumentException
-
-