org.immutables.fixture.builder.attribute_builders.ThirdPartyImmutableWithBuilderInstanceCopyMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.builder.attribute_builders;
public class ThirdPartyImmutableWithBuilderInstanceCopyMethod {
private final String value;
private ThirdPartyImmutableWithBuilderInstanceCopyMethod(String value) {
this.value = value;
}
public static Builder generateNewBuilder() {
return new Builder();
}
public String getValue() {
return value;
}
public static class Builder {
private String value;
protected Builder() {
}
public Builder setValue(String value) {
this.value = value;
return this;
}
public ThirdPartyImmutableWithBuilderInstanceCopyMethod doTheBuild() {
return new ThirdPartyImmutableWithBuilderInstanceCopyMethod(value);
}
public Builder from(ThirdPartyImmutableWithBuilderInstanceCopyMethod immutable) {
return setValue(immutable.getValue());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy