Package org.allGraphQLCases.server
Enum SEP_EnumWithReservedJavaKeywordAsValues_SES
java.lang.Object
java.lang.Enum<SEP_EnumWithReservedJavaKeywordAsValues_SES>
org.allGraphQLCases.server.SEP_EnumWithReservedJavaKeywordAsValues_SES
- All Implemented Interfaces:
Serializable
,Comparable<SEP_EnumWithReservedJavaKeywordAsValues_SES>
,java.lang.constant.Constable
public enum SEP_EnumWithReservedJavaKeywordAsValues_SES extends Enum<SEP_EnumWithReservedJavaKeywordAsValues_SES>
############################
test for issue #139:
- Author:
- generated by graphql-java-generator
- See Also:
- https://github.com/graphql-java-generator/graphql-java-generator
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description _abstract
_assert
_boolean
_break
_byte
_case
_catch
_char
_class
_const
_continue
_default
_do
_double
_else
_enum
_extends
_final
_finally
_float
_for
_goto
_if
_implements
_import
_instanceof
_int
_interface
_long
_native
_new
_package
_private
_protected
_public
_return
_short
_static
_strictfp
_super
_switch
_synchronized
_this
_throw
_throws
_transient
_try
_void
_volatile
_while
-
Method Summary
Modifier and Type Method Description static SEP_EnumWithReservedJavaKeywordAsValues_SES
fromGraphQlValue(String graphQlValue)
Returns the enum constant of this type with the specified name (as specified in the GraphQL schema).String
graphQlValue()
Returns the value of this constant, as specified in the GraphQL schema.static SEP_EnumWithReservedJavaKeywordAsValues_SES
valueOf(String name)
Returns the enum constant of this type with the specified name.static SEP_EnumWithReservedJavaKeywordAsValues_SES[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
_abstract
-
_assert
-
_boolean
-
_break
-
_byte
-
_case
-
_catch
-
_char
-
_class
-
_const
-
_continue
-
_default
-
_do
-
_double
-
_else
-
_enum
-
_extends
-
_final
-
_finally
-
_float
-
_for
-
_goto
-
_if
-
_implements
-
_import
-
_instanceof
-
_int
-
_interface
-
_long
-
_native
-
_new
-
_package
-
_private
-
_protected
-
_public
-
_return
-
_short
-
_static
-
_strictfp
-
_super
-
_switch
-
_synchronized
-
_this
-
_throw
-
_throws
-
_transient
-
_try
-
_void
-
_volatile
-
_while
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
graphQlValue
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
-
fromGraphQlValue
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)- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified GraphQL name
-