Is there any way to find all (or just the next) RealmObjects with Strings lexicographically greater than the target?
Something like
MyEntry next = realm.where(MyEntry.class)
.greaterThan("name", current)
.findAllSorted("name")
.first();
which did not work, because greaterThan is not implemented for Strings.