Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BooleanFunction (0.11 sec)

  1. src/main/java/org/codelibs/fess/util/BooleanFunction.java

     * Represents a function that accepts one argument and produces a boolean result.
     * @param <T> the type of the input to the function
     */
    @FunctionalInterface
    public interface BooleanFunction<T> {
        /**
         * Applies this function to the given argument.
         * @param t the function argument
         * @return the function result
         */
        boolean apply(T t);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top