Files
lombok/test/transform/resource/before/ValueStaticConstructorOf.java
T

13 lines
255 B
Java

import lombok.Value;
@Value(staticConstructor = "of")
public class ValueStaticConstructorOf {
String name;
Double price;
private ValueStaticConstructorOf(String name, Double price) {
this.name = name;
this.price = price;
}
}