Skip to content

Commit 9c15acb

Browse files
committed
JavaDocs for PropertyQuery.property(...)
1 parent 873115b commit 9c15acb

File tree

1 file changed

+5
-1
lines changed
  • objectbox-java/src/main/java/io/objectbox/query

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,12 @@ public LazyList<T> findLazy() {
289289
// TODO we might move all those property find methods in a "PropertyQuery" class for divide & conquer.
290290

291291
/**
292+
* Creates a {@link PropertyQuery} for the given property.
293+
*
294+
* A {@link PropertyQuery} uses the same conditions as this Query object,
295+
* but returns only the value(s) of a single property (not an entity objects).
296+
*
292297
* @param property the property for which to return values
293-
* @return
294298
*/
295299
public PropertyQuery property(Property property) {
296300
return new PropertyQuery(this, property);

0 commit comments

Comments
 (0)