Class GridPredicate3X<E1,​E2,​E3>

    • Constructor Detail

      • GridPredicate3X

        public GridPredicate3X()
    • Method Detail

      • apply

        public boolean apply​(E1 e1,
                             E2 e2,
                             E3 e3)
        Predicate body.
        Specified by:
        apply in interface GridPredicate3<E1,​E2,​E3>
        Parameters:
        e1 - First bound free variable, i.e. the element the closure is called or closed on.
        e2 - Second bound free variable, i.e. the element the closure is called or closed on.
        e3 - Third bound free variable, i.e. the element the closure is called or closed on.
        Returns:
        Return value.
      • applyx

        public abstract boolean applyx​(E1 e1,
                                       E2 e2,
                                       E3 e3)
                                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.
        e3 - Third 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.