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 QueryOperations
Query operation constants.
- Since:
- 0.4.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Symbolic constant that indicates that this query will be performing a delete operation.static final int
Symbolic constant that indicates that this query will be performing a select operation.static final int
Symbolic constant that indicates that this query will be performing a update operation.
-
Field Details
-
OP_SELECT
static final int OP_SELECTSymbolic constant that indicates that this query will be performing a select operation. -
OP_DELETE
static final int OP_DELETESymbolic constant that indicates that this query will be performing a delete operation. -
OP_UPDATE
static final int OP_UPDATESymbolic constant that indicates that this query will be performing a update operation.
-