Interface ParameterizedBuilderRegistry.Registration<T>
- All Known Implementing Classes:
SimpleParameterizedBuilderRegistry.BuilderRegistration
- Enclosing interface:
ParameterizedBuilderRegistry
public static interface ParameterizedBuilderRegistry.Registration<T>
Defines a single
ParameterizedBuilder
registration with a
ParameterizedBuilderRegistry
.-
Method Summary
Modifier and TypeMethodDescriptionObtains theParameterizedBuilder
.Obtains the class of instance produced by the builder.getName()
Obtains the name of the builder.
-
Method Details
-
getName
String getName()Obtains the name of the builder.- Returns:
- the name of the builder
-
getInstanceClass
Obtains the class of instance produced by the builder.- Returns:
- the class of instance
-
getBuilder
ParameterizedBuilder<T> getBuilder()Obtains theParameterizedBuilder
.- Returns:
- the
ParameterizedBuilder
-