@@ -60,9 +60,6 @@ public interface ArangoCollection extends ArangoSerializationAccessor {
60
60
* @throws ArangoDBException
61
61
* @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#create-document">API
62
62
* Documentation</a>
63
- *
64
- * @implNote The current implementation has the following limitations:
65
- * - the fields having {@code null} value are always removed during serialization
66
63
*/
67
64
<T > DocumentCreateEntity <T > insertDocument (T value ) throws ArangoDBException ;
68
65
@@ -76,9 +73,6 @@ public interface ArangoCollection extends ArangoSerializationAccessor {
76
73
* @throws ArangoDBException
77
74
* @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#create-document">API
78
75
* Documentation</a>
79
- *
80
- * @implNote The current implementation has the following limitations:
81
- * - the fields having {@code null} value are always removed during serialization
82
76
*/
83
77
<T > DocumentCreateEntity <T > insertDocument (T value , DocumentCreateOptions options ) throws ArangoDBException ;
84
78
@@ -120,6 +114,9 @@ <T> MultiDocumentEntity<DocumentCreateEntity<T>> insertDocuments(
120
114
* @param values a list of Objects that will be stored as documents
121
115
* @return information about the import
122
116
* @throws ArangoDBException
117
+ *
118
+ * @implNote The current implementation has the following limitations:
119
+ * - the fields having {@code null} value are always removed during serialization
123
120
*/
124
121
DocumentImportEntity importDocuments (Collection <?> values ) throws ArangoDBException ;
125
122
@@ -130,6 +127,9 @@ <T> MultiDocumentEntity<DocumentCreateEntity<T>> insertDocuments(
130
127
* @param options Additional options, can be null
131
128
* @return information about the import
132
129
* @throws ArangoDBException
130
+ *
131
+ * @implNote The current implementation has the following limitations:
132
+ * - the fields having {@code null} value are always removed during serialization
133
133
*/
134
134
DocumentImportEntity importDocuments (Collection <?> values , DocumentImportOptions options ) throws ArangoDBException ;
135
135
@@ -139,6 +139,9 @@ <T> MultiDocumentEntity<DocumentCreateEntity<T>> insertDocuments(
139
139
* @param values JSON-encoded array of objects that will be stored as documents
140
140
* @return information about the import
141
141
* @throws ArangoDBException
142
+ *
143
+ * @implNote The current implementation has the following limitations:
144
+ * - the fields having {@code null} value are always removed during serialization
142
145
*/
143
146
DocumentImportEntity importDocuments (String values ) throws ArangoDBException ;
144
147
@@ -149,6 +152,9 @@ <T> MultiDocumentEntity<DocumentCreateEntity<T>> insertDocuments(
149
152
* @param options Additional options, can be null
150
153
* @return information about the import
151
154
* @throws ArangoDBException
155
+ *
156
+ * @implNote The current implementation has the following limitations:
157
+ * - the fields having {@code null} value are always removed during serialization
152
158
*/
153
159
DocumentImportEntity importDocuments (String values , DocumentImportOptions options ) throws ArangoDBException ;
154
160
@@ -236,6 +242,9 @@ <T> DocumentUpdateEntity<T> replaceDocument(String key, T value, DocumentReplace
236
242
* @throws ArangoDBException
237
243
* @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#replace-documents">API
238
244
* Documentation</a>
245
+ *
246
+ * @implNote The current implementation has the following limitations:
247
+ * - the fields having {@code null} value are always removed during serialization
239
248
*/
240
249
<T > MultiDocumentEntity <DocumentUpdateEntity <T >> replaceDocuments (Collection <T > values ) throws ArangoDBException ;
241
250
@@ -249,6 +258,9 @@ <T> DocumentUpdateEntity<T> replaceDocument(String key, T value, DocumentReplace
249
258
* @throws ArangoDBException
250
259
* @see <a href="https://www.arangodb.com/docs/stable/http/document-working-with-documents.html#replace-documents">API
251
260
* Documentation</a>
261
+ *
262
+ * @implNote The current implementation has the following limitations:
263
+ * - the fields having {@code null} value are always removed during serialization
252
264
*/
253
265
<T > MultiDocumentEntity <DocumentUpdateEntity <T >> replaceDocuments (
254
266
Collection <T > values , DocumentReplaceOptions options ) throws ArangoDBException ;
0 commit comments