Java tutorial
/* * Copyright (c) 2016 Gridtec. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package at.gridtec.lambda4j.function.tri.obj; import at.gridtec.lambda4j.Lambda; import at.gridtec.lambda4j.consumer.ThrowableCharConsumer; import at.gridtec.lambda4j.consumer.tri.obj.ThrowableObjBiShortConsumer; import at.gridtec.lambda4j.core.exception.ThrownByFunctionalInterfaceException; import at.gridtec.lambda4j.core.util.ThrowableUtils; import at.gridtec.lambda4j.function.ThrowableBooleanFunction; import at.gridtec.lambda4j.function.ThrowableByteFunction; import at.gridtec.lambda4j.function.ThrowableCharFunction; import at.gridtec.lambda4j.function.ThrowableDoubleFunction; import at.gridtec.lambda4j.function.ThrowableFloatFunction; import at.gridtec.lambda4j.function.ThrowableFunction; import at.gridtec.lambda4j.function.ThrowableIntFunction; import at.gridtec.lambda4j.function.ThrowableLongFunction; import at.gridtec.lambda4j.function.ThrowableShortFunction; import at.gridtec.lambda4j.function.bi.conversion.ThrowableBiShortToCharFunction; import at.gridtec.lambda4j.function.bi.obj.ThrowableObjShortToCharFunction; import at.gridtec.lambda4j.function.conversion.ThrowableBooleanToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableByteToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToByteFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToDoubleFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToFloatFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToIntFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToLongFunction; import at.gridtec.lambda4j.function.conversion.ThrowableCharToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableDoubleToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableFloatToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableIntToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableLongToShortFunction; import at.gridtec.lambda4j.function.conversion.ThrowableShortToCharFunction; import at.gridtec.lambda4j.function.to.ThrowableToCharFunction; import at.gridtec.lambda4j.function.to.ThrowableToShortFunction; import at.gridtec.lambda4j.function.tri.ThrowableTriFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriBooleanToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriByteToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriDoubleToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriFloatToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriIntToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriLongToCharFunction; import at.gridtec.lambda4j.function.tri.conversion.ThrowableTriShortToCharFunction; import at.gridtec.lambda4j.function.tri.to.ThrowableToCharTriFunction; import at.gridtec.lambda4j.operator.ternary.ThrowableCharTernaryOperator; import at.gridtec.lambda4j.operator.unary.ThrowableCharUnaryOperator; import at.gridtec.lambda4j.operator.unary.ThrowableShortUnaryOperator; import at.gridtec.lambda4j.predicate.ThrowableCharPredicate; import at.gridtec.lambda4j.predicate.tri.obj.ThrowableObjBiShortPredicate; import org.apache.commons.lang3.tuple.Triple; import javax.annotation.Nonnegative; import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.util.Map; import java.util.Objects; import java.util.concurrent.ConcurrentHashMap; import java.util.function.Function; /** * Represents an operation that accepts one object-valued and two {@code short}-valued input arguments and produces a * {@code char}-valued result which is able to throw any {@link Throwable}. * This is a (reference, short, short) specialization of {@link ThrowableTriFunction}. * <p> * This is a {@link FunctionalInterface} whose functional method is {@link #applyAsCharThrows(Object, short, short)}. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @see ThrowableTriFunction */ @SuppressWarnings("unused") @FunctionalInterface public interface ThrowableObjBiShortToCharFunction<T, X extends Throwable> extends Lambda { /** * Constructs a {@link ThrowableObjBiShortToCharFunction} based on a lambda expression or a method reference. * Thereby the given lambda expression or method reference is returned on an as-is basis to implicitly transform it * to the desired type. With this method, it is possible to ensure that correct type is used from lambda expression * or method reference. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param expression A lambda expression or (typically) a method reference, e.g. {@code this::method} * @return A {@code ThrowableObjBiShortToCharFunction} from given lambda expression or method reference. * @implNote This implementation allows the given argument to be {@code null}, but only if {@code null} given, * {@code null} will be returned. * @see <a href="https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html#syntax">Lambda * Expression</a> * @see <a href="https://docs.oracle.com/javase/tutorial/java/javaOO/methodreferences.html">Method Reference</a> */ static <T, X extends Throwable> ThrowableObjBiShortToCharFunction<T, X> of( @Nullable final ThrowableObjBiShortToCharFunction<T, X> expression) { return expression; } /** * Calls the given {@link ThrowableObjBiShortToCharFunction} with the given arguments and returns its result. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param function The function to be called * @param t The first argument to the function * @param value1 The second argument to the function * @param value2 The third argument to the function * @return The result from the given {@code ThrowableObjBiShortToCharFunction}. * @throws NullPointerException If given argument is {@code null} * @throws X Any throwable from this functions action */ static <T, X extends Throwable> char call( @Nonnull final ThrowableObjBiShortToCharFunction<? super T, ? extends X> function, T t, short value1, short value2) throws X { Objects.requireNonNull(function); return function.applyAsCharThrows(t, value1, value2); } /** * Creates a {@link ThrowableObjBiShortToCharFunction} which uses the {@code first} parameter of this one as * argument for the given {@link ThrowableToCharFunction}. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param function The function which accepts the {@code first} parameter of this one * @return Creates a {@code ThrowableObjBiShortToCharFunction} which uses the {@code first} parameter of this one as * argument for the given {@code ThrowableToCharFunction}. * @throws NullPointerException If given argument is {@code null} */ @Nonnull static <T, X extends Throwable> ThrowableObjBiShortToCharFunction<T, X> onlyFirst( @Nonnull final ThrowableToCharFunction<? super T, ? extends X> function) { Objects.requireNonNull(function); return (t, value1, value2) -> function.applyAsCharThrows(t); } /** * Creates a {@link ThrowableObjBiShortToCharFunction} which uses the {@code second} parameter of this one as * argument for the given {@link ThrowableShortToCharFunction}. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param function The function which accepts the {@code second} parameter of this one * @return Creates a {@code ThrowableObjBiShortToCharFunction} which uses the {@code second} parameter of this one * as argument for the given {@code ThrowableShortToCharFunction}. * @throws NullPointerException If given argument is {@code null} */ @Nonnull static <T, X extends Throwable> ThrowableObjBiShortToCharFunction<T, X> onlySecond( @Nonnull final ThrowableShortToCharFunction<? extends X> function) { Objects.requireNonNull(function); return (t, value1, value2) -> function.applyAsCharThrows(value1); } /** * Creates a {@link ThrowableObjBiShortToCharFunction} which uses the {@code third} parameter of this one as * argument for the given {@link ThrowableShortToCharFunction}. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param function The function which accepts the {@code third} parameter of this one * @return Creates a {@code ThrowableObjBiShortToCharFunction} which uses the {@code third} parameter of this one as * argument for the given {@code ThrowableShortToCharFunction}. * @throws NullPointerException If given argument is {@code null} */ @Nonnull static <T, X extends Throwable> ThrowableObjBiShortToCharFunction<T, X> onlyThird( @Nonnull final ThrowableShortToCharFunction<? extends X> function) { Objects.requireNonNull(function); return (t, value1, value2) -> function.applyAsCharThrows(value2); } /** * Creates a {@link ThrowableObjBiShortToCharFunction} which always returns a given value. * * @param <T> The type of the first argument to the function * @param <X> The type of the throwable to be thrown by this function * @param ret The return value for the constant * @return A {@code ThrowableObjBiShortToCharFunction} which always returns a given value. */ @Nonnull static <T, X extends Throwable> ThrowableObjBiShortToCharFunction<T, X> constant(char ret) { return (t, value1, value2) -> ret; } /** * Applies this function to the given arguments. * * @param t The first argument to the function * @param value1 The second argument to the function * @param value2 The third argument to the function * @return The return value from the function, which is its result. * @throws X Any throwable from this functions action */ char applyAsCharThrows(T t, short value1, short value2) throws X; /** * Applies this function partially to some arguments of this one, producing a {@link ThrowableBiShortToCharFunction} * as result. * * @param t The first argument to this function used to partially apply this function * @return A {@code ThrowableBiShortToCharFunction} that represents this function partially applied the some * arguments. */ @Nonnull default ThrowableBiShortToCharFunction<X> papplyAsCharThrows(T t) { return (value1, value2) -> this.applyAsCharThrows(t, value1, value2); } /** * Applies this function partially to some arguments of this one, producing a {@link ThrowableShortToCharFunction} * as result. * * @param t The first argument to this function used to partially apply this function * @param value1 The second argument to this function used to partially apply this function * @return A {@code ThrowableShortToCharFunction} that represents this function partially applied the some * arguments. */ @Nonnull default ThrowableShortToCharFunction<X> papplyAsCharThrows(T t, short value1) { return (value2) -> this.applyAsCharThrows(t, value1, value2); } /** * Applies this function partially to some arguments of this one, producing a {@link * ThrowableObjShortToCharFunction} as result. * * @param value1 The second argument to this function used to partially apply this function * @return A {@code ThrowableObjShortToCharFunction} that represents this function partially applied the some * arguments. */ @Nonnull default ThrowableObjShortToCharFunction<T, X> papplyAsCharThrows(short value1) { return (t, value2) -> this.applyAsCharThrows(t, value1, value2); } /** * Applies this function partially to some arguments of this one, producing a {@link ThrowableToCharFunction} as * result. * * @param value1 The second argument to this function used to partially apply this function * @param value2 The third argument to this function used to partially apply this function * @return A {@code ThrowableToCharFunction} that represents this function partially applied the some arguments. */ @Nonnull default ThrowableToCharFunction<T, X> papplyAsCharThrows(short value1, short value2) { return (t) -> this.applyAsCharThrows(t, value1, value2); } /** * Returns the number of arguments for this function. * * @return The number of arguments for this function. * @implSpec The default implementation always returns {@code 3}. */ @Nonnegative default int arity() { return 3; } /** * Returns a composed {@link ThrowableToCharTriFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * * @param <A> The type of the argument to the first given function, and of composed function * @param <B> The type of the argument to the second given function, and of composed function * @param <C> The type of the argument to the third given function, and of composed function * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableToCharTriFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is able to handle every type. */ @Nonnull default <A, B, C> ThrowableToCharTriFunction<A, B, C, X> compose( @Nonnull final ThrowableFunction<? super A, ? extends T, ? extends X> before1, @Nonnull final ThrowableToShortFunction<? super B, ? extends X> before2, @Nonnull final ThrowableToShortFunction<? super C, ? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (a, b, c) -> applyAsCharThrows(before1.applyThrows(a), before2.applyAsShortThrows(b), before3.applyAsShortThrows(c)); } /** * Returns a composed {@link ThrowableTriBooleanToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. This method is just convenience, to provide the ability * to execute an operation which accepts {@code boolean} input, before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriBooleanToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * boolean}. */ @Nonnull default ThrowableTriBooleanToCharFunction<X> composeFromBoolean( @Nonnull final ThrowableBooleanFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableBooleanToShortFunction<? extends X> before2, @Nonnull final ThrowableBooleanToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriByteToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. * This method is just convenience, to provide the ability to execute an operation which accepts {@code byte} input, * before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriByteToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * byte}. */ @Nonnull default ThrowableTriByteToCharFunction<X> composeFromByte( @Nonnull final ThrowableByteFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableByteToShortFunction<? extends X> before2, @Nonnull final ThrowableByteToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableCharTernaryOperator} that first applies the {@code before} functions to * its input, and then applies this function to the result. * This method is just convenience, to provide the ability to execute an operation which accepts {@code char} input, * before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableCharTernaryOperator} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * char}. */ @Nonnull default ThrowableCharTernaryOperator<X> composeFromChar( @Nonnull final ThrowableCharFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableCharToShortFunction<? extends X> before2, @Nonnull final ThrowableCharToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriDoubleToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. This method is just convenience, to provide the ability * to execute an operation which accepts {@code double} input, before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriDoubleToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * double}. */ @Nonnull default ThrowableTriDoubleToCharFunction<X> composeFromDouble( @Nonnull final ThrowableDoubleFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableDoubleToShortFunction<? extends X> before2, @Nonnull final ThrowableDoubleToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriFloatToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. This method is just convenience, to provide the ability to * execute an operation which accepts {@code float} input, before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriFloatToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * float}. */ @Nonnull default ThrowableTriFloatToCharFunction<X> composeFromFloat( @Nonnull final ThrowableFloatFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableFloatToShortFunction<? extends X> before2, @Nonnull final ThrowableFloatToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriIntToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. * This method is just convenience, to provide the ability to execute an operation which accepts {@code int} input, * before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriIntToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * int}. */ @Nonnull default ThrowableTriIntToCharFunction<X> composeFromInt( @Nonnull final ThrowableIntFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableIntToShortFunction<? extends X> before2, @Nonnull final ThrowableIntToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriLongToCharFunction} that first applies the {@code before} functions to * its input, and then applies this function to the result. * This method is just convenience, to provide the ability to execute an operation which accepts {@code long} input, * before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second function to apply before this function is applied * @param before3 The third function to apply before this function is applied * @return A composed {@code ThrowableTriLongToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * long}. */ @Nonnull default ThrowableTriLongToCharFunction<X> composeFromLong( @Nonnull final ThrowableLongFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableLongToShortFunction<? extends X> before2, @Nonnull final ThrowableLongToShortFunction<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableTriShortToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. This method is just convenience, to provide the ability to * execute an operation which accepts {@code short} input, before this primitive function is executed. * * @param before1 The first function to apply before this function is applied * @param before2 The second operator to apply before this function is applied * @param before3 The third operator to apply before this function is applied * @return A composed {@code ThrowableTriShortToCharFunction} that first applies the {@code before} functions to its * input, and then applies this function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to handle primitive values. In this case this is {@code * short}. */ @Nonnull default ThrowableTriShortToCharFunction<X> composeFromShort( @Nonnull final ThrowableShortFunction<? extends T, ? extends X> before1, @Nonnull final ThrowableShortUnaryOperator<? extends X> before2, @Nonnull final ThrowableShortUnaryOperator<? extends X> before3) { Objects.requireNonNull(before1); Objects.requireNonNull(before2); Objects.requireNonNull(before3); return (value1, value2, value3) -> applyAsCharThrows(before1.applyThrows(value1), before2.applyAsShortThrows(value2), before3.applyAsShortThrows(value3)); } /** * Returns a composed {@link ThrowableObjBiShortFunction} that first applies this function to its input, and then * applies the {@code after} function to the result. * * @param <S> The type of return value from the {@code after} function, and of the composed function * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortFunction} that first applies this function to its input, and then * applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is able to return every type. */ @Nonnull default <S> ThrowableObjBiShortFunction<T, S, X> andThen( @Nonnull final ThrowableCharFunction<? extends S, ? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortPredicate} that first applies this function to its input, and then * applies the {@code after} predicate to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code boolean}. * * @param after The predicate to apply after this function is applied * @return A composed {@code ThrowableObjBiShortPredicate} that first applies this function to its input, and then * applies the {@code after} predicate to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * boolean}. */ @Nonnull default ThrowableObjBiShortPredicate<T, X> andThenToBoolean( @Nonnull final ThrowableCharPredicate<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.testThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToByteFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code byte}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToByteFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * byte}. */ @Nonnull default ThrowableObjBiShortToByteFunction<T, X> andThenToByte( @Nonnull final ThrowableCharToByteFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsByteThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToCharFunction} that first applies this function to its input, and * then applies the {@code after} operator to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code char}. * * @param after The operator to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToCharFunction} that first applies this function to its input, and * then applies the {@code after} operator to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * char}. */ @Nonnull default ThrowableObjBiShortToCharFunction<T, X> andThenToChar( @Nonnull final ThrowableCharUnaryOperator<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsCharThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToDoubleFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code double}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToDoubleFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * double}. */ @Nonnull default ThrowableObjBiShortToDoubleFunction<T, X> andThenToDouble( @Nonnull final ThrowableCharToDoubleFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsDoubleThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToFloatFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code float}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToFloatFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * float}. */ @Nonnull default ThrowableObjBiShortToFloatFunction<T, X> andThenToFloat( @Nonnull final ThrowableCharToFloatFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsFloatThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToIntFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code int}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToIntFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * int}. */ @Nonnull default ThrowableObjBiShortToIntFunction<T, X> andThenToInt( @Nonnull final ThrowableCharToIntFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsIntThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToLongFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code long}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToLongFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * long}. */ @Nonnull default ThrowableObjBiShortToLongFunction<T, X> andThenToLong( @Nonnull final ThrowableCharToLongFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsLongThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortToShortFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. This method is just convenience, to provide the ability to * transform this primitive function to an operation returning {@code short}. * * @param after The function to apply after this function is applied * @return A composed {@code ThrowableObjBiShortToShortFunction} that first applies this function to its input, and * then applies the {@code after} function to the result. * @throws NullPointerException If given argument is {@code null} * @implSpec The input argument of this method is a able to return primitive values. In this case this is {@code * short}. */ @Nonnull default ThrowableObjBiShortToShortFunction<T, X> andThenToShort( @Nonnull final ThrowableCharToShortFunction<? extends X> after) { Objects.requireNonNull(after); return (t, value1, value2) -> after.applyAsShortThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a composed {@link ThrowableObjBiShortConsumer} that fist applies this function to its input, and then * consumes the result using the given {@link ThrowableCharConsumer}. * * @param consumer The operation which consumes the result from this operation * @return A composed {@code ThrowableObjBiShortConsumer} that first applies this function to its input, and then * consumes the result using the given {@code ThrowableCharConsumer}. * @throws NullPointerException If given argument is {@code null} */ @Nonnull default ThrowableObjBiShortConsumer<T, X> consume(@Nonnull final ThrowableCharConsumer<? extends X> consumer) { Objects.requireNonNull(consumer); return (t, value1, value2) -> consumer.acceptThrows(applyAsCharThrows(t, value1, value2)); } /** * Returns a memoized (caching) version of this {@link ThrowableObjBiShortToCharFunction}. Whenever it is called, * the mapping between the input parameters and the return value is preserved in a cache, making subsequent calls * returning the memoized value instead of computing the return value again. * <p> * Unless the function and therefore the used cache will be garbage-collected, it will keep all memoized values * forever. * * @return A memoized (caching) version of this {@code ThrowableObjBiShortToCharFunction}. * @implSpec This implementation does not allow the input parameters or return value to be {@code null} for the * resulting memoized function, as the cache used internally does not permit {@code null} keys or values. * @implNote The returned memoized function can be safely used concurrently from multiple threads which makes it * thread-safe. */ @Nonnull default ThrowableObjBiShortToCharFunction<T, X> memoized() { if (isMemoized()) { return this; } else { final Map<Triple<T, Short, Short>, Character> cache = new ConcurrentHashMap<>(); final Object lock = new Object(); return (ThrowableObjBiShortToCharFunction<T, X> & Memoized) (t, value1, value2) -> { final char returnValue; synchronized (lock) { returnValue = cache.computeIfAbsent(Triple.of(t, value1, value2), ThrowableFunction .of(key -> applyAsCharThrows(key.getLeft(), key.getMiddle(), key.getRight()))); } return returnValue; }; } } /** * Returns a composed {@link ThrowableTriFunction} which represents this {@link ThrowableObjBiShortToCharFunction}. * Thereby the primitive input argument for this function is autoboxed. This method provides the possibility to use * this {@code ThrowableObjBiShortToCharFunction} with methods provided by the {@code JDK}. * * @return A composed {@code ThrowableTriFunction} which represents this {@code ThrowableObjBiShortToCharFunction}. */ @Nonnull default ThrowableTriFunction<T, Short, Short, Character, X> boxed() { return this::applyAsCharThrows; } /** * Returns a composed {@link ObjBiShortToCharFunction} that applies this function to its input and nests the thrown * {@link Throwable} from it. The {@code Throwable} is nested (wrapped) in a {@link * ThrownByFunctionalInterfaceException}, which is constructed from the thrown {@code Throwable}s message and the * thrown {@code Throwable} itself. * * @return A composed {@link ObjBiShortToCharFunction} that applies this function to its input and nests the thrown * {@code Throwable} from it. * @implNote If thrown {@code Throwable} is of type {@link Error} it is thrown as-is and thus not nested. * @see #nestWith(Function) * @see ThrownByFunctionalInterfaceException */ @Nonnull default ObjBiShortToCharFunction<T> nest() { return nestWith(throwable -> new ThrownByFunctionalInterfaceException(throwable.getMessage(), throwable)); } /** * Returns a composed {@link ObjBiShortToCharFunction} that applies this function to its input and nests the thrown * {@link Throwable} from it using {@code mapper} operation. Thereby {@code mapper} may modify the thrown {@code * Throwable}, regarding its implementation, and returns it nested (wrapped) in a {@link RuntimeException}. * * @param mapper The operation to map the thrown {@code Throwable} to {@code RuntimeException} * @return A composed {@link ObjBiShortToCharFunction} that applies this function to its input and nests the thrown * {@code Throwable} from it using {@code mapper} operation. * @throws NullPointerException If given argument is {@code null} * @implNote If thrown {@code Throwable} is of type {@link Error} it is thrown as-is and thus not nested. * @see #nest() */ @Nonnull default ObjBiShortToCharFunction<T> nestWith( @Nonnull final Function<? super Throwable, ? extends RuntimeException> mapper) { return recover(throwable -> { throw mapper.apply(throwable); }); } /** * Returns a composed {@link ObjBiShortToCharFunction} that applies this function to its input and sneakily throws * the thrown {@link Throwable} from it, if it is not of type {@link RuntimeException} or {@link Error}. This means * that each throwable thrown from the returned composed function behaves exactly the same as an <em>unchecked</em> * throwable does. As a result, there is no need to handle the throwable of this function in the returned composed * function by either wrapping it in an <em>unchecked</em> throwable or to declare it in the {@code throws} clause, * as it would be done in a non sneaky throwing function. * <p> * What sneaky throwing simply does, is to fake out the compiler and thus it bypasses the principle of * <em>checked</em> throwables. On the JVM (class file) level, all throwables, checked or not, can be thrown * regardless of the {@code throws} clause of methods, which is why this works at all. * <p> * However, when using this method to get a sneaky throwing function variant of this throwable function, the * following advantages, disadvantages and limitations will apply: * <p> * If the calling-code is to handle the sneakily thrown throwable, it is required to add it to the {@code throws} * clause of the method that applies the returned composed function. The compiler will not force the declaration in * the {@code throws} clause anymore. * <p> * If the calling-code already handles the sneakily thrown throwable, the compiler requires it to be added to the * {@code throws} clause of the method that applies the returned composed function. If not added, the compiler will * error that the caught throwable is never thrown in the corresponding {@code try} block. * <p> * If the returned composed function is directly surrounded by a {@code try}-{@code catch} block to catch the * sneakily thrown throwable from it, the compiler will error that the caught throwable is never thrown in the * corresponding {@code try} block. * <p> * In any case, if the throwable is not added to the to the {@code throws} clause of the method that applies the * returned composed function, the calling-code won't be able to catch the throwable by name. It will bubble and * probably be caught in some {@code catch} statement, catching a base type such as {@code try { ... } * catch(RuntimeException e) { ... }} or {@code try { ... } catch(Exception e) { ... }}, but perhaps this is * intended. * <p> * When the called code never throws the specific throwable that it declares, it should obviously be omitted. For * example: {@code new String(byteArr, "UTF-8") throws UnsupportedEncodingException}, but {@code UTF-8} is * guaranteed by the Java specification to be always present. Here, the {@code throws} declaration is a nuisance and * any solution to silence it with minimal boilerplate is welcome. The throwable should therefore be omitted in the * {@code throws} clause of the method that applies the returned composed function. * <p> * With all that mentioned, the following example will demonstrate this methods correct use: * <pre>{@code * // when called with illegal value ClassNotFoundException is thrown * public Class<?> sneakyThrowingFunctionalInterface(final String className) throws ClassNotFoundException { * return ThrowableFunction.of(Class::forName) // create the correct throwable functional interface * .sneakyThrow() // create a non-throwable variant which is able to sneaky throw (this method) * .apply(className); // apply non-throwable variant -> may sneaky throw a throwable * } * * // call the the method which surround the sneaky throwing functional interface * public void callingMethod() { * try { * final Class<?> clazz = sneakyThrowingFunctionalInterface("some illegal class name"); * // ... do something with clazz ... * } catch(ClassNotFoundException e) { * // ... do something with e ... * } * } * }</pre> * In conclusion, this somewhat contentious ability should be used carefully, of course, with the advantages, * disadvantages and limitations described above kept in mind. * * @return A composed {@link ObjBiShortToCharFunction} that applies this function to its input and sneakily throws * the thrown {@link Throwable} from it, unless it is of type {@link RuntimeException} or {@link Error}. * @implNote If thrown {@link Throwable} is of type {@link RuntimeException} or {@link Error}, it is thrown as-is * and thus not sneakily thrown. */ @Nonnull default ObjBiShortToCharFunction<T> sneakyThrow() { return (t, value1, value2) -> { try { return this.applyAsCharThrows(t, value1, value2); } catch (RuntimeException | Error e) { throw e; } catch (Throwable throwable) { throw ThrowableUtils.sneakyThrow(throwable); } }; } /** * Returns a composed {@link ObjBiShortToCharFunction} that first applies this function to its input, and then * applies the {@code recover} operation if a {@link Throwable} is thrown from this one. The {@code recover} * operation is represented by a curried operation which is called with throwable information and same arguments of * this function. * * @param recover The operation to apply if this function throws a {@code Throwable} * @return A composed {@link ObjBiShortToCharFunction} that first applies this function to its input, and then * applies the {@code recover} operation if a {@code Throwable} is thrown from this one. * @throws NullPointerException If given argument or the returned enclosing function is {@code null} * @implSpec The implementation checks that the returned enclosing function from {@code recover} operation is not * {@code null}. If it is, then a {@link NullPointerException} with appropriate message is thrown. * @implNote If thrown {@code Throwable} is of type {@link Error}, it is thrown as-is and thus not passed to {@code * recover} operation. */ @Nonnull default ObjBiShortToCharFunction<T> recover( @Nonnull final Function<? super Throwable, ? extends ObjBiShortToCharFunction<? super T>> recover) { Objects.requireNonNull(recover); return (t, value1, value2) -> { try { return this.applyAsCharThrows(t, value1, value2); } catch (Error e) { throw e; } catch (Throwable throwable) { final ObjBiShortToCharFunction<? super T> function = recover.apply(throwable); Objects.requireNonNull(function, () -> "recover returned null for " + throwable.getClass() + ": " + throwable.getMessage()); return function.applyAsChar(t, value1, value2); } }; } }