public static enum SubscriptionMeta.NotifyStrategy extends Enum<SubscriptionMeta.NotifyStrategy>
| Enum Constant and Description |
|---|
BACKOFF_RETRY |
EXPONENTIAL_DECAY_RETRY |
| Modifier and Type | Method and Description |
|---|---|
static SubscriptionMeta.NotifyStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionMeta.NotifyStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionMeta.NotifyStrategy BACKOFF_RETRY
public static final SubscriptionMeta.NotifyStrategy EXPONENTIAL_DECAY_RETRY
public static SubscriptionMeta.NotifyStrategy[] values()
for (SubscriptionMeta.NotifyStrategy c : SubscriptionMeta.NotifyStrategy.values()) System.out.println(c);
public static SubscriptionMeta.NotifyStrategy 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 © 2024. All Rights Reserved.