mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 06:20:32 +00:00
13 lines
425 B
Java
13 lines
425 B
Java
public interface WithNested<Z> {
|
|
@lombok.RequiredArgsConstructor class IAmStaticReally {
|
|
final @lombok.With String x;
|
|
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;
|
|
}
|
|
}
|
|
}
|