Class UuidPredicate

  • All Implemented Interfaces:
    java.util.function.Predicate<NodeState>

    public class UuidPredicate
    extends java.lang.Object
    implements java.util.function.Predicate<NodeState>
    A predicate for matching against a list of UUIDs. This predicate holds whenever the NodeState passed to its apply functions has a jcr:uuid property and the value of that property matches any of the UUIDs that has been passed to the predicate's constructor.
    • Constructor Summary

      Constructors 
      Constructor Description
      UuidPredicate​(@NotNull java.lang.String[] uuids)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean test​(NodeState node)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
    • Constructor Detail

      • UuidPredicate

        public UuidPredicate​(@NotNull
                             @NotNull java.lang.String[] uuids)
        Parameters:
        uuids - uuids
    • Method Detail

      • test

        public boolean test​(NodeState node)
        Specified by:
        test in interface java.util.function.Predicate<NodeState>