@FunctionalInterface
public interface JsonToPdxArrayConverter
extends org.springframework.core.convert.converter.Converter<java.lang.String,org.apache.geode.pdx.PdxInstance[]>
Converter interface extension defining a contract to convert
from JSON to an array of PdxInstance objects.FunctionalInterface,
String,
PdxInstance,
Converter| Modifier and Type | Method and Description |
|---|---|
default org.apache.geode.pdx.PdxInstance[] |
convert(byte[] json)
Converts the array of
bytes containing JSON into an array of PdxInstance objects. |
@NonNull
default org.apache.geode.pdx.PdxInstance[] convert(@NonNull
byte[] json)
bytes containing JSON into an array of PdxInstance objects.json - array of bytes containing the JSON to convert; must not be null.PdxInstance objects converted from the array of bytes
containing JSON.PdxInstance,
Converter.convert(Object)