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

io.github.theangrydev.businessflows.WithOptional Maven / Gradle / Ivy

/*
 * Copyright 2016 Liam Williams .
 *
 * This file is part of business-flows.
 *
 * 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 io.github.theangrydev.businessflows;

import java.util.Optional;
import java.util.function.Consumer;
import java.util.function.Supplier;

import static java.lang.String.format;

/**
 * This class provides convenience methods for accessing an {@link Optional} that would otherwise be obtained by calling
 * the {@link WithOptional#toOptional()} method.
 *
 * @param  The type of content that may be held
 */
@FunctionalInterface
public interface WithOptional {

    /**
     * @return The {@link Optional} {@link Content}
     */
    Optional toOptional();

    /**
     * @return If the {@link Content} is present then the {@link Content}, else an {@link IllegalStateException}
     * @throws IllegalStateException If the underlying {@link Content} is not present
     */
    default Content get() {
        return orElseThrow(() -> new IllegalStateException(format("Not present. This is: '%s'.", this)));
    }

    /**
     * @param alternative The result if the {@link Content} is not present
     * @return If {@link Content} is present then the {@link Content}, else the given alternative
     */
    default Content orElse(Content alternative) {
        return toOptional().orElse(alternative);
    }

    /**
     * @param alternativeSupplier The supplier of the alternative result if the {@link Content} is not present
     * @return If the {@link Content} is present then the {@link Content}, else the given alternative
     */
    default Content orElseGet(Supplier alternativeSupplier) {
        return toOptional().orElseGet(alternativeSupplier);
    }

    /**
     * Take a look at the content (if it is present).
     *
     * @param consumer What to do if the {@link Content} is present
     */
    default void ifPresent(Consumer consumer) {
        toOptional().ifPresent(consumer);
    }

    /**
     * @param exceptionSupplier The supplier of the exception to be thrown if the {@link Content} is not present
     * @param                The type of {@link Exception} that will be thrown if the {@link Content} is not present
     * @return The {@link Content} if the {@link Content} is present
     * @throws X If the {@link Content} is not present
     */
    default  Content orElseThrow(Supplier exceptionSupplier) throws X {
        return toOptional().orElseThrow(exceptionSupplier);
    }

    /**
     * @return true if the {@link Content} is present, false otherwise.
     */
    default boolean isPresent() {
        return toOptional().isPresent();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy