|
GigaSpaces XAP 7.0 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.j_spaces.core.client.SQLQuery<T> com.j_spaces.core.client.ContinousQuery<T>
public class ContinousQuery<T>
Extends the SQLQuery
interface to allow continuous query.
Constructor Summary | |
---|---|
ContinousQuery()
Empty constructor. |
|
ContinousQuery(Class<T> clazz,
String sqlQuery)
Constructor for setting the class of the entry to query with the sql query expression. |
|
ContinousQuery(Class<T> clazz,
String sqlQuery,
Object... parameters)
Constructor for setting the class of the entry to query with the sql query expression. |
|
ContinousQuery(net.jini.core.entry.Entry entry,
String sqlQuery)
Constructor for setting the entry as a template to query with the sql query expression. |
|
ContinousQuery(String className,
String sqlQuery)
Constructor for setting the className of the entry to query with the sql query expression. |
|
ContinousQuery(String className,
String sqlQuery,
Object... parameters)
Constructor for setting the class of the entry to query with the sql query expression. |
|
ContinousQuery(T object,
String sqlQuery)
Constructor for setting the object as a template to query with the sql query expression. |
Method Summary |
---|
Methods inherited from class com.j_spaces.core.client.SQLQuery |
---|
equals, getClassName, getEntry, getFromQuery, getObject, getParameters, getQuery, getSelectAllQuery, getSelectCountQuery, hashCode, hasParameters, hasWhereClause, isNullExpression, isStoredProcedure, setClassName, setParameter, setParameters, setQuery, setTemplate, setTemplate, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ContinousQuery()
public ContinousQuery(String className, String sqlQuery)
className
- - Entry class name to be queried.sqlQuery
- - The SQL Query expression (contents of the WHERE part).public ContinousQuery(Class<T> clazz, String sqlQuery)
clazz
- - Entry class to be queried.sqlQuery
- - The SQL Query expression (contents of the WHERE part).public ContinousQuery(T object, String sqlQuery)
object
- - The POJO to query bysqlQuery
- - The SQL Query expression (contents of the WHERE part).SQLQuery.SQLQuery(String className, String sqlQuery)
public ContinousQuery(net.jini.core.entry.Entry entry, String sqlQuery)
entry
- - The entry to query bysqlQuery
- - The SQL Query expression (contents of the WHERE part).SQLQuery.SQLQuery(String className, String sqlQuery)
public ContinousQuery(String className, String sqlQuery, Object... parameters)
className
- Entry class to be queried.sqlQuery
- The SQL Query expression (contents of the WHERE part).parameters
- Parameters for the sql querypublic ContinousQuery(Class<T> clazz, String sqlQuery, Object... parameters)
clazz
- Entry class to be queried.sqlQuery
- The SQL Query expression (contents of the WHERE part).parameters
- Parameters for the sql query
|
GigaSpaces XAP 7.0 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |