Package org.mapstruct.ap.spi
Class BuilderInfo
java.lang.Object
org.mapstruct.ap.spi.BuilderInfo
Holder for the builder information.
- Since:
- 1.3
- Author:
- Filip Hrisafov
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionThe method that can be used for instantiating a builder.The methods that can be used to build the type being built.
-
Method Details
-
getBuilderCreationMethod
The method that can be used for instantiating a builder. This can be:- A
public staticmethod in the type being build - A
public staticmethod in the builder itself - The default constructor of the builder
- Returns:
- the creation method for the builder
- A
-
getBuildMethods
The methods that can be used to build the type being built. This should bepublicmethods within the builder itself- Returns:
- the build method for the type
-