com.openelements.hiero.base.data.ExchangeRates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hiero-enterprise-base Show documentation
Show all versions of hiero-enterprise-base Show documentation
Base Library to work with Hiero in Spring and JakartaEE
The newest version!
package com.openelements.hiero.base.data;
import org.jspecify.annotations.NonNull;
import java.util.Objects;
public record ExchangeRates(@NonNull ExchangeRate currentRate, @NonNull ExchangeRate nextRate) {
public ExchangeRates {
Objects.requireNonNull(currentRate, "currentRate must not be null");
Objects.requireNonNull(nextRate, "nextRate must not be null");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy