@@ -245,8 +245,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
245245 * @param query An AQL query string
246246 * @param bindVars key/value pairs defining the variables to bind the query to
247247 * @param options Additional options that will be passed to the query API, can be null
248- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
249- * {@link com.arangodb.util.RawBytes})
248+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
250249 * @return cursor of the results
251250 * @see
252251 * <a href="https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor">API
@@ -260,8 +259,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
260259 *
261260 * @param query An AQL query string
262261 * @param options Additional options that will be passed to the query API, can be null
263- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
264- * {@link com.arangodb.util.RawBytes})
262+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
265263 * @return cursor of the results
266264 * @see
267265 * <a href="https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor">API
@@ -275,8 +273,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
275273 *
276274 * @param query An AQL query string
277275 * @param bindVars key/value pairs defining the variables to bind the query to
278- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
279- * {@link com.arangodb.util.RawBytes})
276+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
280277 * @return cursor of the results
281278 * @see
282279 * <a href="https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor">API
@@ -289,8 +286,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
289286 * result list.
290287 *
291288 * @param query An AQL query string
292- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
293- * {@link com.arangodb.util.RawBytes})
289+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
294290 * @return cursor of the results
295291 * @see
296292 * <a href="https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor">API
@@ -302,8 +298,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
302298 * Return an cursor from the given cursor-ID if still existing
303299 *
304300 * @param cursorId The ID of the cursor
305- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
306- * {@link com.arangodb.util.RawBytes})
301+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
307302 * @return cursor of the results
308303 * @see <a href=
309304 * "https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors
@@ -508,8 +503,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
508503 * Performs a server-side transaction and returns its return value.
509504 *
510505 * @param action A String evaluating to a JavaScript function to be executed on the server.
511- * @param type The type of the result (POJO, {@link com.arangodb.util.RawJson} or
512- * {@link com.arangodb.util.RawBytes})
506+ * @param type The type of the result (POJO or {@link com.arangodb.util.RawData})
513507 * @param options Additional options, can be null
514508 * @return the result of the transaction if it succeeded
515509 * @see <a href="https://www.arangodb.com/docs/stable/http/transaction-js-transaction.html#execute-transaction">API
@@ -586,8 +580,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
586580 * Reads a single document
587581 *
588582 * @param id The id of the document
589- * @param type The type of the document (POJO, {@link com.arangodb.util.RawJson} or
590- * {@link com.arangodb.util.RawBytes})
583+ * @param type The type of the document (POJO or {@link com.arangodb.util.RawData})
591584 * @return the document identified by the id
592585 * @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#read-document">API
593586 * Documentation</a>
@@ -598,8 +591,7 @@ public interface ArangoDatabase extends ArangoSerdeAccessor {
598591 * Reads a single document
599592 *
600593 * @param id The id of the document
601- * @param type The type of the document (POJO, {@link com.arangodb.util.RawJson} or
602- * {@link com.arangodb.util.RawBytes})
594+ * @param type The type of the document (POJO or {@link com.arangodb.util.RawData})
603595 * @param options Additional options, can be null
604596 * @return the document identified by the id
605597 * @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#read-document">API
0 commit comments