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)
Override this method to specify how this
PTransform should be expanded on the given
InputT. |
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. |
compose, compose, 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 should be expanded on the given
InputT.
NOTE: This method should not be called directly. Instead apply the PTransform should
be applied to the InputT using the apply method.
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>>