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