public static enum MockZooKeeper.Op extends Enum<MockZooKeeper.Op>
| Enum Constant and Description |
|---|
CREATE |
DELETE |
EXISTS |
GET |
GET_CHILDREN |
SET |
SYNC |
| Modifier and Type | Method and Description |
|---|---|
static MockZooKeeper.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MockZooKeeper.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MockZooKeeper.Op CREATE
public static final MockZooKeeper.Op GET
public static final MockZooKeeper.Op SET
public static final MockZooKeeper.Op GET_CHILDREN
public static final MockZooKeeper.Op DELETE
public static final MockZooKeeper.Op EXISTS
public static final MockZooKeeper.Op SYNC
public static MockZooKeeper.Op[] values()
for (MockZooKeeper.Op c : MockZooKeeper.Op.values()) System.out.println(c);
public static MockZooKeeper.Op 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 © 2017–2021 Apache Software Foundation. All rights reserved.