Package org.springframework.data.util
Interface Predicates
public interface Predicates
Utility methods to work with
Predicate
s.- Since:
- 2.7
- Author:
- Mark Paluch
-
Field Summary
Modifier and TypeFieldDescription -
Method Summary
-
Field Details
-
IS_ENUM_MEMBER
-
IS_HIBERNATE_MEMBER
-
IS_OBJECT_MEMBER
-
IS_JAVA
-
IS_NATIVE
-
IS_PRIVATE
-
IS_PROTECTED
-
IS_PUBLIC
-
IS_SYNTHETIC
-
IS_STATIC
-
IS_BRIDGE_METHOD
-
-
Method Details
-
isTrue
APredicate
that yields alwaystrue
.- Returns:
- a
Predicate
that yields alwaystrue
.
-
isFalse
APredicate
that yields alwaysfalse
.- Returns:
- a
Predicate
that yields alwaysfalse
.
-
negate
Returns aPredicate
that represents the logical negation ofpredicate
.- Returns:
- a
Predicate
that represents the logical negation ofpredicate
.
-