Uses of Class
com.aerospike.client.operation.BitPolicy
Packages that use BitPolicy
-
Uses of BitPolicy in com.aerospike.client.exp
Methods in com.aerospike.client.exp with parameters of type BitPolicyModifier and TypeMethodDescriptionstatic ExpBitExp.add(BitPolicy policy, Exp bitOffset, Exp bitSize, Exp value, boolean signed, BitOverflowAction action, Exp bin) Create expression that adds value to byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpCreate expression that performs bitwise "and" on value and byte[] bin at bitOffset for bitSize and returns byte[].static ExpCreate expression that inserts value bytes into byte[] bin at byteOffset and returns byte[].static ExpCreate expression that shifts left byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpCreate expression that negates byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpCreate expression that performs bitwise "or" on value and byte[] bin at bitOffset for bitSize and returns byte[].static ExpCreate expression that removes bytes from byte[] bin at byteOffset for byteSize and returns byte[].static ExpCreate expression that resizes byte[] to byteSize according to resizeFlags (SeeBitResizeFlags) and returns byte[].static ExpCreate expression that shifts right byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpCreate expression that sets value on byte[] bin at bitOffset for bitSize and returns byte[].static ExpCreate expression that sets value to byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpBitExp.subtract(BitPolicy policy, Exp bitOffset, Exp bitSize, Exp value, boolean signed, BitOverflowAction action, Exp bin) Create expression that subtracts value from byte[] bin starting at bitOffset for bitSize and returns byte[].static ExpCreate expression that performs bitwise "xor" on value and byte[] bin at bitOffset for bitSize and returns byte[]. -
Uses of BitPolicy in com.aerospike.client.operation
Fields in com.aerospike.client.operation declared as BitPolicyModifier and TypeFieldDescriptionstatic final BitPolicyBitPolicy.DefaultDefault byte[] with normal bin write semantics.Methods in com.aerospike.client.operation with parameters of type BitPolicyModifier and TypeMethodDescriptionstatic OperationBitOperation.add(BitPolicy policy, String binName, int bitOffset, int bitSize, long value, boolean signed, BitOverflowAction action) Create bit "add" operation.static OperationCreate bit "and" operation.static OperationCreate byte "insert" operation.static OperationCreate bit "left shift" operation.static OperationCreate bit "not" operation.static OperationCreate bit "or" operation.static OperationCreate byte "remove" operation.static OperationCreate byte "resize" operation.static OperationCreate bit "right shift" operation.static OperationCreate bit "set" operation.static OperationCreate bit "setInt" operation.static OperationBitOperation.subtract(BitPolicy policy, String binName, int bitOffset, int bitSize, long value, boolean signed, BitOverflowAction action) Create bit "subtract" operation.static OperationCreate bit "exclusive or" operation.