Class AbstractBaseNCodecStreamBuilder<T,​C extends BaseNCodec,​B extends AbstractBaseNCodecStreamBuilder<T,​C,​B>>

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected C getBaseNCodec()
      Gets the codec to encode/decode a stream.
      protected boolean getEncode()
      Gets whether to encode or decode a stream.
      protected abstract C newBaseNCodec()
      Creates a new BaseNCodec subclass of type C.
      B setBaseNCodec​(C baseNCodec)
      Sets a BaseNCodec subclass of type C.
      B setEncode​(boolean encode)
      Sets whether we should encode all data read (true), or if false if we should decode.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Supplier

        get
    • Method Detail

      • getBaseNCodec

        protected C getBaseNCodec()
        Gets the codec to encode/decode a stream.
        Returns:
        the codec to encode/decode a stream.
      • getEncode

        protected boolean getEncode()
        Gets whether to encode or decode a stream.
        Returns:
        whether to encode or decode a stream.
      • newBaseNCodec

        protected abstract C newBaseNCodec()
        Creates a new BaseNCodec subclass of type C.
        Returns:
        a new BaseNCodec subclass of type C.
      • setBaseNCodec

        public B setBaseNCodec​(C baseNCodec)
        Sets a BaseNCodec subclass of type C.
        Parameters:
        baseNCodec - a BaseNCodec subclass of type C.
        Returns:
        this instance.
      • setEncode

        public B setEncode​(boolean encode)
        Sets whether we should encode all data read (true), or if false if we should decode.
        Parameters:
        encode - encode or decode.
        Returns:
        this instance.