// Generated by delombok at Sat Jun 11 11:12:44 CEST 2016 public enum ConstructorEnum { A(1), B(2); private final int x; @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") private ConstructorEnum(final int x) { this.x = x; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public int getX() { return this.x; } }