public SingularExampleBuilder<T> occupation(String occupation) { if (this.occupations == null) { this.occupations = new java.util.ArrayList<String>();
}
this.occupations.add(occupation); return this;
}
@java.lang.SuppressWarnings("all") public SingularExampleBuilder<T> occupations(java.util.Collection<? extends String> occupations) { if (this.occupations == null) { this.occupations = new java.util.ArrayList<String>();
}
public SingularExampleBuilder<T> clearOccupations() { if (this.occupations != null) this.occupations.clear(); return this;
}
public SingularExampleBuilder<T> axis(String axis) { if (this.axes == null) { this.axes = com.google.common.collect.ImmutableList.builder();
}
this.axes.add(axis); return this;
}
public SingularExampleBuilder<T> axes(java.lang.Iterable<? extends String> axes) { if (this.axes == null) { this.axes = com.google.common.collect.ImmutableList.builder();
}
this.axes.addAll(axes); return this;
}
public SingularExampleBuilder<T> clearAxes() { if (this.axes != null) this.axes.clear(); return this;
}
public SingularExampleBuilder<T> elf(Integer elfKey, T elfValue) { if (this.elves$key == null) { this.elves$key = new java.util.ArrayList<Integer>(); this.elves$value = new java.util.ArrayList<T>();
}
public SingularExampleBuilder<T> clearElves() { if (this.elves$key != null) { this.elves$key.clear(); this.elves$value.clear();
} return this;
}
public SingularExampleBuilder<T> minutia(java.lang.Object minutia) { if (this.minutiae == null) { this.minutiae = new java.util.ArrayList<java.lang.Object>();
}
this.minutiae.add(minutia); return this;
}
public SingularExampleBuilder<T> minutiae(java.util.Collection<?> minutiae) { if (this.minutiae == null) { this.minutiae = new java.util.ArrayList<java.lang.Object>();
}
this.minutiae.addAll(minutiae); return this;
}
public SingularExampleBuilder<T> clearMinutiae() { if (this.minutiae != null) this.minutiae.clear(); return this;
}