Azure / autorest.java

Extension for AutoRest (https://github.com/Azure/autorest) that generates Java code
MIT License
32 stars 80 forks source link

tsp, generate open enum for Union of StringLiterals #2734

Open weidongxu-microsoft opened 2 months ago

weidongxu-microsoft commented 2 months ago
union LR {
  left: "left",
  right: "right",
}

should generate as open enum (ExpandableStringEnum<>) in Java.

First, check with TCGC whether they would handle it in their SdkEnumType. If no, Java emitter would handle this.