Index

A B C D E F G H I L M N O P R S T U W X Z 
All Classes and Interfaces|All Packages

A

accept(E) - Method in class org.wildfly.clustering.function.Consumer.ExceptionLogger
 
accept(Consumer<? super T>, Supplier<? extends T>) - Static method in interface org.wildfly.clustering.function.Runnable
Returns a task that consumes a value from the specified supplier.
acceptAll(Iterable<? extends BiConsumer<? super T, ? super U>>) - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a composite consumer that delegates to zero or more consumers.
acceptAll(Iterable<? extends Consumer<? super V>>) - Static method in interface org.wildfly.clustering.function.Consumer
Returns a composite consumer that delegates to zero or more consumers.
acceptAll(Iterable<? extends DoubleConsumer>) - Static method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a composite consumer that delegates to the specified consumers.
acceptAll(Iterable<? extends IntConsumer>) - Static method in interface org.wildfly.clustering.function.IntConsumer
Returns a composite consumer that delegates to the specified consumers.
acceptAll(Iterable<? extends LongConsumer>) - Static method in interface org.wildfly.clustering.function.LongConsumer
Returns a composite consumer that delegates to the specified consumers.
acceptFormer(Consumer<? super T>) - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a consumer that delegates to a consumer of the first parameter, ignoring the second.
acceptLatter(Consumer<? super U>) - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a consumer that delegates to a consumer of the second parameter, ignoring the first.
always() - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a predicate that always accepts its arguments.
always() - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that always accepts its argument.
ALWAYS - Static variable in interface org.wildfly.clustering.function.BiPredicate
A predicate that always returns true
ALWAYS - Static variable in interface org.wildfly.clustering.function.DoublePredicate
A predicate that always returns true
ALWAYS - Static variable in interface org.wildfly.clustering.function.IntPredicate
A predicate that always returns true
ALWAYS - Static variable in interface org.wildfly.clustering.function.LongPredicate
A predicate that always returns true
ALWAYS - Static variable in interface org.wildfly.clustering.function.Predicate
A predicate that always returns true
and(BiPredicate<? super T, ? super U>) - Method in interface org.wildfly.clustering.function.BiPredicate
 
and(DoublePredicate) - Method in interface org.wildfly.clustering.function.DoublePredicate
 
and(IntPredicate) - Method in interface org.wildfly.clustering.function.IntPredicate
 
and(LongPredicate) - Method in interface org.wildfly.clustering.function.LongPredicate
 
and(Predicate<? super T>) - Method in interface org.wildfly.clustering.function.Predicate
 
and(Predicate<T>, Predicate<U>) - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a binary predicate composed using the conjunction of two unary predicates.
andThen(Runnable) - Method in interface org.wildfly.clustering.function.Runnable
Returns a task that runs the specified task after running this task.
andThen(BiConsumer<? super T, ? super U>) - Method in interface org.wildfly.clustering.function.BiConsumer
 
andThen(Consumer<? super T>) - Method in interface org.wildfly.clustering.function.Consumer
 
andThen(DoubleConsumer) - Method in interface org.wildfly.clustering.function.DoubleConsumer
 
andThen(Function<? super R, ? extends V>) - Method in interface org.wildfly.clustering.function.BiFunction
 
andThen(Function<? super R, ? extends V>) - Method in interface org.wildfly.clustering.function.Function
 
andThen(Function<T, R>) - Method in interface org.wildfly.clustering.function.Callable
Returns a callable whose result is mapped by the specified function.
andThen(IntConsumer) - Method in interface org.wildfly.clustering.function.IntConsumer
 
andThen(LongConsumer) - Method in interface org.wildfly.clustering.function.LongConsumer
 
andThen(UnaryOperator<T>) - Method in interface org.wildfly.clustering.function.BinaryOperator
andThen(UnaryOperator<T>) - Method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that applies the specified operator to the result of this operator.
apply(BiFunction<? super T, ? super T, T>) - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns an operator view of the specified binary function.
apply(Function<? super T, T>) - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator view of the specified function.
applyFormer(Function<T, R>) - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that applies the former parameter to the specified function.
applyFormer(UnaryOperator<T>) - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns an operator that applies the former parameter to the specified operator.
applyLatter(Function<U, R>) - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that applies the latter parameter to the specified function.
applyLatter(UnaryOperator<T>) - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns an operator that applies the latter parameter to the specified operator.

B

BiConsumer<T,U> - Interface in org.wildfly.clustering.function
An enhanced binary consumer.
BiFunction<T,U,R> - Interface in org.wildfly.clustering.function
An enhanced binary function.
BinaryOperator<T> - Interface in org.wildfly.clustering.function
An enhanced binary function.
BiPredicate<T,U> - Interface in org.wildfly.clustering.function
An enhanced binary predicate.
BooleanSupplier - Interface in org.wildfly.clustering.function
An enhanced boolean supplier.
boxed() - Method in interface org.wildfly.clustering.function.BooleanSupplier
Returns a boxed version of this supplier.
boxed() - Method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a boxed version of this consumer.
boxed() - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a boxed version of this supplier.
boxed() - Method in interface org.wildfly.clustering.function.IntConsumer
Returns a boxed version of this consumer.
boxed() - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a boxed version of this supplier.
boxed() - Method in interface org.wildfly.clustering.function.LongConsumer
Returns a boxed version of this consumer.
boxed() - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a boxed version of this supplier.

C

call(Callable<T>, Function<Exception, T>) - Static method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that delegates to the specified caller using the specified exception handler.
Callable<T> - Interface in org.wildfly.clustering.function
An enhanced callable.
close() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that silently closes its object.
close(Consumer<Exception>) - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that silently closes its object using the specified exception handler.
compose(BiFunction<V1, V2, T>) - Method in interface org.wildfly.clustering.function.Consumer
Composes a binary consumer that invokes this consumer using result of the specified binary function.
compose(Function<? super V, ? extends T>) - Method in interface org.wildfly.clustering.function.Function
 
compose(Function<? super V1, ? extends T>, Function<? super V2, ? extends U>) - Method in interface org.wildfly.clustering.function.BiFunction
Returns a composed function that applies the specified functions to each parameter as inputs to this function.
compose(Function<? super V1, T>, Function<? super V2, U>) - Method in interface org.wildfly.clustering.function.BiConsumer
Composes a consumer this consumer using result of the specified mapping functions.
compose(Function<V, T>) - Method in interface org.wildfly.clustering.function.Consumer
Composes a consumer that invokes this consumer using result of the specified function.
compose(Function<V, T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that applies the specified function to its argument before evaluating.
compose(ToDoubleBiFunction<V1, V2>) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Composes a binary consumer that invokes this consumer using result of the specified binary function.
compose(ToDoubleFunction<V>) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Composes a consumer that invokes this consumer using result of the specified function.
compose(ToDoubleFunction<V>) - Method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that applies the specified function to its argument before evaluating.
compose(ToIntBiFunction<V1, V2>) - Method in interface org.wildfly.clustering.function.IntConsumer
Composes a binary consumer that invokes this consumer using result of the specified binary function.
compose(ToIntFunction<V>) - Method in interface org.wildfly.clustering.function.IntConsumer
Composes a consumer that invokes this consumer using result of the specified function.
compose(ToIntFunction<V>) - Method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that applies the specified mapping to its argument before evaluating.
compose(ToLongBiFunction<V1, V2>) - Method in interface org.wildfly.clustering.function.LongConsumer
Composes a binary consumer that invokes this consumer using result of the specified binary function.
compose(ToLongFunction<V>) - Method in interface org.wildfly.clustering.function.LongConsumer
Composes a consumer that invokes this consumer using result of the specified function.
compose(ToLongFunction<V>) - Method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
compose(UnaryOperator<T>) - Method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that applies this operator to the result of the specified operator.
compose(UnaryOperator<T>, UnaryOperator<T>) - Method in interface org.wildfly.clustering.function.BinaryOperator
Returns a composed operator that applies the specified operators to each parameter as inputs to this operator.
compose(BiFunction<V1, V2, T>) - Method in interface org.wildfly.clustering.function.Function
Composes a binary function that invokes this function using result of the specified binary function.
composeAsDouble(DoubleUnaryOperator) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Composes a consumer that invokes this consumer using result of the specified function.
composeAsInt(IntUnaryOperator) - Method in interface org.wildfly.clustering.function.IntConsumer
Composes a consumer that invokes this consumer using result of the specified function.
composeAsLong(LongUnaryOperator) - Method in interface org.wildfly.clustering.function.LongConsumer
Composes a consumer that invokes this consumer using result of the specified function.
composeBinary(BiFunction<V1, V2, T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeDouble(DoubleFunction<T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeDouble(DoubleToIntFunction) - Method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeDouble(DoubleToLongFunction) - Method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeDouble(DoubleUnaryOperator) - Method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeInt(IntFunction<T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeInt(IntToDoubleFunction) - Method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeInt(IntToLongFunction) - Method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeInt(IntUnaryOperator) - Method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeLong(LongFunction<T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeLong(LongToDoubleFunction) - Method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeLong(LongToIntFunction) - Method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
composeLong(LongUnaryOperator) - Method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that applies the specified function to its argument before evaluating.
Consumer<T> - Interface in org.wildfly.clustering.function
An enhanced unary consumer.
Consumer.ExceptionLogger<E> - Class in org.wildfly.clustering.function
A consumer of an exception that logs its parameter.

D

debug() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that logs an exception at the System.Logger.Level.DEBUG level.
DoubleConsumer - Interface in org.wildfly.clustering.function
An enhanced long consumer.
DoublePredicate - Interface in org.wildfly.clustering.function
An enhanced double predicate.
DoubleSupplier - Interface in org.wildfly.clustering.function
Enhanced IntSupplier.

E

empty() - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a consumer that performs no action.
empty() - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that always returns the specified value, ignoring its parameters.
empty() - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that always returns null, ignoring its parameter.
empty() - Static method in interface org.wildfly.clustering.function.Callable
Returns a callable that returns null.
empty() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that performs no action.
empty() - Static method in interface org.wildfly.clustering.function.Function
Returns a function that returns its parameter.
empty() - Static method in interface org.wildfly.clustering.function.Runnable
Returns an empty task.
empty() - Static method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that always returns the specified value.
empty() - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that always returns null, ignoring its parameter.
EMPTY - Static variable in interface org.wildfly.clustering.function.BiConsumer
An empty consumer
EMPTY - Static variable in interface org.wildfly.clustering.function.Consumer
A consumer that does nothing with its parameter
EMPTY - Static variable in interface org.wildfly.clustering.function.DoubleConsumer
Consumer that discards its parameter
EMPTY - Static variable in interface org.wildfly.clustering.function.IntConsumer
Consumer that discards its parameter
EMPTY - Static variable in interface org.wildfly.clustering.function.LongConsumer
Consumer that discards its parameter
EMPTY - Static variable in interface org.wildfly.clustering.function.Runnable
A runner that performs no action.
entry(Function<K, KR>, Function<V, VR>) - Static method in interface org.wildfly.clustering.function.Function
Returns a Map.Entry function from the specified key and value functions.
entry(Predicate<K>, Predicate<V>) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate of a Map.Entry from the specified key and value predicates.
entry(Supplier<K>, Supplier<V>) - Static method in interface org.wildfly.clustering.function.Supplier
Returns a supplier of a Map.Entry from the specified key and value suppliers.
entry(UnaryOperator<K>, UnaryOperator<V>) - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns a Map.Entry function from the specified key and value functions.
equalTo(double) - Static method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
equalTo(int) - Static method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
equalTo(long) - Static method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
equalTo(T) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
error() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that logs an exception at the System.Logger.Level.ERROR level.
EXCEPTION_LOGGER - Static variable in interface org.wildfly.clustering.function.Consumer
A function returning the exception logger for a given level
EXCEPTION_LOGGERS - Static variable in interface org.wildfly.clustering.function.Consumer
A map of exception logging consumers per level
exceptional(Supplier<? extends Exception>) - Static method in interface org.wildfly.clustering.function.Callable
Returns a callable that throws the provided exception.

F

FALSE - Static variable in interface org.wildfly.clustering.function.BooleanSupplier
A supplier that always returns false
former() - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that returns its first parameter.
former() - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that returns its first parameter.
FORMER_IDENTITY - Static variable in interface org.wildfly.clustering.function.BiFunction
An identity function using the former parameter
FORMER_IDENTITY - Static variable in interface org.wildfly.clustering.function.BinaryOperator
An identity function using the former parameter
Function<T,R> - Interface in org.wildfly.clustering.function
An enhanced function.

G

get(Supplier<R>) - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that returns the value returned by the specified supplier, ignoring its parameter.
get(Supplier<R>) - Static method in interface org.wildfly.clustering.function.Function
Returns a function that returns the value returned by the specified supplier, ignoring its parameter.
get(Supplier<T>) - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that returns the value returned by the specified supplier, ignoring its parameter.
get(Supplier<T>) - Static method in interface org.wildfly.clustering.function.Callable
Returns a callable that delegates to the specified supplier.
get(Supplier<T>) - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that returns the result of the specified supplier, ignoring its parameter.
greaterThan(double) - Static method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
greaterThan(int) - Static method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
greaterThan(long) - Static method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
greaterThan(T) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that evaluates to true if and only if the argument is comparatively greater than the specified object.

H

handle(BiConsumer<T, RuntimeException>) - Method in interface org.wildfly.clustering.function.Consumer
Returns a new consumer that delegates to the specified handler in the event of an exception.
handle(BiFunction<T, RuntimeException, R>) - Method in interface org.wildfly.clustering.function.Function
Returns a new function that delegates to this function using the specified exception handler.
handle(BiFunction<T, RuntimeException, T>) - Method in interface org.wildfly.clustering.function.UnaryOperator
Returns a new operator that delegates to this operator using the specified exception handler.
handle(BiPredicate<T, RuntimeException>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a new predicate that delegates to this predicate using the specified exception handler.
handle(Consumer<RuntimeException>) - Method in interface org.wildfly.clustering.function.BiConsumer
Returns a new consumer that delegates to the specified handler in the event of an exception.
handle(Function<RuntimeException, T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a new supplier that delegates to this supplier using the specified exception handler.
handle(Predicate<RuntimeException>) - Method in interface org.wildfly.clustering.function.BooleanSupplier
Returns a new supplier that delegates to this supplier using the specified exception handler.
handle(ToDoubleFunction<RuntimeException>) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a new supplier that delegates to this supplier using the specified exception handler.
handle(ToIntFunction<RuntimeException>) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a new supplier that delegates to this supplier using the specified exception handler.
handle(ToLongFunction<RuntimeException>) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a new supplier that delegates to this supplier using the specified exception handler.
handle(Consumer<RuntimeException>) - Method in interface org.wildfly.clustering.function.Runnable
Returns a new runnable that delegates to the specified handler in the event of an exception.

I

identicalTo(T) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that evaluates to true if and only if the argument is identical to the specified object.
identity() - Static method in interface org.wildfly.clustering.function.Function
Returns a function that returns its parameter.
identity() - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that returns its value.
IDENTITY - Static variable in interface org.wildfly.clustering.function.Function
An identity function that always returns its parameter
IDENTITY - Static variable in interface org.wildfly.clustering.function.UnaryOperator
An identity operator that always returns its parameter
info() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that logs an exception at the System.Logger.Level.INFO level.
IntConsumer - Interface in org.wildfly.clustering.function
An enhanced integer consumer.
IntPredicate - Interface in org.wildfly.clustering.function
An enhanced integer predicate.
IntSupplier - Interface in org.wildfly.clustering.function
Enhanced IntSupplier.

L

latter() - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that returns its second parameter.
latter() - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that returns its second parameter.
LATTER_IDENTITY - Static variable in interface org.wildfly.clustering.function.BiFunction
An identity function using the latter parameter
LATTER_IDENTITY - Static variable in interface org.wildfly.clustering.function.BinaryOperator
An identity function using the latter parameter
lessThan(double) - Static method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
lessThan(int) - Static method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
lessThan(long) - Static method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that evaluates to true if and only if the argument is equals to the specified object.
lessThan(T) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that evaluates to true if and only if the argument is comparatively less than the specified object.
log(System.Logger.Level) - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that logs an exception at the specified level.
LongConsumer - Interface in org.wildfly.clustering.function
An enhanced long consumer.
LongPredicate - Interface in org.wildfly.clustering.function
An enhanced long predicate.
LongSupplier - Interface in org.wildfly.clustering.function
Enhanced LongSupplier.

M

map(Function<T, V>) - Method in interface org.wildfly.clustering.function.Supplier
Deprecated, for removal: This API element is subject to removal in a future version.
MAXIMUM - Static variable in interface org.wildfly.clustering.function.IntSupplier
A supplier that always returns 2147483647.
MAXIMUM - Static variable in interface org.wildfly.clustering.function.LongSupplier
A supplier that always returns 9223372036854775807L.
MINIMUM - Static variable in interface org.wildfly.clustering.function.IntSupplier
A supplier that always returns -2147483648.
MINIMUM - Static variable in interface org.wildfly.clustering.function.LongSupplier
A supplier that always returns -9223372036854775808L.

N

negate() - Method in interface org.wildfly.clustering.function.BiPredicate
 
negate() - Method in interface org.wildfly.clustering.function.BooleanSupplier
Returns a supplier that return this negation of this supplier.
negate() - Method in interface org.wildfly.clustering.function.DoublePredicate
 
negate() - Method in interface org.wildfly.clustering.function.IntPredicate
 
negate() - Method in interface org.wildfly.clustering.function.LongPredicate
 
negate() - Method in interface org.wildfly.clustering.function.Predicate
 
NEGATIVE - Static variable in interface org.wildfly.clustering.function.DoublePredicate
A predicate that returns true if its parameter is less than zero.
NEGATIVE - Static variable in interface org.wildfly.clustering.function.IntPredicate
A predicate that returns true if the parameter is less than zero.
NEGATIVE - Static variable in interface org.wildfly.clustering.function.LongPredicate
A predicate that returns true if its parameter is less than zero.
never() - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a predicate that never accepts its arguments.
never() - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that never accepts its argument.
NEVER - Static variable in interface org.wildfly.clustering.function.BiPredicate
A predicate that always returns false
NEVER - Static variable in interface org.wildfly.clustering.function.DoublePredicate
A predicate that always returns false
NEVER - Static variable in interface org.wildfly.clustering.function.IntPredicate
A predicate that always returns false
NEVER - Static variable in interface org.wildfly.clustering.function.LongPredicate
A predicate that always returns false
NEVER - Static variable in interface org.wildfly.clustering.function.Predicate
A predicate that always returns false
not(Predicate<? super T>) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that evaluates to the negation of the specified predicate.
NULL - Static variable in interface org.wildfly.clustering.function.BiFunction
A function that always returns null.
NULL - Static variable in interface org.wildfly.clustering.function.BinaryOperator
An operator that always returns null.
NULL - Static variable in interface org.wildfly.clustering.function.Callable
A caller that always returns null
NULL - Static variable in interface org.wildfly.clustering.function.Function
A function that always returns null.
NULL - Static variable in interface org.wildfly.clustering.function.Supplier
A supplier that always returns null
NULL - Static variable in interface org.wildfly.clustering.function.UnaryOperator
An operator that always returns null

O

of(boolean) - Static method in interface org.wildfly.clustering.function.BooleanSupplier
Returns a supplier that always returns the specified value.
of(boolean) - Static method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate that always evaluates to the specified result.
of(boolean) - Static method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate that always evaluates to the specified result.
of(boolean) - Static method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate that always evaluates to the specified result.
of(boolean) - Static method in interface org.wildfly.clustering.function.Predicate
Returns a predicate that always evaluates to the specified result.
of(double) - Static method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier of the specified value.
of(int) - Static method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier of the specified value.
of(long) - Static method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier of the specified value.
of(E) - Static method in interface org.wildfly.clustering.function.RuntimeExceptionSupplier
Returns a supplier that always returns the specified exception.
of(Consumer<? super T>, Consumer<? super U>) - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a composite consumer that delegates to a consumer per parameter.
of(R) - Static method in interface org.wildfly.clustering.function.BiFunction
Returns a function that always returns the specified value, ignoring its parameter.
of(R) - Static method in interface org.wildfly.clustering.function.Function
Returns a function that always returns the specified value, ignoring its parameter.
of(T) - Static method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that always returns the specified value, ignoring its parameter.
of(T) - Static method in interface org.wildfly.clustering.function.Callable
Returns a callable that returns the specified value.
of(T) - Static method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that always returns the specified value.
of(T) - Static method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that always returns the specified value, ignoring its parameter.
or(BiPredicate<? super T, ? super U>) - Method in interface org.wildfly.clustering.function.BiPredicate
 
or(DoublePredicate) - Method in interface org.wildfly.clustering.function.DoublePredicate
 
or(IntPredicate) - Method in interface org.wildfly.clustering.function.IntPredicate
 
or(LongPredicate) - Method in interface org.wildfly.clustering.function.LongPredicate
 
or(Predicate<? super T>) - Method in interface org.wildfly.clustering.function.Predicate
 
or(Predicate<T>, Predicate<U>) - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a binary predicate composed using the disjunction of two unary predicates.
orDefault(BiPredicate<T, T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that applies this function if its parameters matches the specified predicate, or returns the value provided by the specified supplier otherwise.
orDefault(BiPredicate<T, U>, Supplier<R>) - Method in interface org.wildfly.clustering.function.BiFunction
Returns a function that applies this function if its parameters matches the specified predicate, or returns the value provided by the specified supplier otherwise.
orDefault(Predicate<T>, Supplier<R>) - Method in interface org.wildfly.clustering.function.Function
Returns a function that applies this function if its parameter matches the specified predicate, or returns the value provided by the specified supplier otherwise.
orDefault(Predicate<T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that applies this function to the value returned by the specified provider if its value does not match the specified predicate.
org.wildfly.clustering.function - package org.wildfly.clustering.function
 

P

POSITIVE - Static variable in interface org.wildfly.clustering.function.DoublePredicate
A predicate that returns true if its parameter is greater than zero.
POSITIVE - Static variable in interface org.wildfly.clustering.function.IntPredicate
A predicate that returns true if the parameter is greater than zero.
POSITIVE - Static variable in interface org.wildfly.clustering.function.LongPredicate
A predicate that returns true if its parameter is greater than zero.
Predicate<T> - Interface in org.wildfly.clustering.function
An enhanced predicate.

R

reverse() - Method in interface org.wildfly.clustering.function.BiConsumer
Returns a consumer that processes this consumer with reversed parameter order.
reverse() - Method in interface org.wildfly.clustering.function.BiFunction
Returns a function that processes this function with reversed parameter order.
reverse() - Method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that processes this function with reversed parameter order.
reverse() - Method in interface org.wildfly.clustering.function.BiPredicate
Returns a predicate that processes this predicate with reversed parameter order.
run(Runnable) - Static method in interface org.wildfly.clustering.function.Callable
Returns a callable that runs the specified runner and returns null.
run(Runnable) - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that runs the specified task, ignoring its parameter.
run(Runnable) - Static method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns null after invoking the specified task.
runAll(Iterable<? extends Runnable>) - Static method in interface org.wildfly.clustering.function.Runnable
Returns a composite runner that runs the specified runners.
Runnable - Interface in org.wildfly.clustering.function
An enhanced runnable.
RuntimeExceptionSupplier<E> - Interface in org.wildfly.clustering.function
Supplies a runtime exception.

S

Supplier<T> - Interface in org.wildfly.clustering.function
An enhanced supplier.

T

testFormer(Predicate<T>) - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a binary predicate from a predicate that tests the first parameter only.
testLatter(Predicate<U>) - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a binary predicate from a predicate that tests the second parameter only.
thenAccept(DoubleConsumer) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a runner that accepts the value returned by this supplier via the specified consumer.
thenAccept(IntConsumer) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a runner that accepts the value returned by this supplier via the specified consumer.
thenAccept(LongConsumer) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a runner that accepts the value returned by this supplier via the specified consumer.
thenAccept(Consumer<T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a Runnable that consumes the supplied value.
thenApply(DoubleFunction<V>) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApply(Function<T, R>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns the value this supplier mapped via the specified function.
thenApply(IntFunction<V>) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApply(LongFunction<V>) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsDouble(DoubleUnaryOperator) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier that applies the specified operator to the value returned by this supplier.
thenApplyAsDouble(IntToDoubleFunction) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsDouble(LongToDoubleFunction) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsDouble(ToDoubleFunction<T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns the value this supplier mapped via the specified function.
thenApplyAsInt(DoubleToIntFunction) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsInt(IntUnaryOperator) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier that applies the specified operator to the value returned by this supplier.
thenApplyAsInt(LongToIntFunction) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsInt(ToIntFunction<T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns the value this supplier mapped via the specified function.
thenApplyAsLong(DoubleToLongFunction) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsLong(IntToLongFunction) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier that applies the specified function to the value returned by this supplier.
thenApplyAsLong(LongUnaryOperator) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier that applies the specified operator to the value returned by this supplier.
thenApplyAsLong(ToLongFunction<T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns the value this supplier mapped via the specified function.
thenReturn(Supplier<R>) - Method in interface org.wildfly.clustering.function.BiConsumer
Returns a function that returns the value from the specified supplier after accepting its parameters via this consumer.
thenReturn(Supplier<R>) - Method in interface org.wildfly.clustering.function.Consumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturn(Supplier<R>) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturn(Supplier<R>) - Method in interface org.wildfly.clustering.function.IntConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturn(Supplier<R>) - Method in interface org.wildfly.clustering.function.LongConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturnDouble(DoubleSupplier) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturnInt(IntSupplier) - Method in interface org.wildfly.clustering.function.IntConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenReturnLong(LongSupplier) - Method in interface org.wildfly.clustering.function.LongConsumer
Returns a function that returns the value from the specified supplier after accepting its parameter via this consumer.
thenTest(DoublePredicate) - Method in interface org.wildfly.clustering.function.DoubleSupplier
Returns a supplier that applies the specified predicate to the value returned by this supplier.
thenTest(IntPredicate) - Method in interface org.wildfly.clustering.function.IntSupplier
Returns a supplier that applies the specified predicate to the value returned by this supplier.
thenTest(LongPredicate) - Method in interface org.wildfly.clustering.function.LongSupplier
Returns a supplier that applies the specified predicate to the value returned by this supplier.
thenTest(Predicate<T>) - Method in interface org.wildfly.clustering.function.Supplier
Returns a supplier that returns the value this supplier mapped via the specified predicate.
thenThrow() - Method in interface org.wildfly.clustering.function.RuntimeExceptionSupplier
Returns a supplier of an arbitrary type that throws the supplied exception.
throwing(BiFunction<String, E, ? extends RuntimeException>) - Static method in interface org.wildfly.clustering.function.BiConsumer
Returns a consumer that wraps an exception as a runtime exception via the specified factory.
throwing(Function<E, ? extends RuntimeException>) - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that wraps an exception as a runtime exception via the specified factory.
TRUE - Static variable in interface org.wildfly.clustering.function.BooleanSupplier
A supplier that always returns true

U

UnaryOperator<T> - Interface in org.wildfly.clustering.function
An enhanced unary operator.

W

warning() - Static method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that logs an exception at the System.Logger.Level.WARNING level.
when(DoublePredicate) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a consumer that conditionally invokes this consumer when allowed by the specified predicate.
when(IntPredicate) - Method in interface org.wildfly.clustering.function.IntConsumer
Returns a consumer that conditionally invokes this consumer when allowed by the specified predicate.
when(LongPredicate) - Method in interface org.wildfly.clustering.function.LongConsumer
Returns a consumer that conditionally invokes this consumer when allowed by the specified predicate.
when(Predicate<T>) - Method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that conditionally invokes this consumer when allowed by the specified predicate.
withDefault(DoublePredicate, DoubleSupplier) - Method in interface org.wildfly.clustering.function.DoubleConsumer
Returns a consumer that accepts the value returned by the specified default provider if its value does not match the specified predicate.
withDefault(IntPredicate, IntSupplier) - Method in interface org.wildfly.clustering.function.IntConsumer
Returns a consumer that accepts the value returned by the specified default provider if its value does not match the specified predicate.
withDefault(LongPredicate, LongSupplier) - Method in interface org.wildfly.clustering.function.LongConsumer
Returns a consumer that accepts the value returned by the specified default provider if its value does not match the specified predicate.
withDefault(Predicate<T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.Consumer
Returns a consumer that accepts the value returned by the specified default provider if its value does not match the specified predicate.
withDefault(Predicate<T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.Function
Returns a function that applies this function to the value returned by the specified provider if its value does not match the specified predicate.
withDefault(Predicate<T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.UnaryOperator
Returns an operator that applies this function if its parameter matches the specified predicate, or returns the value provided by the specified supplier otherwise.
withDefault(Predicate<T>, Supplier<T>, Predicate<T>, Supplier<T>) - Method in interface org.wildfly.clustering.function.BinaryOperator
Returns a function that applies this function to the values returned by the specified providers if its parameters do not match the specified predicates.
withDefault(Predicate<T>, Supplier<T>, Predicate<U>, Supplier<U>) - Method in interface org.wildfly.clustering.function.BiFunction
Returns a function that applies this function to the values returned by the specified providers if its parameters do not match the specified predicates.

X

xor(BiPredicate<? super T, ? super U>) - Method in interface org.wildfly.clustering.function.BiPredicate
Returns a composed predicate that represents a logical XOR of the specified predicate.
xor(DoublePredicate) - Method in interface org.wildfly.clustering.function.DoublePredicate
Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.
xor(IntPredicate) - Method in interface org.wildfly.clustering.function.IntPredicate
Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.
xor(LongPredicate) - Method in interface org.wildfly.clustering.function.LongPredicate
Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.
xor(Predicate<? super T>) - Method in interface org.wildfly.clustering.function.Predicate
Returns a predicate returning the exclusive disjunction of this predicate with the specified predicate.
xor(Predicate<T>, Predicate<U>) - Static method in interface org.wildfly.clustering.function.BiPredicate
Returns a binary predicate composed using the exclusive disjunction of two unary predicates.

Z

ZERO - Static variable in interface org.wildfly.clustering.function.DoublePredicate
A predicate that returns true if its parameter is zero.
ZERO - Static variable in interface org.wildfly.clustering.function.DoubleSupplier
A supplier that always returns zero.
ZERO - Static variable in interface org.wildfly.clustering.function.IntPredicate
A predicate that returns true if the parameter is zero.
ZERO - Static variable in interface org.wildfly.clustering.function.IntSupplier
A supplier that always returns zero.
ZERO - Static variable in interface org.wildfly.clustering.function.LongPredicate
A predicate that returns true if its parameter is zero.
ZERO - Static variable in interface org.wildfly.clustering.function.LongSupplier
A supplier that always returns zero.
A B C D E F G H I L M N O P R S T U W X Z 
All Classes and Interfaces|All Packages