I'm using
andPredicate = Predicates.and(firstPredicate, secondPredicate);
Now I have to serialize the andPredicate
(as a JsonObject) and need to access the internal list of the used predicates to gain access to the members of each single predicate.
Is there a way to access these?