public static enum DefaultRetryToken.TokenState extends Enum<DefaultRetryToken.TokenState>
| Enum Constant and Description |
|---|
IN_PROGRESS
The request operation is in-progress.
|
MAX_RETRIES_REACHED
The request operation failed with max retries reached.
|
NON_RETRYABLE_EXCEPTION
The request operation failed with non-retryable exception caught.
|
SUCCEEDED
The request operation concluded successfully.
|
TOKEN_ACQUISITION_FAILED
The request operation failed with token acquisition failure.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultRetryToken.TokenState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultRetryToken.TokenState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultRetryToken.TokenState IN_PROGRESS
public static final DefaultRetryToken.TokenState SUCCEEDED
public static final DefaultRetryToken.TokenState TOKEN_ACQUISITION_FAILED
public static final DefaultRetryToken.TokenState MAX_RETRIES_REACHED
public static final DefaultRetryToken.TokenState NON_RETRYABLE_EXCEPTION
public static DefaultRetryToken.TokenState[] values()
for (DefaultRetryToken.TokenState c : DefaultRetryToken.TokenState.values()) System.out.println(c);
public static DefaultRetryToken.TokenState 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 © 2026. All rights reserved.