Oliver Unger

Results 2 issues of Oliver Unger

I have the following snippet in my xsd file. I would expect that it generates a Java Enum with the two elements STANDALONE and CONNECTED. ``` A sample ``` I'm...

@RequiredArgsConstructor @Getter public enum MyEnum { ALPHA("a", "Alpha"), BETA("b", "Beta"), GAMMA("c", "Gamma"), private final String id; private final String displayName; } Tried @JsonFormat(shape = JsonFormat.Shape.OBJECT) and @JsonValue Annotations. Would expect...