Uses of Enum Class
com.gigaspaces.query.QueryResultType
Packages that use QueryResultType
Package
Description
Provides classes and interfaces to execute queries on space entries.
Provides GigaSpaces client interface services
-
Uses of QueryResultType in com.gigaspaces.query
Methods in com.gigaspaces.query that return QueryResultTypeModifier and TypeMethodDescriptionIdQuery.getQueryResultType()Returns the type of result.IdsQuery.getQueryResultType()Returns the type of result.static QueryResultTypeReturns the enum constant of this class with the specified name.static QueryResultType[]QueryResultType.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in com.gigaspaces.query with parameters of type QueryResultTypeModifierConstructorDescriptionIdQuery(Class<T> type, Object id, QueryResultType queryResultType) Creates an IdQuery using the specified type, id and query result type.Creates an IdQuery using the specified type, id, routing and query result type.Creates an IdQuery using the specified type, id, routing and query result type.IdQuery(String typeName, Object id, QueryResultType queryResultType) Creates an IdQuery using the specified type, id and query result type.IdQuery(String typeName, Object id, Object routing, QueryResultType queryResultType) Creates an IdQuery using the specified type, id, routing and query result type.IdQuery(String typeName, Object id, Object routing, QueryResultType queryResultType, int version) Creates an IdQuery using the specified type, id, routing and query result type.IdsQuery(Class<T> type, Object[] ids, QueryResultType queryResultType) Creates an IdsQuery using the specified type, IDs and query result type.Creates an IdsQuery using the specified type, IDs, routing per id and query result type.Creates an IdsQuery using the specified type, IDs, routing and query result type.IdsQuery(String typeName, Object[] ids, QueryResultType queryResultType) Creates an IdsQuery using the specified type, IDs and query result type.IdsQuery(String typeName, Object[] ids, Object[] routings, QueryResultType queryResultType) Creates an IdsQuery using the specified type, IDs, routing per id and query result type.IdsQuery(String typeName, Object[] ids, Object routing, QueryResultType queryResultType) Creates an IdsQuery using the specified type, IDs, routing and query result type. -
Uses of QueryResultType in com.j_spaces.core.client
Methods in com.j_spaces.core.client that return QueryResultTypeModifier and TypeMethodDescriptionSQLQuery.getQueryResultType()Returns the result type of this query.Constructors in com.j_spaces.core.client with parameters of type QueryResultTypeModifierConstructorDescriptionSQLQuery(Class<T> type, String sqlExpression, QueryResultType queryResultType) Creates a SQLQuery using the specified type, expression and result type.SQLQuery(Class<T> type, String sqlExpression, QueryResultType queryResultType, Object... parameters) Creates a SQLQuery using the specified type, expression, result type and parameters.SQLQuery(String typeName, String sqlExpression, QueryResultType queryResultType) Creates a SQLQuery using the specified type, expression and result type.SQLQuery(String typeName, String sqlExpression, QueryResultType queryResultType, Object... parameters) Creates a SQLQuery using the specified type, expression, result type and parameters.