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()
Returns integer code that is used in flag bits.
|
static Scope |
valueOf(int code)
Returns scope by integer code bit pattern.
|
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 static Scope valueOf(int code)
code
- integer code.ArrayIndexOutOfBoundsException
- if code is invalid.public int getCode()
Copyright © 2002–2023 Devexperts LLC. All rights reserved.