
com.github.tommyettinger.function.ObjPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of funderby Show documentation
Show all versions of funderby Show documentation
Java 8+ functional interfaces for primitive types
The newest version!
package com.github.tommyettinger.function;
/**
* Represents an operation that accepts a single {@code T}-valued argument and
* returns a {@code boolean} result.
*
* This is identical to {@code Predicate} in Java 8, and is present here so environments
* that support lambdas but not Java 8 APIs (such as RoboVM) can use it.
*
* This is a functional interface whose functional method is {@link #test(Object)}.
*/
@FunctionalInterface
public interface ObjPredicate {
/**
* Evaluates this predicate on the given argument.
*
* @param value the input argument
* @return {@code true} if the input argument matches the predicate,
* otherwise {@code false}
*/
boolean test(T value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy