public static enum ISignal.Type extends java.lang.Enum<ISignal.Type>
Enum Constant and Description |
---|
ORDER_BUY |
ORDER_CANCEL |
ORDER_CLOSE |
ORDER_MERGE |
ORDER_MODIFY |
ORDER_SELL |
Modifier and Type | Method and Description |
---|---|
static ISignal.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ISignal.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISignal.Type ORDER_BUY
public static final ISignal.Type ORDER_SELL
public static final ISignal.Type ORDER_CLOSE
public static final ISignal.Type ORDER_MODIFY
public static final ISignal.Type ORDER_MERGE
public static final ISignal.Type ORDER_CANCEL
public static ISignal.Type[] values()
for (ISignal.Type c : ISignal.Type.values()) System.out.println(c);
public static ISignal.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.