public enum Scope extends Enum<Scope>
Enum Constant and Description |
---|
AGGREGATE
Represents aggregate information for a given price level or
best bid or best offer for a given market maker.
|
COMPOSITE
Represents best bid or best offer for the whole market.
|
ORDER
Represents individual order on the market.
|
REGIONAL
Represents best bid or best offer for a given exchange code.
|
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static Scope |
valueOf(int code) |
static Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope COMPOSITE
public static final Scope REGIONAL
public static final Scope AGGREGATE
public static final Scope ORDER
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic int getCode()
public static Scope valueOf(int code)
Copyright © 2015 Devexperts. All Rights Reserved.