org.knowm.xchange.kuna.dto.enums.KunaSide Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kuna Show documentation
Show all versions of xchange-kuna Show documentation
XChange implementation for the Kuna Exchange
package org.knowm.xchange.kuna.dto.enums;
/** @author Dat Bui */
public enum KunaSide {
BUY,
SELL;
public static KunaSide valueOfIgnoreCase(String name) {
return name == null ? null : KunaSide.valueOf(name.trim().toUpperCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy