O - The object being built by the Builder BB - The Builder that builds objects of type O. This is also the
Builder that is being configured.public interface Configurer<O,B extends Builder<O>>
Builder. All Configurer first
have their init(Builder) method invoked. After all
init(Builder) methods have been invoked, each
configure(Builder) method is invoked.void init(B builder) throws Exception
Builder. Here only shared state should be created
and modified, but not properties on the Builder used for building
the object. This ensures that the configure(Builder) method uses
the correct shared objects when building. Configurers should be applied here.builder - ExceptionCopyright © 2021. All rights reserved.