Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns the value of this constant, as specified in the GraphQL schema. This is usually the same as the enum
item's name. But it will differ if this name is a java reserved keyword (in which case the name is prefixed by an
underscore)
Returns:
the enum constant with the specified name, as defined in the GraphQL schema
Returns the enum constant of this type with the specified name (as specified in the GraphQL schema). The string
must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters
are not permitted.)
Parameters:
graphQlValue - The value, as defined in the GraphQL schema. This is usually the same as the enum item's name. But it
will differ if this name is a java reserved keyword (in which case the name is prefixed by an
underscore)