public enum BookUpdatedCallbackPolicy extends Enum<BookUpdatedCallbackPolicy>
Enum Constant and Description |
---|
CALL_BOOK_UPDATED_AFTER_EACH_INCREMENTAL_MESSAGE
Book updated events will be called after each incremental message.
|
CALL_BOOK_UPDATED_AFTER_END_OF_QUOTES
Book updated events will be called after end-of-corresponding-quotes will be present
in tag MatchEventIndicator 5799.
|
Modifier and Type | Method and Description |
---|---|
static BookUpdatedCallbackPolicy |
forValue(int value)
Convert int to enumeration.
|
int |
getValue()
Get int value.
|
static BookUpdatedCallbackPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookUpdatedCallbackPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookUpdatedCallbackPolicy CALL_BOOK_UPDATED_AFTER_END_OF_QUOTES
public static final BookUpdatedCallbackPolicy CALL_BOOK_UPDATED_AFTER_EACH_INCREMENTAL_MESSAGE
public static BookUpdatedCallbackPolicy[] values()
for (BookUpdatedCallbackPolicy c : BookUpdatedCallbackPolicy.values()) System.out.println(c);
public static BookUpdatedCallbackPolicy 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 getValue()
public static BookUpdatedCallbackPolicy forValue(int value)
value
- int value.Copyright © 2010–2020 Onix Solutions. All rights reserved.