Redis
@Deprecated public enum BitOperation extends Enum<BitOperation>
Enum Constant and Description |
---|
AND
Deprecated.
|
NOT
Deprecated.
|
OR
Deprecated.
|
XOR
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static BitOperation |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static BitOperation[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitOperation AND
public static final BitOperation OR
public static final BitOperation XOR
public static final BitOperation NOT
public static BitOperation[] values()
for (BitOperation c : BitOperation.values()) System.out.println(c);
public static BitOperation 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 © 2023 Eclipse. All rights reserved.