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) {
355355
356356 /**
357357 * Puts the given entities in a box using a single transaction.
358+ * <p>
359+ * See {@link #put(Object)} for more details.
358360 */
359361 @ SafeVarargs // Not using T... as Object[], no ClassCastException expected.
360362 public final void put (@ Nullable T ... entities ) {
@@ -375,6 +377,8 @@ public final void put(@Nullable T... entities) {
375377
376378 /**
377379 * Puts the given entities in a box using a single transaction.
380+ * <p>
381+ * See {@link #put(Object)} for more details.
378382 *
379383 * @param entities It is fine to pass null or an empty collection:
380384 * this case is handled efficiently without overhead.
@@ -397,6 +401,8 @@ public void put(@Nullable Collection<T> entities) {
397401
398402 /**
399403 * 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.
400406 *
401407 * @param entities It is fine to pass null or an empty collection:
402408 * this case is handled efficiently without overhead.
You can’t perform that action at this time.
0 commit comments