Class Create.Values<T>
- All Implemented Interfaces:
Serializable
,HasDisplayData
PTransform
that creates a PCollection
from a set of in-memory objects.- See Also:
-
Field Summary
Fields inherited from class org.apache.beam.sdk.transforms.PTransform
annotations, displayData, name, resourceHints
-
Method Summary
Modifier and TypeMethodDescriptionOverride this method to specify how thisPTransform
should be expanded on the givenInputT
.Returns aCreate.Values
PTransform like this one that uses the givenCoder<T>
to decode each of the objects into a value of typeT
.withRowSchema
(Schema schema) Returns aCreate.Values
PTransform like this one that uses the givenSchema
to represent objects.withSchema
(Schema schema, TypeDescriptor<T> typeDescriptor, SerializableFunction<T, Row> toRowFunction, SerializableFunction<Row, T> fromRowFunction) Returns aCreate.Values
PTransform like this one that uses the givenSchema
to represent objects.withType
(TypeDescriptor<T> type) Returns aCreate.Values
PTransform like this one that uses the givenTypeDescriptor<T>
to determine theCoder
to use to decode each of the objects into a value of typeT
.Methods inherited from class org.apache.beam.sdk.transforms.PTransform
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validate
-
Method Details
-
withCoder
Returns aCreate.Values
PTransform like this one that uses the givenCoder<T>
to decode each of the objects into a value of typeT
.By default,
Create.Values
can automatically determine theCoder
to use if all elements have the same non-parameterized run-time class, and a default coder is registered for that class. SeeCoderRegistry
for details on how defaults are determined.Note that for
Create.Values
with no elements, theVoidCoder
is used. -
withSchema
public Create.Values<T> withSchema(Schema schema, TypeDescriptor<T> typeDescriptor, SerializableFunction<T, Row> toRowFunction, SerializableFunction<Row, T> fromRowFunction) Returns aCreate.Values
PTransform like this one that uses the givenSchema
to represent objects. -
withRowSchema
Returns aCreate.Values
PTransform like this one that uses the givenSchema
to represent objects. -
withType
Returns aCreate.Values
PTransform like this one that uses the givenTypeDescriptor<T>
to determine theCoder
to use to decode each of the objects into a value of typeT
. Note that a default coder must be registered for the class described in theTypeDescriptor<T>
.By default,
Create.Values
can automatically determine theCoder
to use if all elements have the same non-parameterized run-time class, and a default coder is registered for that class. SeeCoderRegistry
for details on how defaults are determined.Note that for
Create.Values
with no elements, theVoidCoder
is used. -
alwaysUseRead
-
getElements
-
expand
Description copied from class:PTransform
Override this method to specify how thisPTransform
should be expanded on the givenInputT
.NOTE: This method should not be called directly. Instead apply the
PTransform
should be applied to theInputT
using theapply
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).
- Specified by:
expand
in classPTransform<PBegin,
PCollection<T>>
-