Interface JsonToPdxConverter
- All Superinterfaces:
org.springframework.core.convert.converter.Converter<String,
org.apache.geode.pdx.PdxInstance>
- All Known Implementing Classes:
JSONFormatterJsonToPdxConverter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface JsonToPdxConverter
extends org.springframework.core.convert.converter.Converter<String,org.apache.geode.pdx.PdxInstance>
- Since:
- 1.3.0
- See Also:
-
FunctionalInterface
String
PdxInstance
Converter
-
Method Summary
Methods inherited from interface org.springframework.core.convert.converter.Converter
andThen, convert
-
Method Details
-
convert
@NonNull default org.apache.geode.pdx.PdxInstance convert(@NonNull byte[] json) Converts the array ofbytes
containing JSON into aPdxInstance
.
-