Uses of Class
de.team33.patterns.building.elara.BuilderBase

  • Uses of BuilderBase in de.team33.patterns.building.elara

    Classes in de.team33.patterns.building.elara with type parameters of type BuilderBase
    Modifier and Type
    Class
    Description
    class 
    BuilderBase<B extends BuilderBase<B>>
    Base class of a generic class hierarchy that has a type parameter intended to represent the effective type of concrete implementation.
    Modifier and Type
    Class
    Description
    class 
    Charger<T,C extends Charger<T,C>>
    Serves as a base class for builder-like charger implementations <C> and as such provides a model that separates basic builder concepts from the actual target data model <T>.
    class 
    DataBuilder<C,T,B extends ProtoBuilder<C,B>>
    Serves as a base class for builder implementations <B> and as such provides a model that separates basic builder concepts from the actual core data model <C>.
    class 
    LateBuilder<T,B extends LateBuilder<T,B>>
    Serves as a base class for builder implementations <B> and as such provides a model that separates basic builder concepts from the actual target data model <T>.
    class 
    ProtoBuilder<C,B extends ProtoBuilder<C,B>>
    Serves as a base class for builder implementations <B> and as such provides a model that separates basic builder concepts from the actual core data model <C> that holds the actual values for the final result.