public static enum BitComparator.BitwiseOp extends Enum<BitComparator.BitwiseOp>
| Enum Constant and Description |
|---|
AND
Logical 'and'.
|
OR
Logical 'or'.
|
XOR
Logical 'xor'.
|
| Modifier and Type | Method and Description |
|---|---|
static BitComparator.BitwiseOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitComparator.BitwiseOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitComparator.BitwiseOp AND
public static final BitComparator.BitwiseOp OR
public static final BitComparator.BitwiseOp XOR
public static BitComparator.BitwiseOp[] values()
for (BitComparator.BitwiseOp c : BitComparator.BitwiseOp.values()) System.out.println(c);
public static BitComparator.BitwiseOp 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 © 2010-2017, The Async HBase Authors