Class IsNotLike<T>

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected IsNotLike​(java.util.function.Supplier<T> valueSupplier)  
      protected IsNotLike​(java.util.function.Supplier<T> valueSupplier, java.util.function.Predicate<T> predicate)  
    • Method Summary

      Modifier and Type Method Description
      static <T> IsNotLike<T> of​(java.util.function.Supplier<T> valueSupplier)  
      java.lang.String renderCondition​(java.lang.String columnName, java.lang.String placeholder)  
      IsNotLike<T> then​(java.util.function.UnaryOperator<T> transformer)  
      IsNotLike<T> when​(java.util.function.Predicate<T> predicate)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IsNotLike

        protected IsNotLike​(java.util.function.Supplier<T> valueSupplier)
      • IsNotLike

        protected IsNotLike​(java.util.function.Supplier<T> valueSupplier,
                            java.util.function.Predicate<T> predicate)
    • Method Detail

      • of

        public static <T> IsNotLike<T> of​(java.util.function.Supplier<T> valueSupplier)
      • when

        public IsNotLike<T> when​(java.util.function.Predicate<T> predicate)
      • then

        public IsNotLike<T> then​(java.util.function.UnaryOperator<T> transformer)