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

com.azure.cosmos.encryption.implementation.mdesrc.cryptography.Tuple Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License.
 */

package com.azure.cosmos.encryption.implementation.mdesrc.cryptography;

/**
 * Class used to represent an object with two elements.
 *
 */
public class Tuple {
    final Y y;
    final Z z;

    /**
     * Creates an object with two elements.
     *
     * @param y
     *        element 1
     * @param z
     *        element 2
     */
    public Tuple(Y y, Z z) {
        this.y = y;
        this.z = z;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy