@FunctionalInterface interface IntPredicate

Represents a predicate (boolean-valued function) of one int-valued argument. This is the int-consuming primitive type specialization of Predicate.

This is a functional interface whose functional method is test(int).

Summary

Public methods
open IntPredicate!

and(other: IntPredicate!)

Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.

open IntPredicate!

negate()

Returns a predicate that represents the logical negation of this predicate.

open IntPredicate!

or(other: IntPredicate!)

Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.

abstract Boolean

test(value: Int)

Evaluates this predicate on the given argument.

Public methods

and

open fun and(other: IntPredicate!): IntPredicate!

Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. When evaluating the composed predicate, if this predicate is false, then the 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 other predicate will not be evaluated.

Parameters
other IntPredicate!: a predicate that will be logically-ANDed with this predicate
Return
IntPredicate! a composed predicate that represents the short-circuiting logical AND of this predicate and the other predicate
Exceptions
java.lang.NullPointerException if other is null

negate

open fun negate(): IntPredicate!

Returns a predicate that represents the logical negation of this predicate.

Return
IntPredicate! a predicate that represents the logical negation of this predicate

or

open fun or(other: IntPredicate!): IntPredicate!

Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. When evaluating the composed predicate, if this predicate is true, then the 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 other predicate will not be evaluated.

Parameters
other IntPredicate!: a predicate that will be logically-ORed with this predicate
Return
IntPredicate! a composed predicate that represents the short-circuiting logical OR of this predicate and the other predicate
Exceptions
java.lang.NullPointerException if other is null

test

abstract fun test(value: Int): Boolean

Evaluates this predicate on the given argument.

Parameters
value Int: the input argument
Return
Boolean true if the input argument matches the predicate, otherwise false

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.