public abstract class BooleanOperator
extends java.lang.Object
implements java.io.Serializable
BinaryOperator
,
Serialized FormModifier and Type | Class and Description |
---|---|
static class |
BooleanOperator.EQ
The default implementation of == operator
|
static class |
BooleanOperator.GE
The default implementation of >= operator
|
static class |
BooleanOperator.GT
The default implementation of > operator
|
static class |
BooleanOperator.LE
The default implementation of <= operator
|
static class |
BooleanOperator.LT
The default implementation of < operator
|
Constructor and Description |
---|
BooleanOperator() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
op_bdec(java.math.BigDecimal d1,
java.math.BigDecimal d2) |
protected boolean |
op_bint(java.math.BigInteger b1,
java.math.BigInteger b2) |
protected boolean |
op_boolean(boolean b1,
boolean b2) |
protected boolean |
op_double(double d1,
double d2) |
protected boolean |
op_float(float f1,
float f2) |
protected boolean |
op_int(int i1,
int i2) |
protected boolean |
op_long(long l1,
long l2) |
protected boolean |
op_numeric(Numeric n1,
java.lang.Object n2) |
protected boolean |
op_numeric(java.lang.Object n1,
Numeric n2) |
protected boolean |
op_object(java.lang.Object o1,
java.lang.Object o2) |
protected boolean |
op_string(java.lang.Object o1,
java.lang.String o2) |
protected boolean |
op_string(java.lang.String o1,
java.lang.Object o2) |
boolean |
operateOn(java.lang.Object n1,
java.lang.Object n2) |
protected boolean op_boolean(boolean b1, boolean b2)
protected boolean op_int(int i1, int i2)
protected boolean op_long(long l1, long l2)
protected boolean op_float(float f1, float f2)
protected boolean op_double(double d1, double d2)
protected boolean op_bdec(java.math.BigDecimal d1, java.math.BigDecimal d2)
protected boolean op_bint(java.math.BigInteger b1, java.math.BigInteger b2)
protected boolean op_numeric(Numeric n1, java.lang.Object n2)
protected boolean op_numeric(java.lang.Object n1, Numeric n2)
protected boolean op_object(java.lang.Object o1, java.lang.Object o2)
protected boolean op_string(java.lang.String o1, java.lang.Object o2)
protected boolean op_string(java.lang.Object o1, java.lang.String o2)
public boolean operateOn(java.lang.Object n1, java.lang.Object n2)