public static enum ExceptionHandler.Interceptor.RetryResult extends Enum<ExceptionHandler.Interceptor.RetryResult>
Enum Constant and Description |
---|
CONTINUE_EVALUATION |
NO_RETRY |
RETRY |
Modifier and Type | Method and Description |
---|---|
static ExceptionHandler.Interceptor.RetryResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionHandler.Interceptor.RetryResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionHandler.Interceptor.RetryResult NO_RETRY
public static final ExceptionHandler.Interceptor.RetryResult RETRY
public static final ExceptionHandler.Interceptor.RetryResult CONTINUE_EVALUATION
public static ExceptionHandler.Interceptor.RetryResult[] values()
for (ExceptionHandler.Interceptor.RetryResult c : ExceptionHandler.Interceptor.RetryResult.values()) System.out.println(c);
public static ExceptionHandler.Interceptor.RetryResult 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 © 2019 Google LLC. All rights reserved.