mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 10:20:51 +00:00
79 lines
1.5 KiB
Java
79 lines
1.5 KiB
Java
class Wither1 {
|
|
@lombok.experimental.Wither boolean foo;
|
|
void withFoo(boolean foo) {
|
|
}
|
|
Wither1(boolean foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither2 {
|
|
@lombok.experimental.Wither boolean foo;
|
|
void withFoo(String foo) {
|
|
}
|
|
Wither2(boolean foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither3 {
|
|
@lombok.experimental.Wither String foo;
|
|
void withFoo(boolean foo) {
|
|
}
|
|
Wither3(String foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither4 {
|
|
@lombok.experimental.Wither String foo;
|
|
void withFoo(String foo) {
|
|
}
|
|
Wither4(String foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither5 {
|
|
@lombok.experimental.Wither String foo;
|
|
void withFoo() {
|
|
}
|
|
Wither5(String foo) {
|
|
super();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") Wither5 withFoo(final String foo) {
|
|
return ((this.foo == foo) ? this : new Wither5(foo));
|
|
}
|
|
}
|
|
class Wither6 {
|
|
@lombok.experimental.Wither String foo;
|
|
void withFoo(String foo, int x) {
|
|
}
|
|
Wither6(String foo) {
|
|
super();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") Wither6 withFoo(final String foo) {
|
|
return ((this.foo == foo) ? this : new Wither6(foo));
|
|
}
|
|
}
|
|
class Wither7 {
|
|
@lombok.experimental.Wither String foo;
|
|
void withFoo(String foo, Object... x) {
|
|
}
|
|
Wither7(String foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither8 {
|
|
@lombok.experimental.Wither boolean isFoo;
|
|
void withIsFoo(boolean foo) {
|
|
}
|
|
Wither8(boolean foo) {
|
|
super();
|
|
}
|
|
}
|
|
class Wither9 {
|
|
@lombok.experimental.Wither boolean isFoo;
|
|
void withFoo(boolean foo) {
|
|
}
|
|
Wither9(boolean foo) {
|
|
super();
|
|
}
|
|
}
|