
com.github.sadstool.mapstruct.builder.BuilderMapper Maven / Gradle / Ivy
The newest version!
package com.github.sadstool.mapstruct.builder;
public abstract class BuilderMapper> {
protected abstract B mapToBuilder(T input);
public R map(T input) {
return mapToBuilder(input).build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy