com.azure.cosmos.encryption.implementation.mdesrc.cryptography.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cosmos-encryption Show documentation
Show all versions of azure-cosmos-encryption Show documentation
This Package contains Encryption Plugin for Microsoft Azure Cosmos SDK
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