private static enum TestAtomicOperation.TestStep extends Enum<TestAtomicOperation.TestStep>
Enum Constant and Description |
---|
CHECKANDPUT_COMPLETED |
CHECKANDPUT_STARTED |
INIT |
PUT_COMPLETED |
PUT_STARTED |
Modifier and Type | Method and Description |
---|---|
static TestAtomicOperation.TestStep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestAtomicOperation.TestStep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestAtomicOperation.TestStep INIT
public static final TestAtomicOperation.TestStep PUT_STARTED
public static final TestAtomicOperation.TestStep PUT_COMPLETED
public static final TestAtomicOperation.TestStep CHECKANDPUT_STARTED
public static final TestAtomicOperation.TestStep CHECKANDPUT_COMPLETED
public static TestAtomicOperation.TestStep[] values()
for (TestAtomicOperation.TestStep c : TestAtomicOperation.TestStep.values()) System.out.println(c);
public static TestAtomicOperation.TestStep 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–2020 The Apache Software Foundation. All rights reserved.