Class AbstractSupplier<T,​B extends AbstractSupplier<T,​B,​E>,​E extends java.lang.Throwable>

    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractSupplier()
      Constructs a new instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected B asThis()
      Returns this instance typed as the subclass type B.
      • Methods inherited from class java.lang.Object

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

      • AbstractSupplier

        public AbstractSupplier()
        Constructs a new instance.
    • Method Detail

      • asThis

        protected B asThis()
        Returns this instance typed as the subclass type B.

        This is the same as the expression:

         (B) this
         
        Returns:
        this instance typed as the subclass type B.