Package io.kojan.xml
Interface Builder<Type>
-
- Type Parameters:
Type
- type of created objects
public interface Builder<Type>
An object builder. Gathers information and captures it in its internal state, and then allows building objects based on captured information.- Author:
- Mikolaj Izdebski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Type
build()
Builds an object out of captured state.
-
-
-
Method Detail
-
build
Type build()
Builds an object out of captured state.- Returns:
- newly-built object
-
-