Package org.eclipse.microprofile.graphql
Annotation Interface Enum
Maps of the annotated Java enum to a GraphQL enum. 
 
For example, a user might annotate a enum as such:
For example, a user might annotate a enum as such:
 @Enum("ClothingSize")
 public enum ShirtSize {
       S,
       M,
       L,
       XL,
       XXL,
       HULK
   }
 
 Schema generation of this would result in a stanza such as:
 
 
   enum ClothingSize {
    HULK
    L
    M
    S
    XL
    XXL
  }
 - 
Optional Element Summary
Optional Elements 
- 
Element Details
- 
value
String value- Returns:
 - the name of the GraphQL enum.
 
- Default:
 - ""
 
 
 -