public static enum RetryStrategy.OperationType extends Enum<RetryStrategy.OperationType>
Enum Constant and Description |
---|
CREATE |
DELETE |
EXISTS |
GET_ACL |
GET_CHILDREN |
GET_DATA |
SET_ACL |
SET_DATA |
Modifier and Type | Method and Description |
---|---|
static RetryStrategy.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetryStrategy.OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RetryStrategy.OperationType CREATE
public static final RetryStrategy.OperationType EXISTS
public static final RetryStrategy.OperationType GET_CHILDREN
public static final RetryStrategy.OperationType GET_DATA
public static final RetryStrategy.OperationType SET_DATA
public static final RetryStrategy.OperationType DELETE
public static final RetryStrategy.OperationType SET_ACL
public static final RetryStrategy.OperationType GET_ACL
public static RetryStrategy.OperationType[] values()
for (RetryStrategy.OperationType c : RetryStrategy.OperationType.values()) System.out.println(c);
public static RetryStrategy.OperationType 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 © 2013-2016 The Apache Software Foundation. All rights reserved.