public enum AclOperation extends Enum<AclOperation>
| Enum Constant and Description |
|---|
ALL |
ALTER |
ALTERCONFIGS |
CLUSTERACTION |
CREATE |
DELETE |
DESCRIBE |
DESCRIBECONFIGS |
IDEMPOTENTWRITE |
READ |
WRITE |
| Modifier and Type | Method and Description |
|---|---|
static AclOperation |
forValue(String value) |
String |
toValue() |
static AclOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AclOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AclOperation READ
public static final AclOperation WRITE
public static final AclOperation CREATE
public static final AclOperation DELETE
public static final AclOperation ALTER
public static final AclOperation DESCRIBE
public static final AclOperation CLUSTERACTION
public static final AclOperation ALTERCONFIGS
public static final AclOperation DESCRIBECONFIGS
public static final AclOperation IDEMPOTENTWRITE
public static final AclOperation ALL
public static AclOperation[] values()
for (AclOperation c : AclOperation.values()) System.out.println(c);
public static AclOperation 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 nullpublic static AclOperation forValue(String value)
public String toValue()
Copyright © 2019. All rights reserved.