|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ICondition | |
---|---|
com.sibvisions.rad.model | Contains model implementations. |
com.sibvisions.rad.model.mem | Contains all storage independent model classes. |
com.sibvisions.rad.persist | Contains implementations of the persistence definitions. |
com.sibvisions.rad.persist.jdbc | Contains all database specific persistence implementations. |
com.sibvisions.rad.ui.celleditor | Contains technology and platform independent cell editor implementations. |
javax.rad.genui.celleditor | Contains a generic implementation of the platform and technology independent celleditor interfaces to design graphical user interfaces. |
javax.rad.model | Contains all model interfaces, abstract base and exception classes. |
javax.rad.model.condition | Contains ICondition implementations for different SQL operators. |
javax.rad.persist | Contains classes and interfaces needed for java persistence. |
javax.rad.ui.celleditor | Contains all interfaces to develop cell editors. |
Uses of ICondition in com.sibvisions.rad.model |
---|
Methods in com.sibvisions.rad.model that return ICondition | |
---|---|
static ICondition |
Filter.createCondition(ICondition pCondition,
boolean pInclude,
java.lang.String... pColumns)
Creates a new ICondition from the given ICondition and ignores or uses specific columns. |
static ICondition |
Filter.createEqualsFilter(IDataRow pFilterDataRow,
java.lang.String[] pFilterColumnNames)
Creates a Filter with AND combined EQUALS conditions over all filter column names. |
static ICondition |
Filter.createEqualsFilter(IDataRow pFilterDataRow,
java.lang.String[] pFilterColumnNames,
boolean pIgnoreNull)
Creates a Filter with AND combined EQUALS conditions over all filter column names. |
static ICondition |
Filter.createEqualsFilter(java.lang.String[] pColumnNames,
java.lang.Object[] pDataRow,
ColumnMetaData[] pColumnMetaData)
Creates a Filter with AND combined EQUALS conditions over all filter column names. |
static ICondition |
Filter.createFilter(IDataRow pFilterDataRow)
Creates an Filter with AND combined and for each - column with the DataType String with LikeIgnoreCase condition and - column with the DataType BigDecimal & Boolean with Equals condition and - for two column in order with the DataType Timestamp the first with GreaterEquals and the second with LessEquals condition and - one column with the DataType Timestamp with Equals condition and - column with an ILinkedCellEditor.setValidationEnabled(true) with Equals otherwise with a LikeIgnoreCase condition over all columns. |
static ICondition |
Filter.createFilter(IDataRow pFilterDataRow,
java.lang.String[] pFilterColumnNames)
Creates an Filter with AND combined and for each - column with the DataType String with LikeIgnoreCase condition and - column with the DataType BigDecimal & Boolean with Equals condition and - for two column in order with the DataType Timestamp the first with GreaterEquals and the second with LessEquals condition and - one column with the DataType Timestamp with Equals condition and - column with an ILinkedCellEditor.setValidationEnabled(true) with Equals otherwise with a LikeIgnoreCase condition over all filter column names. |
static ICondition |
Filter.createFullTextFilter(IDataBook pDataBook,
java.lang.String pSearchString,
java.lang.String... pIncludedColumns)
Full text filter. |
static ICondition |
Filter.createLikeFilter(IDataRow pFilterDataRow,
java.lang.String[] pFilterColumnNames)
Creates a Filter with AND combined LIKE conditions over all filter column names. |
static ICondition |
Filter.createLikeIgnoreCaseFilter(IDataRow pFilterDataRow,
java.lang.String[] pFilterColumnNames)
Creates a Filter with AND combined LikeIgnoreCase conditions over all filter column names. |
Methods in com.sibvisions.rad.model with parameters of type ICondition | |
---|---|
static ICondition |
Filter.createCondition(ICondition pCondition,
boolean pInclude,
java.lang.String... pColumns)
Creates a new ICondition from the given ICondition and ignores or uses specific columns. |
static java.lang.Object |
Filter.getEqualsValue(ICondition pFilter,
java.lang.String pColumn)
Gets the value from the first Equals condition of the given filter. |
static void |
DataBookCSVExporter.writeCSV(IDataBook pBook,
java.io.OutputStream pStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort)
Writes all rows and values of a databook, as comma separated values to a stream. |
static void |
DataBookCSVExporter.writeCSV(IDataBook pBook,
java.io.OutputStream pStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pSeparator)
Writes all rows and values of a databook, as comma separated values to a stream. |
static void |
DataBookCSVExporter.writeCSV(IDataBook pBook,
java.io.OutputStream pStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pSeparator,
java.lang.String pEncoding)
Writes all rows and values of a databook, as comma separated values to a stream. |
Uses of ICondition in com.sibvisions.rad.model.mem |
---|
Methods in com.sibvisions.rad.model.mem that return ICondition | |
---|---|
ICondition |
MemDataBook.getFilter()
Gets the used filter . |
Methods in com.sibvisions.rad.model.mem with parameters of type ICondition | |
---|---|
int |
MemDataPage.searchNext(ICondition pCondition)
Searches for the first occurrence of an IDataRow which matches
the given ICondition and returns its index. |
int |
MemDataBook.searchNext(ICondition pCondition)
Searches for the first occurrence of an IDataRow which matches
the given ICondition and returns its index. |
int |
MemDataPage.searchNext(ICondition pCondition,
int pStartIndex)
Searches for the next occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
MemDataBook.searchNext(ICondition pCondition,
int pRowNum)
Searches for the next occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
MemDataPage.searchPrevious(ICondition pCondition)
Searches for the last occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
MemDataBook.searchPrevious(ICondition pCondition)
Searches for the last occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
MemDataPage.searchPrevious(ICondition pCondition,
int pStartIndex)
Searches for the previous occurrence of an IDataRow which matches
the given ICondition and returns its index. |
int |
MemDataBook.searchPrevious(ICondition pCondition,
int pRowNum)
Searches for the previous occurrence of an IDataRow which matches
the given ICondition and returns its index. |
void |
MemDataBook.setFilter(ICondition pFilter)
Sets the filter that is used. |
Uses of ICondition in com.sibvisions.rad.persist |
---|
Methods in com.sibvisions.rad.persist with parameters of type ICondition | ||
---|---|---|
IFileHandle |
AbstractStorage.createCSV(java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort)
Write the current DBStorage with the specified filter and sort to the export.csv file in CSV format and returns the file handle. |
|
IFileHandle |
AbstractStorage.createCSV(java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pLanguage)
Write the current DBStorage with the specified filter and sort to the export.csv file in CSV format and returns the file handle. |
|
IFileHandle |
AbstractStorage.createCSV(java.lang.String pFileName,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort)
Write the current DBStorage with the specified filter and sort to the export.csv file in CSV format and returns the file handle. |
|
protected abstract java.util.List<java.lang.Object[]> |
AbstractStorage.executeFetch(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
This method has to be implemented in the Storage implementation and should have the functionality of the fetch method. |
|
protected java.util.List<java.lang.Object[]> |
AbstractMemStorage.executeFetch(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
This method has to be implemented in the Storage implementation and should have the functionality of the fetch method. |
|
protected java.util.List<java.lang.Object[]> |
AbstractStorage.executeFetchAsBean(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
This method will be used if AbstractStorage.fetchBean(ICondition, SortDefinition, int, int) was called. |
|
protected java.util.List<java.lang.Object[]> |
AbstractMemStorage.executeFetchAsBean(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
This method will be used if AbstractStorage.fetchBean(ICondition, SortDefinition, int, int) was called. |
|
|
AbstractStorage.fetch(java.lang.Class<T> pClass,
ICondition pFilter)
Returns the requested bean/POJO from the storage. |
|
|
AbstractStorage.fetch(java.lang.Class<T> pClass,
ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
Returns the requested list of beans/POJOs from the storage. |
|
java.util.List<java.lang.Object[]> |
AbstractStorage.fetch(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
Returns the requested rows as List[Object[]] . |
|
IBean |
AbstractStorage.fetchBean(ICondition pFilter)
Returns the requested bean from the storage. |
|
java.util.List<IBean> |
AbstractStorage.fetchBean(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
Returns the requested list of beans from the storage. |
|
int |
AbstractMemStorage.getEstimatedRowCount(ICondition pFilter)
Returns the number of rows in this AbstractStorage from the storage. |
|
void |
MemDataBookStorage.loadData(MemDataBook pBook,
ICondition pFilter)
Loads the relevant data into the internal data book. |
|
abstract void |
AbstractMemStorage.loadData(MemDataBook pBook,
ICondition pFilter)
Loads the relevant data into the internal data book. |
|
abstract void |
AbstractStorage.writeCSV(java.io.OutputStream pStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pSeparator)
Write the current storage with the specified filter and sort into the given output stream as CSV Format. |
|
void |
AbstractMemStorage.writeCSV(java.io.OutputStream pStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pSeparator)
Write the current storage with the specified filter and sort into the given output stream as CSV Format. |
Uses of ICondition in com.sibvisions.rad.persist.jdbc |
---|
Methods in com.sibvisions.rad.persist.jdbc that return ICondition | |
---|---|
protected ICondition |
DBAccess.findAndCreateReducedCondition(ICondition pCondition,
java.util.Set<java.lang.String> pNames,
java.util.Map<java.lang.String,CompareCondition> pNameToCondition)
Finds and removes the ICondition with the given column names from
the given ICondition . |
ICondition |
DBStorage.getRestrictCondition()
Returns the restrict condition. |
Methods in com.sibvisions.rad.persist.jdbc with parameters of type ICondition | |
---|---|
protected java.util.List<java.lang.Object[]> |
DBStorage.executeFetch(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
This method has to be implemented in the Storage implementation and should have the functionality of the fetch method. |
java.util.List<java.lang.Object[]> |
DBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereCondition,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
Returns the List of fetched rows (as List of Object[]) for the specified query tables and parameters. |
java.util.List<java.lang.Object[]> |
IDBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereClause,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount,
boolean pAllowLazyFetch)
Returns the List of fetched rows (as List of Object[]) for the specified query tables and parameters. |
java.util.List<java.lang.Object[]> |
DBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereCondition,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount,
boolean pAllowLazyFetch)
Returns the List of fetched rows (as List of Object[]) for the specified query tables and parameters. |
java.util.List<java.lang.Object[]> |
DBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereCondition,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount)
Mostly same as DBAccess.fetch(ServerMetaData, String, String[], String, ICondition, String, String, SortDefinition, int, int) . |
java.util.List<java.lang.Object[]> |
MySQLDBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereCondition,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount,
boolean pAllowLazyFetch)
Mostly same as DBAccess.fetch(ServerMetaData, String, String[], String, ICondition, String, String, SortDefinition, int, int) . |
java.util.List<java.lang.Object[]> |
DBAccess.fetch(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereCondition,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount,
boolean pAllowLazyFetch)
Mostly same as DBAccess.fetch(ServerMetaData, String, String[], String, ICondition, String, String, SortDefinition, int, int) . |
protected ICondition |
DBAccess.findAndCreateReducedCondition(ICondition pCondition,
java.util.Set<java.lang.String> pNames,
java.util.Map<java.lang.String,CompareCondition> pNameToCondition)
Finds and removes the ICondition with the given column names from
the given ICondition . |
java.lang.String |
PostgreSQLDBAccess.getDatabaseSpecificLockStatement(java.lang.String pWritebackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
Returns the database specific statement to lock the specified row in the database. |
protected java.lang.String |
DBAccess.getDatabaseSpecificLockStatement(java.lang.String pWriteBackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
Returns the database specific statement to lock the specified row in the database. |
java.lang.String |
AbstractOracleDBAccess.getDatabaseSpecificLockStatement(java.lang.String pWritebackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
Returns the database specific statement to lock the specified row in the database. |
int |
DBStorage.getEstimatedRowCount(ICondition pFilter)
Returns the number of rows in this AbstractStorage from the storage. |
protected java.lang.Object[] |
DBAccess.getParameter(ICondition pCondition)
Returns the parameters used for this ICondition . |
protected java.lang.Object[] |
DBAccess.getParameter(ICondition pCondition,
int pFromRow,
int pMinimumRowCount)
Returns the parameters used for this ICondition . |
DBAccess.ParameterizedStatement |
MySQLDBAccess.getParameterizedSelectStatement(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereClause,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount)
Creates the DBAccess.ParameterizedStatement and returns it. |
DBAccess.ParameterizedStatement |
DBAccess.getParameterizedSelectStatement(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereClause,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount)
Creates the DBAccess.ParameterizedStatement and returns it. |
java.lang.String |
DBAccess.getSelectStatement(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereClause,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause)
It initialize the select for a specified storage unit and return the SELECT statement. |
java.lang.String |
DBAccess.getSelectStatement(ServerMetaData pServerMetaData,
java.lang.String pBeforeQueryColumns,
java.lang.String[] pQueryColumns,
java.lang.String pFromClause,
ICondition pFilter,
java.lang.String pWhereClause,
java.lang.String pAfterWhereClause,
SortDefinition pSort,
java.lang.String pOrderByClause,
int pFromRow,
int pMinimumRowCount)
It initialize the select for a specified storage unit and return the SELECT statement. |
protected java.lang.String |
DBAccess.getSQL(ServerMetaData pServerMetaData,
ICondition pCondition,
boolean pUseRealColumnName)
Returns the ANSI SQL String for this ICondition . |
protected java.lang.String |
DBAccess.getWhereClause(ServerMetaData pServerMetaData,
ICondition pFilter,
java.lang.String pWhereClause,
boolean pUsePrefix)
Returns the WHERE clause for a UPDATE, DELETE or SELECT statement specified with a Filter . |
void |
IDBAccess.lockRow(java.lang.String pWritebackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
It locks the specified row in the storage. |
void |
DBAccess.lockRow(java.lang.String pWriteBackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
It locks the specified row in the storage. |
protected int |
DBAccess.lockRowInternal(java.lang.String pWriteBackTable,
ServerMetaData pServerMetaData,
ICondition pPKFilter)
It locks the current row and return how many rows are affected. |
void |
DBStorage.setRestrictCondition(ICondition pRestrictCondition)
Sets the restrict condition. |
int |
DBAccess.updateAnsiSQL(java.lang.String pWriteBackTable,
java.lang.String sUpdateStatement,
ServerMetaData pServerMetaData,
java.lang.Object[] pOld,
java.lang.Object[] pNew,
ICondition pPKFilter)
Updates the specified row and return the count of affected rows. |
int |
DBAccess.updateDatabaseSpecific(java.lang.String pWriteBackTable,
java.lang.String sUpdateStatement,
ServerMetaData pServerMetaData,
java.lang.Object[] pOld,
java.lang.Object[] pNew,
ICondition pPKFilter)
Updates the specified row and returns the count of affected rows. |
void |
DBStorage.writeCSV(java.io.OutputStream pOutputStream,
java.lang.String[] pColumnNames,
java.lang.String[] pLabels,
ICondition pFilter,
SortDefinition pSort,
java.lang.String pSeparator)
Write the current storage with the specified filter and sort into the given output stream as CSV Format. |
Uses of ICondition in com.sibvisions.rad.ui.celleditor |
---|
Fields in com.sibvisions.rad.ui.celleditor declared as ICondition | |
---|---|
protected ICondition |
AbstractLinkedCellEditor.additionalCondition
The additional condition. |
Methods in com.sibvisions.rad.ui.celleditor that return ICondition | |
---|---|
ICondition |
AbstractLinkedCellEditor.getAdditionalCondition()
Gets the additional condition, that is combined with And. |
Methods in com.sibvisions.rad.ui.celleditor with parameters of type ICondition | |
---|---|
void |
AbstractLinkedCellEditor.setAdditionalCondition(ICondition pCondition)
Sets the additional condition, that is combined with And. |
Uses of ICondition in javax.rad.genui.celleditor |
---|
Methods in javax.rad.genui.celleditor that return ICondition | |
---|---|
ICondition |
UILinkedCellEditor.getAdditionalCondition()
Gets the additional condition, that is combined with And. |
Methods in javax.rad.genui.celleditor with parameters of type ICondition | |
---|---|
void |
UILinkedCellEditor.setAdditionalCondition(ICondition pCondition)
Sets the additional condition, that is combined with And. |
Uses of ICondition in javax.rad.model |
---|
Methods in javax.rad.model that return ICondition | |
---|---|
ICondition |
IDataBook.getFilter()
Gets the used filter . |
Methods in javax.rad.model with parameters of type ICondition | |
---|---|
int |
IDataPage.searchNext(ICondition pCondition)
Searches for the first occurrence of an IDataRow which matches
the given ICondition and returns its index. |
int |
IDataPage.searchNext(ICondition pCondition,
int pStartIndex)
Searches for the next occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
IDataPage.searchPrevious(ICondition pCondition)
Searches for the last occurrence of an IDataRow which matches the
given ICondition and returns its index. |
int |
IDataPage.searchPrevious(ICondition pCondition,
int pStartIndex)
Searches for the previous occurrence of an IDataRow which matches
the given ICondition and returns its index. |
void |
IDataBook.setFilter(ICondition pFilter)
Sets the filter that is used. |
Uses of ICondition in javax.rad.model.condition |
---|
Classes in javax.rad.model.condition that implement ICondition | |
---|---|
class |
And
The And condition implements the AND operator. |
class |
BaseCondition
The BaseCondition is the default implementation of ICondition . |
class |
CompareCondition
Thats the base Class for all CompareCondition s. |
class |
ContainsIgnoreCase
The ContainsIgnoreCase condition is a LikeIgnoreCase condition with a leading and trailing *. |
class |
Equals
The Equals condition implements the comparison of values. |
class |
Greater
The Greater condition implements the comparison ">" (greater) of values. |
class |
GreaterEquals
The GreaterEquals condition implements the comparison ">=" (greater equals) of values. |
class |
Less
The Less condition implements the comparison "<" (less) of values. |
class |
LessEquals
The LessEquals condition implements the comparison "<=" (less equals) of values. |
class |
Like
The Like condition implements the comparison of values with wildcards.
*,? |
class |
LikeIgnoreCase
The LikeIgnoreCase condition implements the comparison of values with wildcards and
ignors case.
*,? |
class |
LikeReverse
The LikeReverse condition implements the comparison of values with wildcards.
*,? |
class |
LikeReverseIgnoreCase
The LikeReverseIgnoreCase condition implements the comparison of values with wildcards and
ignors case.
*,? |
class |
Not
The Not condition implements the NOT operator. |
class |
OperatorCondition
The OperatorCondition is the default implementation for
logical operators. |
class |
Or
The Or condition implements the OR operator. |
class |
StartsWithIgnoreCase
The StartsWithIgnoreCase condition is a LikeIgnoreCase condition with a leading *. |
Methods in javax.rad.model.condition that return ICondition | |
---|---|
ICondition |
OperatorCondition.clone()
Return a clone of the specific ICondition. |
ICondition |
Not.clone()
Return a clone of the specific ICondition. |
ICondition |
ICondition.clone()
Return a clone of the specific ICondition. |
ICondition |
CompareCondition.clone()
Return a clone of the specific ICondition. |
ICondition |
BaseCondition.clone()
Return a clone of the specific ICondition. |
ICondition |
Not.getCondition()
Returns the ICondition to negate. |
ICondition[] |
OperatorCondition.getConditions()
Returns all IConditions of this OperatorCondition. |
Methods in javax.rad.model.condition with parameters of type ICondition | |
---|---|
void |
OperatorCondition.add(ICondition pCond)
Adds an operand to the operator condition. |
And |
ICondition.and(ICondition pCondition)
It connects with an logic AND the specified ICondition . |
And |
BaseCondition.and(ICondition pCondition)
It connects with an logic AND the specified ICondition . |
Or |
ICondition.or(ICondition pCondition)
It connects with an logic OR the specified ICondition . |
Or |
BaseCondition.or(ICondition pCondition)
It connects with an logic OR the specified ICondition . |
void |
OperatorCondition.remove(ICondition pCond)
Removes an operand from the operator condition. |
void |
Not.setCondition(ICondition pCondition)
Sets the ICondition to negate. |
void |
OperatorCondition.setConditions(ICondition[] pConditions)
Sets all IConditions of this OperatorCondition. |
Constructors in javax.rad.model.condition with parameters of type ICondition | |
---|---|
And(ICondition... pConditions)
Creates a new instance of And . |
|
Not(ICondition pCondition)
Creates a new instance of Not . |
|
Or(ICondition... pConditions)
Creates a new instance of Or . |
Uses of ICondition in javax.rad.persist |
---|
Methods in javax.rad.persist with parameters of type ICondition | |
---|---|
java.util.List<java.lang.Object[]> |
IStorage.fetch(ICondition pFilter,
SortDefinition pSort,
int pFromRow,
int pMinimumRowCount)
Returns the requested rows as List[Object[]] . |
int |
IStorage.getEstimatedRowCount(ICondition pFilter)
Returns the number of rows in this AbstractStorage from the storage. |
Uses of ICondition in javax.rad.ui.celleditor |
---|
Methods in javax.rad.ui.celleditor that return ICondition | |
---|---|
ICondition |
ILinkedCellEditor.getAdditionalCondition()
Gets the additional condition, that is combined with And. |
Methods in javax.rad.ui.celleditor with parameters of type ICondition | |
---|---|
void |
ILinkedCellEditor.setAdditionalCondition(ICondition pCondition)
Sets the additional condition, that is combined with And. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |