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

com.xeiam.xchange.okcoin.FuturesContract Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.xeiam.xchange.okcoin;

/**
 * Delivery dates for future date currencies
 */
public enum FuturesContract {
  ThisWeek("this_week"), NextWeek("next_week"), Month("month"), Quarter("quarter");

  private final String name;

  /**
   * Private constructor so it cannot be instantiated
   */
  private FuturesContract(String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy