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