public enum RetryStatus extends Enum<RetryStatus>
Enum Constant and Description |
---|
FIRST_INVOCATION |
NOT_YET_INVOKED |
RETRIED_INVOCATION |
Modifier and Type | Method and Description |
---|---|
static RetryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RetryStatus NOT_YET_INVOKED
public static final RetryStatus FIRST_INVOCATION
public static final RetryStatus RETRIED_INVOCATION
public static RetryStatus[] values()
for (RetryStatus c : RetryStatus.values()) System.out.println(c);
public static RetryStatus 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 © 2016 – 2022 Eclipse Foundation. All rights reserved.
Use is subject to license terms.