Class IntExceptPredicate

  • All Implemented Interfaces:
    IntPredicate

    public class IntExceptPredicate
    extends Object
    implements IntPredicate
    An IntPredicate formed as the difference of two other predicates: it matches an integer if the first operand matches the integer and the second does not
    • Method Detail

      • test

        public boolean test​(int value)
        Ask whether a given value matches this predicate
        Specified by:
        test in interface IntPredicate
        Parameters:
        value - the value to be tested
        Returns:
        true if the value matches; false if it does not
      • getOperands

        public IntPredicate[] getOperands()
        Get the operands
        Returns:
        an array containing the two operands