net.osslabz.crypto.TradingAsset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crypto-commons Show documentation
Show all versions of crypto-commons Show documentation
Provides common functionality for some of my crypto related projects.
package net.osslabz.crypto;
import java.util.Objects;
/**
* Identifies a trading asset (a currency pair on a specific exchange).
*
* @param exchange
* @param currencyPair
*/
public record TradingAsset(Exchange exchange, CurrencyPair currencyPair) {
public TradingAsset {
Objects.requireNonNull(exchange, "exchange cannot be null");
Objects.requireNonNull(currencyPair, "currencyPair cannot be null");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy