Skip to content

Commit d75de94

Browse files
Update containsElement docs.
1 parent 1706857 commit d75de94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/Property.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ private void checkNotStringArray() {
443443
}
444444

445445
/**
446-
* For a String array or String-key map property, matches if at least one element equals the given value
446+
* For a String array, list or String-key map property, matches if at least one element equals the given value
447447
* using {@link StringOrder#CASE_SENSITIVE StringOrder#CASE_SENSITIVE}.
448448
*
449449
* @see #containsElement(String, StringOrder)

objectbox-java/src/main/java/io/objectbox/query/QueryBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ public QueryBuilder<T> contains(Property<T> property, String value, StringOrder
771771
}
772772

773773
/**
774-
* For a String array or String-key map property, matches if at least one element equals the given value.
774+
* For a String array, list or String-key map property, matches if at least one element equals the given value.
775775
*/
776776
public QueryBuilder<T> containsElement(Property<T> property, String value, StringOrder order) {
777777
verifyHandle();

0 commit comments

Comments
 (0)