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