Interface GraphQLSearchFacetPathNotFoundError
- All Superinterfaces:
GraphQLErrorObject
Returned when a search facet path could not be found.
Example to create an instance using the builder pattern
GraphQLSearchFacetPathNotFoundError graphQLSearchFacetPathNotFoundError = GraphQLSearchFacetPathNotFoundError.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for GraphQLSearchFacetPathNotFoundError -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for GraphQLSearchFacetPathNotFoundErrorbuilder
(GraphQLSearchFacetPathNotFoundError template) create builder for GraphQLSearchFacetPathNotFoundError instancedeepCopy
(GraphQLSearchFacetPathNotFoundError template) factory method to create a deep copy of GraphQLSearchFacetPathNotFoundError@NotNull String
getCode()
One of the error codes that is listed on the Errors page.of()
factory methodof
(GraphQLSearchFacetPathNotFoundError template) factory method to create a shallow copy GraphQLSearchFacetPathNotFoundErrorstatic com.fasterxml.jackson.core.type.TypeReference<GraphQLSearchFacetPathNotFoundError>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.error.GraphQLErrorObject
setValue, values, withGraphQLErrorObject
-
Field Details
-
SEARCH_FACET_PATH_NOT_FOUND
discriminator value for GraphQLSearchFacetPathNotFoundError- See Also:
-
-
Method Details
-
getCode
Description copied from interface:GraphQLErrorObject
One of the error codes that is listed on the Errors page.
- Specified by:
getCode
in interfaceGraphQLErrorObject
- Returns:
- code
-
of
factory method- Returns:
- instance of GraphQLSearchFacetPathNotFoundError
-
of
factory method to create a shallow copy GraphQLSearchFacetPathNotFoundError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static GraphQLSearchFacetPathNotFoundError deepCopy(@Nullable GraphQLSearchFacetPathNotFoundError template) factory method to create a deep copy of GraphQLSearchFacetPathNotFoundError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for GraphQLSearchFacetPathNotFoundError- Returns:
- builder
-
builder
static GraphQLSearchFacetPathNotFoundErrorBuilder builder(GraphQLSearchFacetPathNotFoundError template) create builder for GraphQLSearchFacetPathNotFoundError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withGraphQLSearchFacetPathNotFoundError
default <T> T withGraphQLSearchFacetPathNotFoundError(Function<GraphQLSearchFacetPathNotFoundError, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<GraphQLSearchFacetPathNotFoundError> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-