|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.rad.model.condition.BaseCondition
javax.rad.model.condition.CompareCondition
javax.rad.model.condition.Greater
public class Greater
The Greater
condition implements the comparison ">" (greater) of values.
Constructor Summary | |
---|---|
Greater()
Creates a new instance of Greater . |
|
Greater(IDataRow pDataRow,
java.lang.String pColumnName)
Constructs a new Greater Condition, with a column, the IDataRow to check and if null values should be ignored. |
|
Greater(IDataRow pDataRow,
java.lang.String pColumnName,
boolean pIgnoreNull)
Constructs a new Greater Condition, with a column, the IDataRow to check and that null values will be ignored. setIgnoreNull(true). |
|
Greater(IDataRow pDataRow,
java.lang.String pDataRowColumnName,
java.lang.String pColumnName)
Constructs a new Greater Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and that null values will be ignored. setIgnoreNull(true). |
|
Greater(IDataRow pDataRow,
java.lang.String pDataRowColumnName,
java.lang.String pColumnName,
boolean pIgnoreNull)
Constructs a new Greater Condition, with a column, the IDataRow to check, the column name to use in the IDataRow to get the value and if null values should be ignored. |
|
Greater(java.lang.String pColumnName,
java.lang.Object pValue)
Creates a new instance of Greater with a defined compare value. |
|
Greater(java.lang.String pColumnName,
java.lang.Object pValue,
boolean pIgnoreNull)
Creates a new instance of Greater with a defined compare value. |
Method Summary | |
---|---|
protected boolean |
isFulfilled(IDataType pDataType,
java.lang.Object pValue)
It checks if the pValue fulfill the ICondition , under usage of
the specified IDataType . |
Methods inherited from class javax.rad.model.condition.CompareCondition |
---|
clone, getColumnName, getDataRow, getDataRowColumnName, getValue, isFulfilled, isIgnoreNull, setColumnName, setIgnoreNull, setValue |
Methods inherited from class javax.rad.model.condition.BaseCondition |
---|
and, or, toString |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Greater()
Greater
.
public Greater(java.lang.String pColumnName, java.lang.Object pValue)
Greater
with a defined compare value.
pColumnName
- the column name for the value comparisonpValue
- the value to comparepublic Greater(java.lang.String pColumnName, java.lang.Object pValue, boolean pIgnoreNull)
Greater
with a defined compare value. It's
possible to compare null values if desired.
pColumnName
- the column name for the value comparisonpValue
- the value to comparepIgnoreNull
- true if null values are desiredpublic Greater(IDataRow pDataRow, java.lang.String pColumnName)
pDataRow
- the IDataRow to use for the compare.pColumnName
- the column name to use for the compare operationpublic Greater(IDataRow pDataRow, java.lang.String pColumnName, boolean pIgnoreNull)
pDataRow
- the IDataRow to use for the compare.pColumnName
- the column name to use for the compare operationpIgnoreNull
- determines if null values should be ignored.public Greater(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName)
pDataRow
- the IDataRow to use for the compare.pDataRowColumnName
- the column name in the IDataRow to use for the compare.pColumnName
- the column name to use for the compare operationpublic Greater(IDataRow pDataRow, java.lang.String pDataRowColumnName, java.lang.String pColumnName, boolean pIgnoreNull)
pDataRow
- the IDataRow to use for the compare.pDataRowColumnName
- the column name in the IDataRow to use for the compare.pColumnName
- the column name to use for the compare operationpIgnoreNull
- determines if null values should be ignored.Method Detail |
---|
protected boolean isFulfilled(IDataType pDataType, java.lang.Object pValue)
ICondition
, under usage of
the specified IDataType
.
isFulfilled
in class CompareCondition
pDataType
- the IDataType
to use for the compare operationpValue
- the value to check against.
ICondition
is fulfilled.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |