blob: 25a8bcedd597e8ee1c55ea2dd9d9364bb17ed900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public interface WithNested<Z> {
@lombok.RequiredArgsConstructor class IAmStaticReally {
final @lombok.With String x;
/**
* @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
*/
public @java.lang.SuppressWarnings("all") WithNested.IAmStaticReally withX(final String x) {
return ((this.x == x) ? this : new WithNested.IAmStaticReally(x));
}
public @java.lang.SuppressWarnings("all") IAmStaticReally(final String x) {
super();
this.x = x;
}
}
}
|