Class AttributesProcessor.SetIncludesPredicate

  • All Implemented Interfaces:
    java.util.function.Predicate<java.lang.String>
    Enclosing class:
    AttributesProcessor

    private static class AttributesProcessor.SetIncludesPredicate
    extends java.lang.Object
    implements java.util.function.Predicate<java.lang.String>
    Predicate which tests if the set includes the input.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.Set<java.lang.String> set  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private SetIncludesPredicate​(java.util.Set<java.lang.String> set)  
    • Method Summary

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

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

        and, negate, or
    • Field Detail

      • set

        private final java.util.Set<java.lang.String> set
    • Constructor Detail

      • SetIncludesPredicate

        private SetIncludesPredicate​(java.util.Set<java.lang.String> set)
    • Method Detail

      • test

        public boolean test​(java.lang.String s)
        Specified by:
        test in interface java.util.function.Predicate<java.lang.String>
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object