public static enum SubscriptionPreprocessError.Code extends Enum<SubscriptionPreprocessError.Code>
| Enum Constant and Description |
|---|
CORRELATIONID_ERROR
Indicates that the
CorrelationID of a Subscription is
invalid. |
INVALID_SUBSCRIPTION_STRING
Indicates that the subscription string of a
Subscription is
invalid. |
| Modifier and Type | Method and Description |
|---|---|
static SubscriptionPreprocessError.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionPreprocessError.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionPreprocessError.Code INVALID_SUBSCRIPTION_STRING
Subscription is
invalid.public static final SubscriptionPreprocessError.Code CORRELATIONID_ERROR
CorrelationID of a Subscription is
invalid.public static SubscriptionPreprocessError.Code[] values()
for (SubscriptionPreprocessError.Code c : SubscriptionPreprocessError.Code.values()) System.out.println(c);
public static SubscriptionPreprocessError.Code 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 nullCopyright © 2022 Bloomberg L.P.. All rights reserved.