public enum GraphQLErrorType extends java.lang.Enum<GraphQLErrorType>
| Enum Constant and Description |
|---|
DataFetchingException |
ExecutionAborted |
InvalidSyntax |
OperationNotSupported |
ValidationError |
| Modifier and Type | Method and Description |
|---|---|
static GraphQLErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphQLErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphQLErrorType InvalidSyntax
public static final GraphQLErrorType ValidationError
public static final GraphQLErrorType DataFetchingException
public static final GraphQLErrorType OperationNotSupported
public static final GraphQLErrorType ExecutionAborted
public static GraphQLErrorType[] values()
for (GraphQLErrorType c : GraphQLErrorType.values()) System.out.println(c);
public static GraphQLErrorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null