All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.function.FunctionEx Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2008-2024, Hazelcast, Inc. 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 com.hazelcast.function;

import com.hazelcast.internal.util.ExceptionUtil;
import com.hazelcast.jet.impl.util.Util;
import com.hazelcast.security.impl.function.SecuredFunction;

import java.io.Serializable;
import java.util.function.Function;

/**
 * {@code Serializable} variant of {@link Function java.util.function.Function}
 * which declares checked exception.
 *
 * @param  the type of the input to the function
 * @param  the type of the result of the function
 *
 * @since 4.0
 */
@FunctionalInterface
public interface FunctionEx extends Function, Serializable, SecuredFunction {

    /**
     * Exception-declaring version of {@link Function#apply}.
     * @throws Exception in case of any exceptional case
     */
    R applyEx(T t) throws Exception;

    @Override
    default R apply(T t) {
        try {
            return applyEx(t);
        } catch (Exception e) {
            throw ExceptionUtil.sneakyThrow(e);
        }
    }

    /**
     * {@code Serializable} variant of {@link Function#identity()
     * java.util.function.Function#identity()}.
     * @param  the type of the input and output objects to the function
     */
    @SuppressWarnings("unchecked")
    static  FunctionEx identity() {
        return Util.Identity.INSTANCE;
    }

    /**
     * Enforces that the return type is FunctionEx, to be used to wrap some expressions without casting.
     */
    static  FunctionEx unchecked(FunctionEx function) {
        return function;
    }

    /**
     * {@code Serializable} variant of {@link Function#compose(Function)
     * java.util.function.Function#compose(Function)}.
     * @param  the type of input to the {@code before} function, and to the
     *           composed function
     */
    default  FunctionEx compose(FunctionEx before) {
        return new FunctionsImpl.ComposedFunctionEx<>(before, this);
    }

    /**
     * {@code Serializable} variant of {@link Function#andThen(Function)
     * java.util.function.Function#andThen(Function)}.
     * @param  the type of output of the {@code after} function, and of the
     *           composed function
     */
    default  FunctionEx andThen(FunctionEx after) {
        return new FunctionsImpl.ComposedFunctionEx<>(this, after);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy