blob: 393fe42a83b91a93a52e546fa8a83fe8507e4359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import lombok.Builder;
public @Builder class I2335_BuilderMultipleObtainVia {
public static @java.lang.SuppressWarnings("all") class I2335_BuilderMultipleObtainViaBuilder {
private @java.lang.SuppressWarnings("all") String theString;
private @java.lang.SuppressWarnings("all") Long theLong;
@java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainViaBuilder() {
super();
}
/**
* @return {@code this}.
*/
public @java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder theString(final String theString) {
this.theString = theString;
return this;
}
/**
* @return {@code this}.
*/
public @java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder theLong(final Long theLong) {
this.theLong = theLong;
return this;
}
public @java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainVia build() {
return new I2335_BuilderMultipleObtainVia(this.theString, this.theLong);
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((("I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder(theString=" + this.theString) + ", theLong=") + this.theLong) + ")");
}
}
private String theString;
private Long theLong;
public @Builder(toBuilder = true) I2335_BuilderMultipleObtainVia(@Builder.ObtainVia(method = "getTheString") String theString, @Builder.ObtainVia(method = "getTheLong") Long theLong) {
super();
setTheString(theString);
setTheLong(theLong);
}
public String getTheString() {
return theString;
}
public Long getTheLong() {
return theLong;
}
public void setTheString(String theString) {
this.theString = theString;
}
public void setTheLong(Long theLong) {
this.theLong = theLong;
}
public static @java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder builder() {
return new I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder();
}
public @java.lang.SuppressWarnings("all") I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder toBuilder() {
final String theString = this.getTheString();
final Long theLong = this.getTheLong();
return new I2335_BuilderMultipleObtainVia.I2335_BuilderMultipleObtainViaBuilder().theString(theString).theLong(theLong);
}
}
|