public class ParseJsons<OutputT> extends PTransform<PCollection<java.lang.String>,PCollection<OutputT>>
PTransform for parsing JSON Strings.
Parse PCollection of Strings in JSON format into a PCollection of
objects represented by those JSON Strings using Jackson.name| Modifier and Type | Method and Description |
|---|---|
PCollection<OutputT> |
expand(PCollection<java.lang.String> input)
Applies this
PTransform on the given InputT, and returns its
Output. |
static <OutputT> ParseJsons<OutputT> |
of(java.lang.Class<? extends OutputT> outputClass)
Creates a
ParseJsons PTransform that will parse JSON Strings
into a PCollection<OutputT> using a Jackson ObjectMapper. |
ParseJsons<OutputT> |
withMapper(ObjectMapper mapper)
Use custom Jackson
ObjectMapper instead of the default one. |
getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validatepublic static <OutputT> ParseJsons<OutputT> of(java.lang.Class<? extends OutputT> outputClass)
ParseJsons PTransform that will parse JSON Strings
into a PCollection<OutputT> using a Jackson ObjectMapper.public ParseJsons<OutputT> withMapper(ObjectMapper mapper)
ObjectMapper instead of the default one.public PCollection<OutputT> expand(PCollection<java.lang.String> 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<java.lang.String>,PCollection<OutputT>>