import java.util.List; class BuilderInstanceMethod { @lombok.Builder public String create(int show, final int yes, List also, int $andMe) { return "" + show + yes + also + $andMe; } }