public static enum ExponentialBackoffRetryOptions.JitterMode extends Enum<ExponentialBackoffRetryOptions.JitterMode>
Enum Constant and Description |
---|
Decorrelated |
Default |
Full |
None |
Modifier and Type | Method and Description |
---|---|
static ExponentialBackoffRetryOptions.JitterMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExponentialBackoffRetryOptions.JitterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExponentialBackoffRetryOptions.JitterMode Default
public static final ExponentialBackoffRetryOptions.JitterMode None
public static final ExponentialBackoffRetryOptions.JitterMode Full
public static final ExponentialBackoffRetryOptions.JitterMode Decorrelated
public static ExponentialBackoffRetryOptions.JitterMode[] values()
for (ExponentialBackoffRetryOptions.JitterMode c : ExponentialBackoffRetryOptions.JitterMode.values()) System.out.println(c);
public static ExponentialBackoffRetryOptions.JitterMode 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 © 2021. All rights reserved.