com.bloxbean.cardano.client.spec.Rational Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common-spec Show documentation
Show all versions of cardano-client-common-spec Show documentation
Cardano Client Lib - Common Spec classes used in other spec modules
package com.bloxbean.cardano.client.spec;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import java.math.BigInteger;
@Getter
@ToString
@EqualsAndHashCode(callSuper = true)
public class Rational extends UnitInterval {
public Rational(BigInteger numerator, BigInteger denominator) {
super(numerator, denominator);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy