@Experimental public enum ArBitwiseType extends Enum<ArBitwiseType>
AROP command that return an integer (Long).
These operations perform bitwise operations over array elements in a given range.
| Enum Constant and Description |
|---|
AND
Returns the bitwise AND of all integer values in the range.
|
OR
Returns the bitwise OR of all integer values in the range.
|
XOR
Returns the bitwise XOR of all integer values in the range.
|
| Modifier and Type | Method and Description |
|---|---|
static ArBitwiseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArBitwiseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArBitwiseType AND
public static final ArBitwiseType OR
public static final ArBitwiseType XOR
public static ArBitwiseType[] values()
for (ArBitwiseType c : ArBitwiseType.values()) System.out.println(c);
public static ArBitwiseType 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 © 2026 lettuce.io. All rights reserved.