public class InternalSimpleDriverImpl extends BaseArangoDriver implements InternalSimpleDriver
| Modifier and Type | Field and Description |
|---|---|
protected AnnotationHandler |
annotationHandler |
protected ArangoConfigure |
configure |
protected InternalCursorDriver |
cursorDriver |
protected HttpManager |
httpManager |
| Modifier and Type | Method and Description |
|---|---|
<T> CursorEntity<T> |
executeSimpleAll(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
executeSimpleAllDocuments(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
executeSimpleAllWithDocument(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
executeSimpleAllWithDocumentResultSet(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<T> |
executeSimpleAllWithResultSet(String database,
String collectionName,
int skip,
int limit,
Class<T> clazz) |
<T> ScalarExampleEntity<T> |
executeSimpleAny(String database,
String collectionName,
Class<T> clazz) |
<T> CursorEntity<T> |
executeSimpleByExample(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
executeSimpleByExampleDocuments(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
executeSimpleByExampleWithDocument(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
executeSimpleByExampleWithDocumentResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<T> |
executeSimpleByExampleWithResultSet(String database,
String collectionName,
Map<String,Object> example,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentResultEntity<T> |
executeSimpleFirst(String database,
String collectionName,
Integer count,
Class<T> clazz) |
<T> ScalarExampleEntity<T> |
executeSimpleFirstExample(String database,
String collectionName,
Map<String,Object> example,
Class<T> clazz) |
<T> CursorEntity<T> |
executeSimpleFulltext(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
executeSimpleFulltextWithDocument(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
executeSimpleFulltextWithDocumentResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> DocumentCursor<T> |
executeSimpleFulltextWithDocuments(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> CursorResultSet<T> |
executeSimpleFulltextWithResultSet(String database,
String collectionName,
String attribute,
String query,
int skip,
int limit,
String index,
Class<T> clazz) |
<T> DocumentResultEntity<T> |
executeSimpleLast(String database,
String collectionName,
Integer count,
Class<T> clazz) |
<T> CursorEntity<T> |
executeSimpleRange(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> CursorEntity<DocumentEntity<T>> |
executeSimpleRangeWithDocument(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<DocumentEntity<T>> |
executeSimpleRangeWithDocumentResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> DocumentCursor<T> |
executeSimpleRangeWithDocuments(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
<T> CursorResultSet<T> |
executeSimpleRangeWithResultSet(String database,
String collectionName,
String attribute,
Object left,
Object right,
Boolean closed,
int skip,
int limit,
Class<T> clazz) |
SimpleByResultEntity |
executeSimpleRemoveByExample(String database,
String collectionName,
Map<String,Object> example,
Boolean waitForSync,
Integer limit) |
SimpleByResultEntity |
executeSimpleReplaceByExample(String database,
String collectionName,
Map<String,Object> example,
Map<String,Object> newValue,
Boolean waitForSync,
Integer limit) |
SimpleByResultEntity |
executeSimpleUpdateByExample(String database,
String collectionName,
Map<String,Object> example,
Map<String,Object> newValue,
Boolean keepNull,
Boolean waitForSync,
Integer limit) |
HttpManager |
getHttpManager() |
void |
setHttpManager(HttpManager httpManager) |
createDocumentEndpointUrl, createDocumentHandle, createDocumentHandle, createEndpointUrl, createEndpointUrl, createEntity, createEntity, createEntity, createEntity, createEntityImpl, createGharialEndpointUrl, createIndexEndpointUrl, createJobEndpointUrl, createUserEndpointUrl, getJSONResponseText, setKeyValueHeader, setStatusCode, toReplicationDumpHeader, validate, validateCollectionName, validateDatabaseName, validateDocumentHandleclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetHttpManager, setHttpManagerprotected InternalCursorDriver cursorDriver
protected ArangoConfigure configure
protected HttpManager httpManager
protected AnnotationHandler annotationHandler
public <T> CursorEntity<T> executeSimpleAll(String database, String collectionName, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleAll in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<T> executeSimpleAllWithResultSet(String database, String collectionName, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleAllWithResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<DocumentEntity<T>> executeSimpleAllWithDocument(String database, String collectionName, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleAllWithDocument in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<DocumentEntity<T>> executeSimpleAllWithDocumentResultSet(String database, String collectionName, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleAllWithDocumentResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentCursor<T> executeSimpleAllDocuments(String database, String collectionName, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleAllDocuments in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<T> executeSimpleByExample(String database, String collectionName, Map<String,Object> example, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleByExample in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<T> executeSimpleByExampleWithResultSet(String database, String collectionName, Map<String,Object> example, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleByExampleWithResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<DocumentEntity<T>> executeSimpleByExampleWithDocument(String database, String collectionName, Map<String,Object> example, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleByExampleWithDocument in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<DocumentEntity<T>> executeSimpleByExampleWithDocumentResultSet(String database, String collectionName, Map<String,Object> example, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleByExampleWithDocumentResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentCursor<T> executeSimpleByExampleDocuments(String database, String collectionName, Map<String,Object> example, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleByExampleDocuments in interface InternalSimpleDriverArangoExceptionpublic <T> ScalarExampleEntity<T> executeSimpleFirstExample(String database, String collectionName, Map<String,Object> example, Class<T> clazz) throws ArangoException
executeSimpleFirstExample in interface InternalSimpleDriverArangoExceptionpublic <T> ScalarExampleEntity<T> executeSimpleAny(String database, String collectionName, Class<T> clazz) throws ArangoException
executeSimpleAny in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<T> executeSimpleRange(String database, String collectionName, String attribute, Object left, Object right, Boolean closed, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleRange in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<T> executeSimpleRangeWithResultSet(String database, String collectionName, String attribute, Object left, Object right, Boolean closed, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleRangeWithResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<DocumentEntity<T>> executeSimpleRangeWithDocument(String database, String collectionName, String attribute, Object left, Object right, Boolean closed, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleRangeWithDocument in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<DocumentEntity<T>> executeSimpleRangeWithDocumentResultSet(String database, String collectionName, String attribute, Object left, Object right, Boolean closed, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleRangeWithDocumentResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentCursor<T> executeSimpleRangeWithDocuments(String database, String collectionName, String attribute, Object left, Object right, Boolean closed, int skip, int limit, Class<T> clazz) throws ArangoException
executeSimpleRangeWithDocuments in interface InternalSimpleDriverArangoExceptionpublic SimpleByResultEntity executeSimpleRemoveByExample(String database, String collectionName, Map<String,Object> example, Boolean waitForSync, Integer limit) throws ArangoException
executeSimpleRemoveByExample in interface InternalSimpleDriverArangoExceptionpublic SimpleByResultEntity executeSimpleReplaceByExample(String database, String collectionName, Map<String,Object> example, Map<String,Object> newValue, Boolean waitForSync, Integer limit) throws ArangoException
executeSimpleReplaceByExample in interface InternalSimpleDriverArangoExceptionpublic SimpleByResultEntity executeSimpleUpdateByExample(String database, String collectionName, Map<String,Object> example, Map<String,Object> newValue, Boolean keepNull, Boolean waitForSync, Integer limit) throws ArangoException
executeSimpleUpdateByExample in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<T> executeSimpleFulltext(String database, String collectionName, String attribute, String query, int skip, int limit, String index, Class<T> clazz) throws ArangoException
executeSimpleFulltext in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<T> executeSimpleFulltextWithResultSet(String database, String collectionName, String attribute, String query, int skip, int limit, String index, Class<T> clazz) throws ArangoException
executeSimpleFulltextWithResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> CursorEntity<DocumentEntity<T>> executeSimpleFulltextWithDocument(String database, String collectionName, String attribute, String query, int skip, int limit, String index, Class<T> clazz) throws ArangoException
executeSimpleFulltextWithDocument in interface InternalSimpleDriverArangoExceptionpublic <T> CursorResultSet<DocumentEntity<T>> executeSimpleFulltextWithDocumentResultSet(String database, String collectionName, String attribute, String query, int skip, int limit, String index, Class<T> clazz) throws ArangoException
executeSimpleFulltextWithDocumentResultSet in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentCursor<T> executeSimpleFulltextWithDocuments(String database, String collectionName, String attribute, String query, int skip, int limit, String index, Class<T> clazz) throws ArangoException
executeSimpleFulltextWithDocuments in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentResultEntity<T> executeSimpleFirst(String database, String collectionName, Integer count, Class<T> clazz) throws ArangoException
executeSimpleFirst in interface InternalSimpleDriverArangoExceptionpublic <T> DocumentResultEntity<T> executeSimpleLast(String database, String collectionName, Integer count, Class<T> clazz) throws ArangoException
executeSimpleLast in interface InternalSimpleDriverArangoExceptionpublic HttpManager getHttpManager()
getHttpManager in interface BaseDriverInterfacepublic void setHttpManager(HttpManager httpManager)
setHttpManager in interface BaseDriverInterfaceCopyright © 2012–2016 ArangoDB GmbH. All rights reserved.