All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dataflow.sdk.values.KV Maven / Gradle / Ivy

Go to download

Google Cloud Dataflow Java SDK provides a simple, Java-based interface for processing virtually any size data using Google cloud resources. This artifact includes entire Dataflow Java SDK.

There is a newer version: 2.5.0
Show newest version
/*
 * Copyright (C) 2015 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.google.cloud.dataflow.sdk.values;

import com.google.cloud.dataflow.sdk.transforms.Combine;
import com.google.cloud.dataflow.sdk.transforms.GroupByKey;
import com.google.cloud.dataflow.sdk.transforms.PTransform;
import com.google.cloud.dataflow.sdk.transforms.SerializableComparator;
import com.google.common.base.MoreObjects;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Objects;

/**
 * An immutable key/value pair.
 *
 * 

Various {@link PTransform PTransforms} like {@link GroupByKey} and {@link Combine#perKey} * operate on {@link PCollection PCollections} of {@link KV KVs}. * * @param the type of the key * @param the type of the value */ public class KV implements Serializable { /** Returns a {@link KV} with the given key and value. */ public static KV of(K key, V value) { return new KV<>(key, value); } /** Returns the key of this {@link KV}. */ public K getKey() { return key; } /** Returns the value of this {@link KV}. */ public V getValue() { return value; } ///////////////////////////////////////////////////////////////////////////// final K key; final V value; private KV(K key, V value) { this.key = key; this.value = value; } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof KV)) { return false; } KV otherKv = (KV) other; // Arrays are very common as values and keys, so deepEquals is mandatory return Objects.deepEquals(this.key, otherKv.key) && Objects.deepEquals(this.value, otherKv.value); } /** * A {@link Comparator} that orders {@link KV KVs} by the natural ordering of their keys. * *

A {@code null} key is less than any non-{@code null} key. */ public static class OrderByKey, V> implements SerializableComparator> { @Override public int compare(KV a, KV b) { if (a.key == null) { return b.key == null ? 0 : -1; } else if (b.key == null) { return 1; } else { return a.key.compareTo(b.key); } } } /** * A {@link Comparator} that orders {@link KV KVs} by the natural ordering of their values. * *

A {@code null} value is less than any non-{@code null} value. */ public static class OrderByValue> implements SerializableComparator> { @Override public int compare(KV a, KV b) { if (a.value == null) { return b.value == null ? 0 : -1; } else if (b.value == null) { return 1; } else { return a.value.compareTo(b.value); } } } @Override public int hashCode() { // Objects.deepEquals requires Arrays.deepHashCode for correctness return Arrays.deepHashCode(new Object[]{key, value}); } @Override public String toString() { return MoreObjects.toStringHelper(this) .addValue(key) .addValue(value) .toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy