Uses of Class
io.atomix.utils.misc.Match
Packages that use Match
-
Uses of Match in io.atomix.utils.misc
Fields in io.atomix.utils.misc declared as MatchModifier and TypeFieldDescriptionstatic final MatchMatch.ANYstatic final MatchMatch.NOT_NULLstatic final MatchMatch.NULLMethods in io.atomix.utils.misc that return MatchModifier and TypeMethodDescriptionstatic <T> Match<T>Match.any()Returns a Match that matches any value including null.static <T> Match<T>Match.ifNotNull()Returns a Match that matches all non-null values.static <T> Match<T>Match.ifNotValue(T value) Returns a Match that matches any value except the specified value.static <T> Match<T>Match.ifNull()Returns a Match that matches null values.static <T> Match<T>Match.ifValue(T value) Returns a Match that only matches the specified value.<V> Match<V>Maps this instance to a Match of another type.