Uses of Class
io.vavr.API.Match.Pattern0
-
Packages that use API.Match.Pattern0 Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples. -
-
Uses of API.Match.Pattern0 in io.vavr
Fields in io.vavr declared as API.Match.Pattern0 Modifier and Type Field Description static API.Match.Pattern0<Tuple0>
Patterns. $Tuple0
private static API.Match.Pattern0<java.lang.Object>
API.Match.Pattern0. ANY
private API.Match.Pattern0<T>
API.Match.Case0. pattern
Methods in io.vavr that return API.Match.Pattern0 Modifier and Type Method Description static <T> API.Match.Pattern0<T>
API. $()
Wildcard pattern, matches any value.static <T> API.Match.Pattern0<T>
API. $(java.util.function.Predicate<? super T> predicate)
Guard pattern, checks if a predicate is satisfied.static <T> API.Match.Pattern0<T>
API. $(T prototype)
Value pattern, checks for equality.static <T> API.Match.Pattern0<List.Nil<T>>
Patterns. $Nil()
static <T> API.Match.Pattern0<Option.None<T>>
Patterns. $None()
static <T> API.Match.Pattern0<T>
API.Match.Pattern0. any()
static <T> API.Match.Pattern0<T>
API.Match.Pattern0. of(java.lang.Class<? super T> type)
Methods in io.vavr with parameters of type API.Match.Pattern0 Modifier and Type Method Description static <T,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern0<T> pattern, java.util.function.Function<? super T,? extends R> f)
static <T,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern0<T> pattern, java.util.function.Supplier<? extends R> supplier)
static <T,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern0<T> pattern, R retVal)
Constructors in io.vavr with parameters of type API.Match.Pattern0 Constructor Description Case0(API.Match.Pattern0<T> pattern, java.util.function.Function<? super T,? extends R> f)
-