Values

Javadoc Javadoc


The Values transform takes a collection of key-value pairs, and returns the value of each element.

Examples

Example

PCollection<KV<String, Integer>> keyValuePairs = /* ... */;
PCollection<Integer> values = keyValuePairs.apply(Values.create());