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 collections
- V1- 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 SummaryFields inherited from class org.apache.beam.sdk.transforms.PTransformannotations, displayData, name, resourceHints
- 
Method SummaryModifier 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.PTransformaddAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setDisplayData, setResourceHints, toString, validate, validate
- 
Method Details- 
withpublic static <K,V1, Join.FullOuterJoin<K,V2> V1, withV2> (PCollection<KV<K, V2>> rightCollection, V1 leftNullValue, V2 rightNullValue) 
- 
expandDescription 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 class- PTransform<PCollection<KV<K,- V1>>, - PCollection<KV<K, - KV<V1, - V2>>>> 
 
 
-