package com.example.enum_type.type; import javax.annotation.Generated; /** * The episodes in the Star Wars trilogy (with special symbol $S) */ @Generated("Apollo GraphQL") public enum Episode { /** * Star Wars Episode IV: A New Hope, released in 1977. (with special symbol $S) */ NEWHOPE, /** * Star Wars Episode V: The Empire Strikes Back, released in 1980. */ EMPIRE, /** * Star Wars Episode VI: Return of the Jedi, released in 1983. (JEDI in lowercase) */ jedi }