JAVA Documentation "logical operators" subsection of "Queries" has a sample with method that doesn't exist
See original GitHub issueGoal
Correction on Realm JAVA documentation 3.7.2
Expected Results
With this particular query, though, it’s easier to use in:
RealmResult<User> r = realm.where(User.class)
.not()
.in("name", new String[]{"Peter", "Jo"})
findAll();
Actual Results
With this particular query, though, it’s easier to use in:
RealmResult<User> r = realm.where(User.class)
.not()
.in("name", new String[]{"Peter", "Jo"})
finalAll();
finalAll() doesn’t exist.
Steps & Code to Reproduce
open https://realm.io/docs/java/latest/#filtering Look for Logical operators and see the mistake at “in clause sample”.
Version of Realm and tooling
Realm version(s): 3.7.2 (JAVA DOCUMENTATION)
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Chapter 21 The Java Persistence Query Language
Chapter 21 The Java Persistence Query Language. The Java Persistence query language defines queries for entities and their persistent state.
Read more >Spring Data JPA - Reference Documentation
Parsing query method names is divided into subject and predicate. The first part ( find…By , exists…By ) defines the subject of the...
Read more >Log Operators Cheat Sheet | Sumo Logic Docs
The Search Operators cheat sheet provides a list of available Sumo Logic parsers, aggregators, search operators, and mathematical expressions with links to ...
Read more >Perform simple and compound queries in Cloud Firestore
Cloud Firestore provides powerful query functionality for specifying which documents you want to retrieve from a collection or collection group.
Read more >Predicate expressions - Splunk Documentation
If your search includes both a WHERE and a HAVING clause, the EXISTS expression must be in the HAVING clause. The EXISTS operator...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@nhachicha
@soutoss please do, although I think I’ve fixed all the
RealmResult… is it on https://realm.io/docs/java/latest/ ? have you refreshed your cache?