Uses of Interface
io.protostuff.runtime.Predicate
-
Packages that use Predicate Package Description io.protostuff.runtime -
-
Uses of Predicate in io.protostuff.runtime
Classes in io.protostuff.runtime that implement Predicate Modifier and Type Class Description static classPredicate.EQA predicate that includes only a single field with the provided number.static classPredicate.GTA predicate that includes fields that are greater than the provider number.static classPredicate.LTA predicate that includes fields that are lesser than the provider number.static classPredicate.NOTEQA predicate that includes all fields except the provided number.static classPredicate.NOTRANGEThe opposite ofPredicate.RANGE.static classPredicate.RANGEA predicate that includes fields if they are within range of the provided numbers, min and max.Methods in io.protostuff.runtime that return Predicate Modifier and Type Method Description PredicatePredicate.EQ. create(java.lang.String[] args)PredicatePredicate.Factory. create(java.lang.String[] args)Creates a new predicate based from the args.PredicatePredicate.GT. create(java.lang.String[] args)PredicatePredicate.LT. create(java.lang.String[] args)PredicatePredicate.NOTEQ. create(java.lang.String[] args)PredicatePredicate.NOTRANGE. create(java.lang.String[] args)PredicatePredicate.RANGE. create(java.lang.String[] args)Methods in io.protostuff.runtime with parameters of type Predicate Modifier and Type Method Description (package private) static <T> java.util.HashMap<java.lang.String,Field<T>>RuntimeView. copyAndExclude(java.lang.Class<? super T> typeClass, java.util.List<Field<T>> fields, Predicate predicate)
-