File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,8 @@ public long put(T entity) {
355
355
356
356
/**
357
357
* Puts the given entities in a box using a single transaction.
358
+ * <p>
359
+ * See {@link #put(Object)} for more details.
358
360
*/
359
361
@ SafeVarargs // Not using T... as Object[], no ClassCastException expected.
360
362
public final void put (@ Nullable T ... entities ) {
@@ -375,6 +377,8 @@ public final void put(@Nullable T... entities) {
375
377
376
378
/**
377
379
* Puts the given entities in a box using a single transaction.
380
+ * <p>
381
+ * See {@link #put(Object)} for more details.
378
382
*
379
383
* @param entities It is fine to pass null or an empty collection:
380
384
* this case is handled efficiently without overhead.
@@ -397,6 +401,8 @@ public void put(@Nullable Collection<T> entities) {
397
401
398
402
/**
399
403
* Puts the given entities in a box in batches using a separate transaction for each batch.
404
+ * <p>
405
+ * See {@link #put(Object)} for more details.
400
406
*
401
407
* @param entities It is fine to pass null or an empty collection:
402
408
* this case is handled efficiently without overhead.
You can’t perform that action at this time.
0 commit comments