Class Join.FullOuterJoin<K,V1,V2>
java.lang.Object
org.apache.beam.sdk.transforms.PTransform<PCollection<KV<K,V1>>,PCollection<KV<K,KV<V1,V2>>>>
org.apache.beam.sdk.extensions.joinlibrary.Join.FullOuterJoin<K,V1,V2>
- Type Parameters:
K- Type of the key for both collectionsV1- Type of the values for the left collection.V2- Type of the values for the right collection.
- All Implemented Interfaces:
Serializable,HasDisplayData
- Enclosing class:
Join
public static class Join.FullOuterJoin<K,V1,V2>
extends PTransform<PCollection<KV<K,V1>>,PCollection<KV<K,KV<V1,V2>>>>
PTransform representing a full outer join of two collections of KV elements.
- See Also:
-
Field Summary
Fields inherited from class org.apache.beam.sdk.transforms.PTransform
annotations, displayData, name, resourceHints -
Method Summary
Modifier and TypeMethodDescriptionexpand(PCollection<KV<K, V1>> leftCollection) Override this method to specify how thisPTransformshould be expanded on the givenInputT.static <K,V1, V2>
Join.FullOuterJoin<K, V1, V2> with(PCollection<KV<K, V2>> rightCollection, V1 leftNullValue, V2 rightNullValue) 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
-
with
public static <K,V1, Join.FullOuterJoin<K,V2> V1, withV2> (PCollection<KV<K, V2>> rightCollection, V1 leftNullValue, V2 rightNullValue) -
expand
Description copied from class:PTransformOverride this method to specify how thisPTransformshould be expanded on the givenInputT.NOTE: This method should not be called directly. Instead apply the
PTransformshould be applied to theInputTusing theapplymethod.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:
expandin classPTransform<PCollection<KV<K,V1>>, PCollection<KV<K, KV<V1, V2>>>>
-