public enum OperationResultStatus extends Enum<OperationResultStatus>
Enum Constant and Description |
---|
FAILURE |
IN_PROGRESS |
SUCCESS |
Modifier and Type | Method and Description |
---|---|
static OperationResultStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationResultStatus SUCCESS
public static final OperationResultStatus FAILURE
public static final OperationResultStatus IN_PROGRESS
public static OperationResultStatus[] values()
for (OperationResultStatus c : OperationResultStatus.values()) System.out.println(c);
public static OperationResultStatus 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 © 2014–2023 The Apache Software Foundation. All rights reserved.