Package org.apache.poi.ss.usermodel
Class ComparisonOperator
- java.lang.Object
-
- org.apache.poi.ss.usermodel.ComparisonOperator
-
public final class ComparisonOperator extends java.lang.Object
The conditional format operators used for "Highlight Cells That Contain..." rules.For example, "highlight cells that begin with "M2" and contain "Mountain Gear".
-
-
Field Summary
Fields Modifier and Type Field Description static byte
BETWEEN
'Between' operatorstatic byte
EQUAL
'Equal to' operatorstatic byte
GE
'Greater than or equal to' operatorstatic byte
GT
'Greater than' operatorstatic byte
LE
'Less than or equal to' operatorstatic byte
LT
'Less than' operatorstatic byte
NO_COMPARISON
static byte
NOT_BETWEEN
'Not between' operatorstatic byte
NOT_EQUAL
'Not equal to' operator
-
Constructor Summary
Constructors Constructor Description ComparisonOperator()
-
-
-
Field Detail
-
NO_COMPARISON
public static final byte NO_COMPARISON
- See Also:
- Constant Field Values
-
BETWEEN
public static final byte BETWEEN
'Between' operator- See Also:
- Constant Field Values
-
NOT_BETWEEN
public static final byte NOT_BETWEEN
'Not between' operator- See Also:
- Constant Field Values
-
EQUAL
public static final byte EQUAL
'Equal to' operator- See Also:
- Constant Field Values
-
NOT_EQUAL
public static final byte NOT_EQUAL
'Not equal to' operator- See Also:
- Constant Field Values
-
GT
public static final byte GT
'Greater than' operator- See Also:
- Constant Field Values
-
LT
public static final byte LT
'Less than' operator- See Also:
- Constant Field Values
-
GE
public static final byte GE
'Greater than or equal to' operator- See Also:
- Constant Field Values
-
LE
public static final byte LE
'Less than or equal to' operator- See Also:
- Constant Field Values
-
-