public class AsJsons<InputT> extends PTransform<PCollection<InputT>,PCollection<java.lang.String>>
PTransform for serializing objects to JSON Strings.
Transforms a PCollection<InputT> into a PCollection of JSON
Strings representing objects in the original PCollection using Jackson.name| Modifier and Type | Method and Description |
|---|---|
PCollection<java.lang.String> |
expand(PCollection<InputT> input)
Applies this
PTransform on the given InputT, and returns its
Output. |
static <OutputT> AsJsons<OutputT> |
of(java.lang.Class<? extends OutputT> outputClass)
Creates a
AsJsons PTransform that will transform a PCollection<InputT>
into a PCollection of JSON Strings representing those objects using a
Jackson ObjectMapper. |
AsJsons<InputT> |
withMapper(ObjectMapper mapper)
Use custom Jackson
ObjectMapper instead of the default one. |
getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validatepublic static <OutputT> AsJsons<OutputT> of(java.lang.Class<? extends OutputT> outputClass)
AsJsons PTransform that will transform a PCollection<InputT>
into a PCollection of JSON Strings representing those objects using a
Jackson ObjectMapper.public AsJsons<InputT> withMapper(ObjectMapper mapper)
ObjectMapper instead of the default one.public PCollection<java.lang.String> expand(PCollection<InputT> input)
PTransformPTransform on the given InputT, and returns its
Output.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand in class PTransform<PCollection<InputT>,PCollection<java.lang.String>>