Enum Class NorthstarEventType
- 所有已实现的接口:
Serializable,Comparable<NorthstarEventType>,Constable
系统事件列表
- 作者:
- KevinHuangwl
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明账户回报事件出入金事件K线BAR事件合约事件网关就绪登陆成功登出成功登陆中登出中消息事件委托回报事件持仓回报事件行情TICK事件成交回报事件 -
方法概要
修饰符和类型方法说明static NorthstarEventTypeReturns the enum constant of this class with the specified name.static NorthstarEventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
TICK
行情TICK事件 -
BAR
K线BAR事件 -
ACCOUNT
账户回报事件 -
POSITION
持仓回报事件 -
TRADE
成交回报事件 -
ORDER
委托回报事件 -
NOTICE
消息事件 -
CONTRACT
合约事件 -
BALANCE
出入金事件 -
LOGGING_IN
登陆中 -
LOGGED_IN
登陆成功 -
LOGGING_OUT
登出中 -
LOGGED_OUT
登出成功 -
GATEWAY_READY
网关就绪
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- 如果参数为空值
-