All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.kuna.dto.enums.KunaSide Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
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