io.prometheus.client.Predicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleclient Show documentation
Show all versions of simpleclient Show documentation
Core instrumentation library for the simpleclient.
The newest version!
package io.prometheus.client;
/**
* Replacement for Java 8's {@code java.util.function.Predicate} for compatibility with Java versions < 8.
*/
public interface Predicate {
boolean test(T t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy