Package com.bloomberglp.blpapi
Enum Class SubscriptionPreprocessMode
- All Implemented Interfaces:
Serializable
,Comparable<SubscriptionPreprocessMode>
,Constable
Defines how the invalid
Subscription
s are managed in the SubscriptionList
provided to Session.subscribe(SubscriptionList, Identity, String, SubscriptionPreprocessMode)
and Session.resubscribe(SubscriptionList, int, String, SubscriptionPreprocessMode)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIn this mode, an exception is thrown on the first invalid entry in theSubscriptionList
, and the entire batch will be considered failed.In this mode, instead of throwing exceptions, a list ofSubscriptionPreprocessError
is returned, each representing an error due to an invalid subscription inSubscriptionList
. -
Method Summary
Modifier and TypeMethodDescriptionstatic SubscriptionPreprocessMode
Returns the enum constant of this class with the specified name.static SubscriptionPreprocessMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
FAIL_ON_FIRST_ERROR
In this mode, an exception is thrown on the first invalid entry in theSubscriptionList
, and the entire batch will be considered failed. Otherwise, all theSubscription
s will move forward and a null list ofSubscriptionPreprocessError
is returned. -
RETURN_INDIVIDUAL_ERRORS
In this mode, instead of throwing exceptions, a list ofSubscriptionPreprocessError
is returned, each representing an error due to an invalid subscription inSubscriptionList
. The valid subscriptions will move forward.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- 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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-