com.bloxbean.cardano.client.util.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common Show documentation
Show all versions of cardano-client-common Show documentation
Cardano Client Lib - Common Module
The newest version!
package com.bloxbean.cardano.client.util;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@ToString
@EqualsAndHashCode
public class Tuple {
public T _1;
public Z _2;
public Tuple(T _1, Z _2) {
this._1 = _1;
this._2 = _2;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy