All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.immutables.fixture.builder.attribute_builders.ThirdPartyImmutableWithValueClassCopyMethod Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
package org.immutables.fixture.builder.attribute_builders;

public class ThirdPartyImmutableWithValueClassCopyMethod {
  private final String value;

  private ThirdPartyImmutableWithValueClassCopyMethod(String value) {
    this.value = value;
  }

  public static Builder generateNewBuilder() {
    return new Builder();
  }

  public static Builder generateNewBuilder(ThirdPartyImmutableWithValueClassCopyMethod third) {
    return generateNewBuilder().setValue(third.getValue());
  }


  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 ThirdPartyImmutableWithValueClassCopyMethod doTheBuild() {
      return new ThirdPartyImmutableWithValueClassCopyMethod(value);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy