
net.jacobpeterson.polygon.enums.Market Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpaca-java Show documentation
Show all versions of alpaca-java Show documentation
Java API for Alpaca and Polygon
package net.jacobpeterson.polygon.enums;
import net.jacobpeterson.abstracts.enums.APIName;
/**
* The Enum SymbolsMarket.
*/
public enum Market implements APIName {
/** Stocks market. */
STOCKS("stocks"),
/** Indices market. */
INDICES("indices"),
/** Crypto market */
CRYPTO("crypto"),
/** Fx market. */
FX("fx"),
/** Bonds market. */
BONDS("bonds"),
/** Mf market. */
MF("mf"),
/** Mmf market. */
MMF("mmf");
/** The api name. */
String apiName;
/**
* Instantiates a new order type.
*
* @param apiName the api name
*/
Market(String apiName) {
this.apiName = apiName;
}
@Override
public String getAPIName() {
return apiName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy