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

com.signalfx.shaded.apache.commons.io.function.IOPredicate Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.signalfx.shaded.apache.commons.io.function;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.Objects;
import java.util.function.Predicate;

/**
 * Like {@link Predicate} but throws {@link IOException}.
 *
 * @param  the type of the input to the predicate
 * @since 2.12.0
 */
@FunctionalInterface
public interface IOPredicate {

    /**
     * Always false.
     *
     * @param  the type of the input to the predicate
     * @return a constant predicate that tests always false.
     */
    @SuppressWarnings("unchecked")
    static  IOPredicate alwaysFalse() {
        return (IOPredicate) Constants.IO_PREDICATE_FALSE;
    }

    /**
     * Always true.
     *
     * @param  the type of the input to the predicate
     * @return a constant predicate that tests always true.
     */
    @SuppressWarnings("unchecked")
    static  IOPredicate alwaysTrue() {
        return (IOPredicate) Constants.IO_PREDICATE_TRUE;
    }

    /**
     * Creates a predicate that tests if two arguments are equal using {@link Objects#equals(Object, Object)}.
     *
     * @param  the type of arguments to the predicate
     * @param target the object to compare for equality, may be {@code null}
     * @return a predicate that tests if two arguments are equal using {@link Objects#equals(Object, Object)}
     */
    static  IOPredicate isEqual(final Object target) {
        return null == target ? Objects::isNull : object -> target.equals(object);
    }

    /**
     * Creates a composed predicate that represents a short-circuiting logical AND of this predicate and another. When
     * evaluating the composed predicate, if this predicate is {@code false}, then the {@code other} predicate is not
     * evaluated.
     *
     * 

* Any exceptions thrown during evaluation of either predicate are relayed to the caller; if evaluation of this * predicate throws an exception, the {@code other} predicate will not be evaluated. *

* * @param other a predicate that will be logically-ANDed with this predicate * @return a composed predicate that represents the short-circuiting logical AND of this predicate and the {@code other} * predicate * @throws NullPointerException if other is null */ default IOPredicate and(final IOPredicate other) { Objects.requireNonNull(other); return t -> test(t) && other.test(t); } /** * Creates a {@link Predicate} for this instance that throws {@link UncheckedIOException} instead of * {@link IOException}. * * @return an UncheckedIOException Predicate. */ default Predicate asPredicate() { return t -> Uncheck.test(this, t); } /** * Creates a predicate that represents the logical negation of this predicate. * * @return a predicate that represents the logical negation of this predicate */ default IOPredicate negate() { return t -> !test(t); } /** * Creates a composed predicate that represents a short-circuiting logical OR of this predicate and another. When * evaluating the composed predicate, if this predicate is {@code true}, then the {@code other} predicate is not * evaluated. * *

* Any exceptions thrown during evaluation of either predicate are relayed to the caller; if evaluation of this * predicate throws an exception, the {@code other} predicate will not be evaluated. *

* * @param other a predicate that will be logically-ORed with this predicate * @return a composed predicate that represents the short-circuiting logical OR of this predicate and the {@code other} * predicate * @throws NullPointerException if other is null */ default IOPredicate or(final IOPredicate other) { Objects.requireNonNull(other); return t -> test(t) || other.test(t); } /** * Evaluates this predicate on the given argument. * * @param t the input argument * @return {@code true} if the input argument matches the predicate, otherwise {@code false} * @throws IOException if an I/O error occurs. */ boolean test(T t) throws IOException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy