mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 06:21:53 +00:00
103 lines
4.4 KiB
Java
103 lines
4.4 KiB
Java
import lombok.NoArgsConstructor;
|
|
import lombok.Value;
|
|
import lombok.Builder;
|
|
final @Builder @Value class ConstructorsWithBuilderDefaults<T> {
|
|
public static @java.lang.SuppressWarnings("all") class ConstructorsWithBuilderDefaultsBuilder<T> {
|
|
private @java.lang.SuppressWarnings("all") java.util.List<T> z;
|
|
private @java.lang.SuppressWarnings("all") boolean z$set;
|
|
private @java.lang.SuppressWarnings("all") T x;
|
|
private @java.lang.SuppressWarnings("all") boolean x$set;
|
|
private @java.lang.SuppressWarnings("all") T q;
|
|
@java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaultsBuilder() {
|
|
super();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaultsBuilder<T> z(final java.util.List<T> z) {
|
|
this.z = z;
|
|
z$set = true;
|
|
return this;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaultsBuilder<T> x(final T x) {
|
|
this.x = x;
|
|
x$set = true;
|
|
return this;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaultsBuilder<T> q(final T q) {
|
|
this.q = q;
|
|
return this;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults<T> build() {
|
|
return new ConstructorsWithBuilderDefaults<T>((z$set ? z : ConstructorsWithBuilderDefaults.<T>$default$z()), (x$set ? x : ConstructorsWithBuilderDefaults.<T>$default$x()), q);
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
|
|
return (((((("ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder(z=" + this.z) + ", x=") + this.x) + ", q=") + this.q) + ")");
|
|
}
|
|
}
|
|
private final @Builder.Default java.util.List<T> z;
|
|
private final @Builder.Default T x;
|
|
private final T q;
|
|
private static @java.lang.SuppressWarnings("all") <T>java.util.List<T> $default$z() {
|
|
return new java.util.ArrayList<T>();
|
|
}
|
|
private static @java.lang.SuppressWarnings("all") <T>T $default$x() {
|
|
return null;
|
|
}
|
|
@java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults(final java.util.List<T> z, final T x, final T q) {
|
|
super();
|
|
this.z = z;
|
|
this.x = x;
|
|
this.q = q;
|
|
}
|
|
public static @java.lang.SuppressWarnings("all") <T>ConstructorsWithBuilderDefaultsBuilder<T> builder() {
|
|
return new ConstructorsWithBuilderDefaultsBuilder<T>();
|
|
}
|
|
public @java.lang.SuppressWarnings("all") java.util.List<T> getZ() {
|
|
return this.z;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") T getX() {
|
|
return this.x;
|
|
}
|
|
public @java.lang.SuppressWarnings("all") T getQ() {
|
|
return this.q;
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
|
|
if ((o == this))
|
|
return true;
|
|
if ((! (o instanceof ConstructorsWithBuilderDefaults)))
|
|
return false;
|
|
final ConstructorsWithBuilderDefaults<?> other = (ConstructorsWithBuilderDefaults<?>) o;
|
|
final java.lang.Object this$z = this.getZ();
|
|
final java.lang.Object other$z = other.getZ();
|
|
if (((this$z == null) ? (other$z != null) : (! this$z.equals(other$z))))
|
|
return false;
|
|
final java.lang.Object this$x = this.getX();
|
|
final java.lang.Object other$x = other.getX();
|
|
if (((this$x == null) ? (other$x != null) : (! this$x.equals(other$x))))
|
|
return false;
|
|
final java.lang.Object this$q = this.getQ();
|
|
final java.lang.Object other$q = other.getQ();
|
|
if (((this$q == null) ? (other$q != null) : (! this$q.equals(other$q))))
|
|
return false;
|
|
return true;
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
|
|
final int PRIME = 59;
|
|
int result = 1;
|
|
final java.lang.Object $z = this.getZ();
|
|
result = ((result * PRIME) + (($z == null) ? 43 : $z.hashCode()));
|
|
final java.lang.Object $x = this.getX();
|
|
result = ((result * PRIME) + (($x == null) ? 43 : $x.hashCode()));
|
|
final java.lang.Object $q = this.getQ();
|
|
result = ((result * PRIME) + (($q == null) ? 43 : $q.hashCode()));
|
|
return result;
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
|
|
return (((((("ConstructorsWithBuilderDefaults(z=" + this.getZ()) + ", x=") + this.getX()) + ", q=") + this.getQ()) + ")");
|
|
}
|
|
private @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults() {
|
|
super();
|
|
this.q = null;
|
|
this.z = ConstructorsWithBuilderDefaults.$default$z();
|
|
this.x = ConstructorsWithBuilderDefaults.$default$x();
|
|
}
|
|
}
|