Class NotSpec<T>

  • Type Parameters:
    T - The target type for this Spec
    All Implemented Interfaces:
    Spec<T>

    public class NotSpec<T>
    extends java.lang.Object
    implements Spec<T>
    A Spec implementation which negates another Spec.
    • Constructor Summary

      Constructors 
      Constructor Description
      NotSpec​(Spec<? super T> sourceSpec)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isSatisfiedBy​(T element)  
      • Methods inherited from class java.lang.Object

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

      • NotSpec

        public NotSpec​(Spec<? super T> sourceSpec)
    • Method Detail

      • isSatisfiedBy

        public boolean isSatisfiedBy​(T element)
        Specified by:
        isSatisfiedBy in interface Spec<T>