Class P<V>

    • Constructor Summary

      Constructors 
      Constructor Description
      P​(PBiPredicate<V,​V> biPredicate, V value)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      P<V> and​(Predicate<? super V> predicate)  
      static <V> P<V> between​(V first, V second)
      Determines if a value is within (inclusive) of the range of the two specified values.
      P<V> clone()  
      static <V> P<V> eq​(V value)
      Determines if values are equal.
      boolean equals​(Object other)  
      PBiPredicate<V,​V> getBiPredicate()  
      V getOriginalValue()
      Gets the original value used at time of construction of the P.
      String getPredicateName()  
      V getValue()
      Gets the current value to be passed to the predicate for testing.
      static <V> P<V> gt​(V value)
      Determines if a value is greater than another.
      static <V> P<V> gte​(V value)
      Determines if a value is greater than or equal to another.
      int hashCode()  
      static <V> P<V> inside​(V first, V second)
      Determines if a value is within (exclusive) the range of the two specified values.
      static <V> P<V> lt​(V value)
      Determines if a value is less than another.
      static <V> P<V> lte​(V value)
      Determines if a value is less than or equal to another.
      P<V> negate()  
      static <V> P<V> neq​(V value)
      Determines if values are not equal.
      static <V> P<V> not​(P<V> predicate)
      The opposite of the specified P.
      P<V> or​(Predicate<? super V> predicate)  
      static <V> P<V> outside​(V first, V second)
      Determines if a value is not within (exclusive) of the range of the two specified values.
      void setValue​(V value)  
      static P test​(PBiPredicate biPredicate, Object value)
      Construct an instance of P from a BiPredicate.
      boolean test​(V testValue)  
      String toString()  
      static <V> P<V> within​(Collection<V> value)
      Determines if a value is within the specified list of values.
      static <V> P<V> within​(V... values)
      Determines if a value is within the specified list of values.
      static <V> P<V> without​(Collection<V> value)
      Determines if a value is not within the specified list of values.
      static <V> P<V> without​(V... values)
      Determines if a value is not within the specified list of values.
    • Field Detail

      • value

        protected V value
      • originalValue

        protected V originalValue
    • Method Detail

      • getOriginalValue

        public V getOriginalValue()
        Gets the original value used at time of construction of the P. This value can change its type in some cases.
      • getPredicateName

        public String getPredicateName()
      • getValue

        public V getValue()
        Gets the current value to be passed to the predicate for testing.
      • setValue

        public void setValue​(V value)
      • test

        public boolean test​(V testValue)
        Specified by:
        test in interface Predicate<V>
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • eq

        public static <V> P<V> eq​(V value)
        Determines if values are equal.
        Since:
        3.0.0-incubating
      • neq

        public static <V> P<V> neq​(V value)
        Determines if values are not equal.
        Since:
        3.0.0-incubating
      • lt

        public static <V> P<V> lt​(V value)
        Determines if a value is less than another.
        Since:
        3.0.0-incubating
      • lte

        public static <V> P<V> lte​(V value)
        Determines if a value is less than or equal to another.
        Since:
        3.0.0-incubating
      • gt

        public static <V> P<V> gt​(V value)
        Determines if a value is greater than another.
        Since:
        3.0.0-incubating
      • gte

        public static <V> P<V> gte​(V value)
        Determines if a value is greater than or equal to another.
        Since:
        3.0.0-incubating
      • inside

        public static <V> P<V> inside​(V first,
                                      V second)
        Determines if a value is within (exclusive) the range of the two specified values.
        Since:
        3.0.0-incubating
      • outside

        public static <V> P<V> outside​(V first,
                                       V second)
        Determines if a value is not within (exclusive) of the range of the two specified values.
        Since:
        3.0.0-incubating
      • between

        public static <V> P<V> between​(V first,
                                       V second)
        Determines if a value is within (inclusive) of the range of the two specified values.
        Since:
        3.0.0-incubating
      • within

        public static <V> P<V> within​(V... values)
        Determines if a value is within the specified list of values. If the array of arguments itself is null then the argument is treated as Object[1] where that single value is null.
        Since:
        3.0.0-incubating
      • within

        public static <V> P<V> within​(Collection<V> value)
        Determines if a value is within the specified list of values. Calling this with null is the same as calling within(Object[]) using null.
        Since:
        3.0.0-incubating
      • without

        public static <V> P<V> without​(V... values)
        Determines if a value is not within the specified list of values. If the array of arguments itself is null then the argument is treated as Object[1] where that single value is null.
        Since:
        3.0.0-incubating
      • without

        public static <V> P<V> without​(Collection<V> value)
        Determines if a value is not within the specified list of values. Calling this with null is the same as calling within(Object[]) using null.
        Since:
        3.0.0-incubating
      • test

        public static P test​(PBiPredicate biPredicate,
                             Object value)
        Construct an instance of P from a BiPredicate.
        Since:
        3.0.0-incubating
      • not

        public static <V> P<V> not​(P<V> predicate)
        The opposite of the specified P.
        Since:
        3.0.0-incubating