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

com.openhtmltopdf.util.LambdaUtil Maven / Gradle / Ivy

Go to download

Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.

There is a newer version: 1.0.10
Show newest version
package com.openhtmltopdf.util;

import java.util.function.Predicate;

public class LambdaUtil {
    private LambdaUtil() { }
    
    public static  Predicate alwaysTrue() {
        return (unused) -> true;
    }
    
    public static  Predicate alwaysFalse() {
        return (unused) -> false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy