Cadeia de domínio maior

Existe alguma maneira de encontrar tudo (ou apenas o próximo)RealmObjects com Strings lexicograficamente maiores que o alvo?

Algo como

MyEntry next = realm.where(MyEntry.class)
        .greaterThan("name", current)
        .findAllSorted("name")
        .first();

que não funcionou, porquegreaterThan não está implementado paraStrings.

questionAnswers(1)

yourAnswerToTheQuestion