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 class
Predicate.EQ
A predicate that includes only a single field with the provided number.static class
Predicate.GT
A predicate that includes fields that are greater than the provider number.static class
Predicate.LT
A predicate that includes fields that are lesser than the provider number.static class
Predicate.NOTEQ
A predicate that includes all fields except the provided number.static class
Predicate.NOTRANGE
The opposite ofPredicate.RANGE
.static class
Predicate.RANGE
A 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 Predicate
Predicate.EQ. create(java.lang.String[] args)
Predicate
Predicate.Factory. create(java.lang.String[] args)
Creates a new predicate based from the args.Predicate
Predicate.GT. create(java.lang.String[] args)
Predicate
Predicate.LT. create(java.lang.String[] args)
Predicate
Predicate.NOTEQ. create(java.lang.String[] args)
Predicate
Predicate.NOTRANGE. create(java.lang.String[] args)
Predicate
Predicate.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)
-