diff options
author | daliclass <markhaynes.work@gmail.com> | 2019-05-05 22:28:48 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2019-05-07 15:18:01 +0200 |
commit | d3ae4d994880a1a087108275e101ab4fbb43f071 (patch) | |
tree | f9cbadfbe9df076904e5a3cd0680ddc3ec54d3e4 /test/transform/resource/after-delombok | |
parent | 3496a3e9633cd6526745bcc390877653afad7f09 (diff) | |
download | lombok-d3ae4d994880a1a087108275e101ab4fbb43f071.tar.gz lombok-d3ae4d994880a1a087108275e101ab4fbb43f071.tar.bz2 lombok-d3ae4d994880a1a087108275e101ab4fbb43f071.zip |
[Feature] staticConstructor should use already defined private constructor if available
Diffstat (limited to 'test/transform/resource/after-delombok')
-rw-r--r-- | test/transform/resource/after-delombok/ValueStaticConstructorOf.java | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValueStaticConstructorOf.java b/test/transform/resource/after-delombok/ValueStaticConstructorOf.java new file mode 100644 index 00000000..fe75f823 --- /dev/null +++ b/test/transform/resource/after-delombok/ValueStaticConstructorOf.java @@ -0,0 +1,50 @@ +public final class ValueStaticConstructorOf { + private final String name; + private final Double price; + private ValueStaticConstructorOf(String name, Double price) { + this.name = name; + this.price = price; + } + @java.lang.SuppressWarnings("all") + public static ValueStaticConstructorOf of(final String name, final Double price) { + return new ValueStaticConstructorOf(name, price); + } + @java.lang.SuppressWarnings("all") + public String getName() { + return this.name; + } + @java.lang.SuppressWarnings("all") + public Double getPrice() { + return this.price; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public boolean equals(final java.lang.Object o) { + if (o == this) return true; + if (!(o instanceof ValueStaticConstructorOf)) return false; + final ValueStaticConstructorOf other = (ValueStaticConstructorOf) o; + final java.lang.Object this$name = this.getName(); + final java.lang.Object other$name = other.getName(); + if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false; + final java.lang.Object this$price = this.getPrice(); + final java.lang.Object other$price = other.getPrice(); + if (this$price == null ? other$price != null : !this$price.equals(other$price)) return false; + return true; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public int hashCode() { + final int PRIME = 59; + int result = 1; + final java.lang.Object $name = this.getName(); + result = result * PRIME + ($name == null ? 43 : $name.hashCode()); + final java.lang.Object $price = this.getPrice(); + result = result * PRIME + ($price == null ? 43 : $price.hashCode()); + return result; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "ValueStaticConstructorOf(name=" + this.getName() + ", price=" + this.getPrice() + ")"; + } +} |