Class IgnitePredicate2X<E1,​E2>

    • Constructor Detail

      • IgnitePredicate2X

        public IgnitePredicate2X()
    • Method Detail

      • apply

        public boolean apply​(E1 e1,
                             E2 e2)
        Predicate body.
        Specified by:
        apply in interface IgniteBiPredicate<E1,​E2>
        Parameters:
        e1 - First parameter.
        e2 - Second parameter.
        Returns:
        Return value.
      • applyx

        public abstract boolean applyx​(E1 e1,
                                       E2 e2)
                                throws IgniteCheckedException
        Predicate body that can throw IgniteCheckedException.
        Parameters:
        e1 - First bound free variable, i.e. the element the predicate is called or closed on.
        e2 - Second bound free variable, i.e. the element the predicate is called or closed on.
        Returns:
        Return value.
        Throws:
        IgniteCheckedException - Thrown in case of any error condition inside of the predicate.