private static enum AsyncProcess.Retry extends Enum<AsyncProcess.Retry>
Enum Constant and Description |
---|
NO_LOCATION_PROBLEM |
NO_NOT_RETRIABLE |
NO_OTHER_SUCCEEDED |
NO_RETRIES_EXHAUSTED |
YES |
Modifier and Type | Method and Description |
---|---|
static AsyncProcess.Retry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncProcess.Retry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncProcess.Retry YES
public static final AsyncProcess.Retry NO_LOCATION_PROBLEM
public static final AsyncProcess.Retry NO_NOT_RETRIABLE
public static final AsyncProcess.Retry NO_RETRIES_EXHAUSTED
public static final AsyncProcess.Retry NO_OTHER_SUCCEEDED
public static AsyncProcess.Retry[] values()
for (AsyncProcess.Retry c : AsyncProcess.Retry.values()) System.out.println(c);
public static AsyncProcess.Retry 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 © 2007–2019 The Apache Software Foundation. All rights reserved.