Class DeserializerConverterContextDecorator
- java.lang.Object
-
- de.codecentric.reedelk.platform.flow.deserializer.converter.DeserializerConverterContextDecorator
-
- All Implemented Interfaces:
de.codecentric.reedelk.runtime.converter.DeserializerConverter
public class DeserializerConverterContextDecorator extends Object implements de.codecentric.reedelk.runtime.converter.DeserializerConverter
-
-
Constructor Summary
Constructors Constructor Description DeserializerConverterContextDecorator(de.codecentric.reedelk.runtime.converter.DeserializerConverter delegate, long moduleId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Tconvert(Class<T> expectedClass, org.json.JSONArray jsonArray, int index)<T> Tconvert(Class<T> expectedClass, org.json.JSONArray jsonArray, int index, de.codecentric.reedelk.runtime.converter.DeserializerConverterContext context)<T> Tconvert(Class<T> expectedClass, org.json.JSONObject jsonObject, String propertyName)<T> Tconvert(Class<T> expectedClass, org.json.JSONObject jsonObject, String propertyName, de.codecentric.reedelk.runtime.converter.DeserializerConverterContext context)booleanisPrimitive(String fullyQualifiedName)
-
-
-
Method Detail
-
isPrimitive
public boolean isPrimitive(String fullyQualifiedName)
- Specified by:
isPrimitivein interfacede.codecentric.reedelk.runtime.converter.DeserializerConverter
-
convert
public <T> T convert(Class<T> expectedClass, org.json.JSONObject jsonObject, String propertyName)
- Specified by:
convertin interfacede.codecentric.reedelk.runtime.converter.DeserializerConverter
-
convert
public <T> T convert(Class<T> expectedClass, org.json.JSONArray jsonArray, int index)
- Specified by:
convertin interfacede.codecentric.reedelk.runtime.converter.DeserializerConverter
-
convert
public <T> T convert(Class<T> expectedClass, org.json.JSONObject jsonObject, String propertyName, de.codecentric.reedelk.runtime.converter.DeserializerConverterContext context)
- Specified by:
convertin interfacede.codecentric.reedelk.runtime.converter.DeserializerConverter
-
convert
public <T> T convert(Class<T> expectedClass, org.json.JSONArray jsonArray, int index, de.codecentric.reedelk.runtime.converter.DeserializerConverterContext context)
- Specified by:
convertin interfacede.codecentric.reedelk.runtime.converter.DeserializerConverter
-
-