Package org.apache.openjpa.kernel
Interface QueryOperations
- 
- All Known Subinterfaces:
 Query,StoreQuery
- All Known Implementing Classes:
 AbstractStoreQuery,DelegatingQuery,DistributedQueryImpl,ExpressionStoreQuery,JDBCStoreQuery,MethodStoreQuery,PreparedSQLStoreQuery,QueryCacheStoreQuery,QueryImpl,SQLStoreQuery,StoredProcedureQuery
public interface QueryOperationsQuery operation constants.- Since:
 - 0.4.0
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static intOP_DELETESymbolic constant that indicates that this query will be performing a delete operation.static intOP_SELECTSymbolic constant that indicates that this query will be performing a select operation.static intOP_UPDATESymbolic constant that indicates that this query will be performing a update operation. 
 - 
 
- 
- 
Field Detail
- 
OP_SELECT
static final int OP_SELECT
Symbolic constant that indicates that this query will be performing a select operation.- See Also:
 QueryContext.getOperation(), Constant Field Values
 
- 
OP_DELETE
static final int OP_DELETE
Symbolic constant that indicates that this query will be performing a delete operation.- See Also:
 QueryContext.getOperation(), Constant Field Values
 
- 
OP_UPDATE
static final int OP_UPDATE
Symbolic constant that indicates that this query will be performing a update operation.- See Also:
 QueryContext.getOperation(), Constant Field Values
 
 - 
 
 -