Class IsNotNull<T>

    • Constructor Detail

      • IsNotNull

        public IsNotNull()
    • Method Detail

      • empty

        public static <T> IsNotNull<T> empty()
      • filter

        public <S> IsNotNull<S> filter​(BooleanSupplier booleanSupplier)
        If renderable and the supplier returns true, returns this condition. Else returns a condition that will not render.
        Type Parameters:
        S - condition type - not used except for compilation compliance
        Parameters:
        booleanSupplier - function that specifies whether the condition should render
        Returns:
        this condition if renderable and the supplier returns true, otherwise a condition that will not render.