Package graphql.validation
Class ValidationError
- java.lang.Object
-
- graphql.validation.ValidationError
-
- All Implemented Interfaces:
GraphQLError,java.io.Serializable
@PublicApi public class ValidationError extends java.lang.Object implements GraphQLError
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classValidationError.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetDescription()ErrorTypegetErrorType()java.util.Map<java.lang.String,java.lang.Object>getExtensions()java.util.List<SourceLocation>getLocations()java.lang.StringgetMessage()java.util.List<java.lang.String>getQueryPath()ValidationErrorClassificationgetValidationErrorType()inthashCode()static ValidationError.BuildernewValidationError()java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface graphql.GraphQLError
getPath, toSpecification
-
-
-
-
Method Detail
-
getValidationErrorType
public ValidationErrorClassification getValidationErrorType()
-
getMessage
public java.lang.String getMessage()
- Specified by:
getMessagein interfaceGraphQLError- Returns:
- a description of the error intended for the developer as a guide to understand and correct the error
-
getDescription
public java.lang.String getDescription()
-
getLocations
public java.util.List<SourceLocation> getLocations()
- Specified by:
getLocationsin interfaceGraphQLError- Returns:
- the location(s) within the GraphQL document at which the error occurred. Each
SourceLocationdescribes the beginning of an associated syntax element
-
getErrorType
public ErrorType getErrorType()
- Specified by:
getErrorTypein interfaceGraphQLError- Returns:
- an object classifying this error
-
getQueryPath
public java.util.List<java.lang.String> getQueryPath()
-
getExtensions
public java.util.Map<java.lang.String,java.lang.Object> getExtensions()
- Specified by:
getExtensionsin interfaceGraphQLError- Returns:
- a map of error extensions or null if there are none
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
newValidationError
public static ValidationError.Builder newValidationError()
-
-