blob: 5bc72f3441901510a6cbd3a3fc0ecbde227885ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
// version 14:
record WithOnRecordComponent(String a, String b) {
/**
* @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
*/
@java.lang.SuppressWarnings("all")
public WithOnRecordComponent withA(final String a) {
return this.a == a ? this : new WithOnRecordComponent(a, this.b);
}
}
|