We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 873115b commit 9c15acbCopy full SHA for 9c15acb
objectbox-java/src/main/java/io/objectbox/query/Query.java
@@ -289,8 +289,12 @@ public LazyList<T> findLazy() {
289
// TODO we might move all those property find methods in a "PropertyQuery" class for divide & conquer.
290
291
/**
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
297
* @param property the property for which to return values
- * @return
298
*/
299
public PropertyQuery property(Property property) {
300
return new PropertyQuery(this, property);
0 commit comments