public class SuperBuilderSingularToBuilderGuava { public static class Parent { private com.google.common.collect.ImmutableList cards; private com.google.common.collect.ImmutableCollection frogs; @SuppressWarnings("all") private com.google.common.collect.ImmutableSet rawSet; private com.google.common.collect.ImmutableSortedSet passes; private com.google.common.collect.ImmutableTable users; @java.lang.SuppressWarnings("all") public static abstract class ParentBuilder, B extends SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder> { @java.lang.SuppressWarnings("all") private com.google.common.collect.ImmutableList.Builder cards; @java.lang.SuppressWarnings("all") private com.google.common.collect.ImmutableList.Builder frogs; @java.lang.SuppressWarnings("all") private com.google.common.collect.ImmutableSet.Builder rawSet; @java.lang.SuppressWarnings("all") private com.google.common.collect.ImmutableSortedSet.Builder passes; @java.lang.SuppressWarnings("all") private com.google.common.collect.ImmutableTable.Builder users; @java.lang.SuppressWarnings("all") protected B $fillValuesFrom(final C instance) { SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder.$fillValuesFromInstanceIntoBuilder(instance, this); return self(); } @java.lang.SuppressWarnings("all") private static void $fillValuesFromInstanceIntoBuilder(final SuperBuilderSingularToBuilderGuava.Parent instance, final SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder b) { b.cards(instance.cards == null ? com.google.common.collect.ImmutableList.of() : instance.cards); b.frogs(instance.frogs == null ? com.google.common.collect.ImmutableList.of() : instance.frogs); b.rawSet(instance.rawSet == null ? com.google.common.collect.ImmutableSet.of() : instance.rawSet); b.passes(instance.passes == null ? com.google.common.collect.ImmutableSortedSet.of() : instance.passes); b.users(instance.users == null ? com.google.common.collect.ImmutableTable.of() : instance.users); } @java.lang.SuppressWarnings("all") protected abstract B self(); @java.lang.SuppressWarnings("all") public abstract C build(); @java.lang.SuppressWarnings("all") public B card(final T card) { if (this.cards == null) this.cards = com.google.common.collect.ImmutableList.builder(); this.cards.add(card); return self(); } @java.lang.SuppressWarnings("all") public B cards(final java.lang.Iterable cards) { if (cards == null) { throw new java.lang.NullPointerException("cards cannot be null"); } if (this.cards == null) this.cards = com.google.common.collect.ImmutableList.builder(); this.cards.addAll(cards); return self(); } @java.lang.SuppressWarnings("all") public B clearCards() { this.cards = null; return self(); } @java.lang.SuppressWarnings("all") public B frog(final Number frog) { if (this.frogs == null) this.frogs = com.google.common.collect.ImmutableList.builder(); this.frogs.add(frog); return self(); } @java.lang.SuppressWarnings("all") public B frogs(final java.lang.Iterable frogs) { if (frogs == null) { throw new java.lang.NullPointerException("frogs cannot be null"); } if (this.frogs == null) this.frogs = com.google.common.collect.ImmutableList.builder(); this.frogs.addAll(frogs); return self(); } @java.lang.SuppressWarnings("all") public B clearFrogs() { this.frogs = null; return self(); } @java.lang.SuppressWarnings("all") public B rawSet(final java.lang.Object rawSet) { if (this.rawSet == null) this.rawSet = com.google.common.collect.ImmutableSet.builder(); this.rawSet.add(rawSet); return self(); } @java.lang.SuppressWarnings("all") public B rawSet(final java.lang.Iterable rawSet) { if (rawSet == null) { throw new java.lang.NullPointerException("rawSet cannot be null"); } if (this.rawSet == null) this.rawSet = com.google.common.collect.ImmutableSet.builder(); this.rawSet.addAll(rawSet); return self(); } @java.lang.SuppressWarnings("all") public B clearRawSet() { this.rawSet = null; return self(); } @java.lang.SuppressWarnings("all") public B pass(final String pass) { if (this.passes == null) this.passes = com.google.common.collect.ImmutableSortedSet.naturalOrder(); this.passes.add(pass); return self(); } @java.lang.SuppressWarnings("all") public B passes(final java.lang.Iterable passes) { if (passes == null) { throw new java.lang.NullPointerException("passes cannot be null"); } if (this.passes == null) this.passes = com.google.common.collect.ImmutableSortedSet.naturalOrder(); this.passes.addAll(passes); return self(); } @java.lang.SuppressWarnings("all") public B clearPasses() { this.passes = null; return self(); } @java.lang.SuppressWarnings("all") public B user(final Number rowKey, final Number columnKey, final String value) { if (this.users == null) this.users = com.google.common.collect.ImmutableTable.builder(); this.users.put(rowKey, columnKey, value); return self(); } @java.lang.SuppressWarnings("all") public B users(final com.google.common.collect.Table users) { if (users == null) { throw new java.lang.NullPointerException("users cannot be null"); } if (this.users == null) this.users = com.google.common.collect.ImmutableTable.builder(); this.users.putAll(users); return self(); } @java.lang.SuppressWarnings("all") public B clearUsers() { this.users = null; return self(); } @java.lang.Override @java.lang.SuppressWarnings("all") public java.lang.String toString() { return "SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder(cards=" + this.cards + ", frogs=" + this.frogs + ", rawSet=" + this.rawSet + ", passes=" + this.passes + ", users=" + this.users + ")"; } } @java.lang.SuppressWarnings("all") private static final class ParentBuilderImpl extends SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder, SuperBuilderSingularToBuilderGuava.Parent.ParentBuilderImpl> { @java.lang.SuppressWarnings("all") private ParentBuilderImpl() { } @java.lang.Override @java.lang.SuppressWarnings("all") protected SuperBuilderSingularToBuilderGuava.Parent.ParentBuilderImpl self() { return this; } @java.lang.Override @java.lang.SuppressWarnings("all") public SuperBuilderSingularToBuilderGuava.Parent build() { return new SuperBuilderSingularToBuilderGuava.Parent(this); } } @java.lang.SuppressWarnings("all") protected Parent(final SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder b) { com.google.common.collect.ImmutableList cards = b.cards == null ? com.google.common.collect.ImmutableList.of() : b.cards.build(); this.cards = cards; com.google.common.collect.ImmutableCollection frogs = b.frogs == null ? com.google.common.collect.ImmutableList.of() : b.frogs.build(); this.frogs = frogs; com.google.common.collect.ImmutableSet rawSet = b.rawSet == null ? com.google.common.collect.ImmutableSet.of() : b.rawSet.build(); this.rawSet = rawSet; com.google.common.collect.ImmutableSortedSet passes = b.passes == null ? com.google.common.collect.ImmutableSortedSet.of() : b.passes.build(); this.passes = passes; com.google.common.collect.ImmutableTable users = b.users == null ? com.google.common.collect.ImmutableTable.of() : b.users.build(); this.users = users; } @java.lang.SuppressWarnings("all") public static SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder builder() { return new SuperBuilderSingularToBuilderGuava.Parent.ParentBuilderImpl(); } @java.lang.SuppressWarnings("all") public SuperBuilderSingularToBuilderGuava.Parent.ParentBuilder toBuilder() { return new SuperBuilderSingularToBuilderGuava.Parent.ParentBuilderImpl().$fillValuesFrom(this); } } public static class Child extends Parent { private double field3; @java.lang.SuppressWarnings("all") public static abstract class ChildBuilder, B extends SuperBuilderSingularToBuilderGuava.Child.ChildBuilder> extends Parent.ParentBuilder { @java.lang.SuppressWarnings("all") private double field3; @java.lang.Override @java.lang.SuppressWarnings("all") protected B $fillValuesFrom(final C instance) { super.$fillValuesFrom(instance); SuperBuilderSingularToBuilderGuava.Child.ChildBuilder.$fillValuesFromInstanceIntoBuilder(instance, this); return self(); } @java.lang.SuppressWarnings("all") private static void $fillValuesFromInstanceIntoBuilder(final SuperBuilderSingularToBuilderGuava.Child instance, final SuperBuilderSingularToBuilderGuava.Child.ChildBuilder b) { b.field3(instance.field3); } @java.lang.Override @java.lang.SuppressWarnings("all") protected abstract B self(); @java.lang.Override @java.lang.SuppressWarnings("all") public abstract C build(); /** * @return {@code this}. */ @java.lang.SuppressWarnings("all") public B field3(final double field3) { this.field3 = field3; return self(); } @java.lang.Override @java.lang.SuppressWarnings("all") public java.lang.String toString() { return "SuperBuilderSingularToBuilderGuava.Child.ChildBuilder(super=" + super.toString() + ", field3=" + this.field3 + ")"; } } @java.lang.SuppressWarnings("all") private static final class ChildBuilderImpl extends SuperBuilderSingularToBuilderGuava.Child.ChildBuilder, SuperBuilderSingularToBuilderGuava.Child.ChildBuilderImpl> { @java.lang.SuppressWarnings("all") private ChildBuilderImpl() { } @java.lang.Override @java.lang.SuppressWarnings("all") protected SuperBuilderSingularToBuilderGuava.Child.ChildBuilderImpl self() { return this; } @java.lang.Override @java.lang.SuppressWarnings("all") public SuperBuilderSingularToBuilderGuava.Child build() { return new SuperBuilderSingularToBuilderGuava.Child(this); } } @java.lang.SuppressWarnings("all") protected Child(final SuperBuilderSingularToBuilderGuava.Child.ChildBuilder b) { super(b); this.field3 = b.field3; } @java.lang.SuppressWarnings("all") public static SuperBuilderSingularToBuilderGuava.Child.ChildBuilder builder() { return new SuperBuilderSingularToBuilderGuava.Child.ChildBuilderImpl(); } @java.lang.SuppressWarnings("all") public SuperBuilderSingularToBuilderGuava.Child.ChildBuilder toBuilder() { return new SuperBuilderSingularToBuilderGuava.Child.ChildBuilderImpl().$fillValuesFrom(this); } } public static void test() { Child x = Child.builder().card(1).build().toBuilder().build(); } }