Package com.bazaarvoice.jolt
Interface Transform
-
- All Superinterfaces:
JoltTransform
public interface Transform extends JoltTransform
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
transform(java.lang.Object input)
Execute a transform on some input JSON with optionally provided "context" and return the result.
-
-
-
Method Detail
-
transform
java.lang.Object transform(java.lang.Object input)
Execute a transform on some input JSON with optionally provided "context" and return the result.- Parameters:
input
- the JSON object to transform in plain vanilla Jackson Mapstyle - Returns:
- the results of the transformation
- Throws:
TransformException
- if there are issues with the transform
-
-