Package | Description |
---|---|
io.sphere.sdk.customobjects.queries |
Provides types to retrieve the state of custom objects.
|
Modifier and Type | Method and Description |
---|---|
static <T> CustomObjectByIdGet<T> |
CustomObjectByIdGet.of(String id,
Class<T> valueClass)
Creates an object to fetch a custom object by id with POJO mapping.
|
static <T> CustomObjectByIdGet<T> |
CustomObjectByIdGet.of(String id,
com.fasterxml.jackson.core.type.TypeReference<T> valueTypeReference)
Creates an object to fetch a custom object by the container and key with POJO mapping.
|
static CustomObjectByIdGet<com.fasterxml.jackson.databind.JsonNode> |
CustomObjectByIdGet.ofJsonNode(String id)
Creates an object to fetch a custom object by the container and get the result as
JsonNode . |
CustomObjectByIdGet<T> |
CustomObjectByIdGet.plusExpansionPaths(ExpansionPath<CustomObject<T>> expansionPath) |
CustomObjectByIdGet<T> |
CustomObjectByIdGet.withExpansionPaths(ExpansionPath<CustomObject<T>> expansionPath) |
CustomObjectByIdGet<T> |
CustomObjectByIdGet.withExpansionPaths(List<ExpansionPath<CustomObject<T>>> expansionPaths) |