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