Class AbstractBuilder<T>

  • All Implemented Interfaces:
    Builder<T>
    Direct Known Subclasses:
    ExtendableBuilder

    public abstract class AbstractBuilder<T>
    extends java.lang.Object
    implements Builder<T>
    • Constructor Detail

      • AbstractBuilder

        protected AbstractBuilder()
    • Method Detail

      • newBuildingInstance

        protected abstract T newBuildingInstance()
      • getBuildingInstance

        protected T getBuildingInstance()
      • build

        public T build()
        Specified by:
        build in interface Builder<T>