Skip navigation links
A B C D E F G H I K L M O P R S T U V W 

A

AbstractTextSerializer - Class in org.apache.cassandra.serializers
 
AbstractTextSerializer(Charset) - Constructor for class org.apache.cassandra.serializers.AbstractTextSerializer
 
arrayCopy(ByteBuffer, int, byte[], int, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
arrayCopy(ByteBuffer, int, ByteBuffer, int, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Transfer bytes from one ByteBuffer to another.
AsciiSerializer - Class in org.apache.cassandra.serializers
 

B

BooleanSerializer - Class in org.apache.cassandra.serializers
 
BooleanSerializer() - Constructor for class org.apache.cassandra.serializers.BooleanSerializer
 
ByteBufferUtil - Class in org.apache.cassandra.utils
Utility methods to make ByteBuffers less painful The following should illustrate the different ways byte buffers can be used public void testArrayOffet() { byte[] b = "test_slice_array".getBytes(); ByteBuffer bb = ByteBuffer.allocate(1024); assert bb.position() == 0; assert bb.limit() == 1024; assert bb.capacity() == 1024; bb.put(b); assert bb.position() == b.length; assert bb.remaining() == bb.limit() - bb.position(); ByteBuffer bb2 = bb.slice(); assert bb2.position() == 0; //slice should begin at other buffers current position assert bb2.arrayOffset() == bb.position(); //to match the position in the underlying array one needs to //track arrayOffset assert bb2.limit()+bb2.arrayOffset() == bb.limit(); assert bb2.remaining() == bb.remaining(); } }
ByteBufferUtil() - Constructor for class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(String) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Encode a String in a ByteBuffer using UTF_8.
bytes(String, Charset) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Encode a String in a ByteBuffer using the provided charset.
bytes(short) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(long) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(float) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(double) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(InetAddress) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytes(UUID) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
ByteSerializer - Class in org.apache.cassandra.serializers
 
ByteSerializer() - Constructor for class org.apache.cassandra.serializers.ByteSerializer
 
BytesSerializer - Class in org.apache.cassandra.serializers
 
BytesSerializer() - Constructor for class org.apache.cassandra.serializers.BytesSerializer
 
bytesToHex(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
bytesToHex(byte...) - Static method in class org.apache.cassandra.utils.Hex
 

C

clone(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
CollectionSerializer<T> - Class in org.apache.cassandra.serializers
 
CollectionSerializer() - Constructor for class org.apache.cassandra.serializers.CollectionSerializer
 
compare(byte[], ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
compare(ByteBuffer, byte[]) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
compareSubArrays(ByteBuffer, int, ByteBuffer, int, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Compare two ByteBuffer at specified offsets for length.
compareUnsigned(ByteBuffer, ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
CounterSerializer - Class in org.apache.cassandra.serializers
 
CounterSerializer() - Constructor for class org.apache.cassandra.serializers.CounterSerializer
 

D

dateStringToDays(String) - Static method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
dateStringToTimestamp(String) - Static method in class org.apache.cassandra.serializers.TimestampSerializer
 
dayToTimeInMillis(int) - Static method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
DecimalSerializer - Class in org.apache.cassandra.serializers
 
DecimalSerializer() - Constructor for class org.apache.cassandra.serializers.DecimalSerializer
 
decompose(UUID) - Static method in class org.apache.cassandra.utils.UUIDGen
decomposes a uuid into raw bytes.
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.AbstractTextSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.BooleanSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.ByteSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.BytesSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.DecimalSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.DoubleSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.EmptySerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.FloatSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.InetAddressSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.Int32Serializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.IntegerSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.LongSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.ShortSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.TimeSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.TimestampSerializer
 
deserialize(ByteBuffer) - Method in interface org.apache.cassandra.serializers.TypeSerializer
 
deserialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.UUIDSerializer
 
deserializeForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
deserializeForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.ListSerializer
 
deserializeForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.MapSerializer
 
deserializeForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.SetSerializer
 
DoubleSerializer - Class in org.apache.cassandra.serializers
 
DoubleSerializer() - Constructor for class org.apache.cassandra.serializers.DoubleSerializer
 

E

elements - Variable in class org.apache.cassandra.serializers.ListSerializer
 
elements - Variable in class org.apache.cassandra.serializers.SetSerializer
 
EMPTY_BYTE_BUFFER - Static variable in class org.apache.cassandra.utils.ByteBufferUtil
 
EmptySerializer - Class in org.apache.cassandra.serializers
 
EmptySerializer() - Constructor for class org.apache.cassandra.serializers.EmptySerializer
 

F

FloatSerializer - Class in org.apache.cassandra.serializers
 
FloatSerializer() - Constructor for class org.apache.cassandra.serializers.FloatSerializer
 

G

getAdjustedTimestamp(UUID) - Static method in class org.apache.cassandra.utils.UUIDGen
Returns a milliseconds-since-epoch value for a type-1 UUID.
getArray(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
You should almost never use this.
getElement(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.ListSerializer
Returns the element at the given index in a list.
getElementCount(T) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
getElementCount(List<T>) - Method in class org.apache.cassandra.serializers.ListSerializer
 
getElementCount(Map<K, V>) - Method in class org.apache.cassandra.serializers.MapSerializer
 
getElementCount(Set<T>) - Method in class org.apache.cassandra.serializers.SetSerializer
 
getInstance(TypeSerializer<T>) - Static method in class org.apache.cassandra.serializers.ListSerializer
 
getInstance(TypeSerializer<K>, TypeSerializer<V>, Comparator<ByteBuffer>) - Static method in class org.apache.cassandra.serializers.MapSerializer
 
getInstance(TypeSerializer<T>, Comparator<ByteBuffer>) - Static method in class org.apache.cassandra.serializers.SetSerializer
 
getProtectedConstructor(Class<T>, Class<?>...) - Static method in class org.apache.cassandra.utils.Hex
Used to get access to protected/private constructor of the specified class
getSerializedValue(ByteBuffer, ByteBuffer, AbstractType) - Method in class org.apache.cassandra.serializers.MapSerializer
Given a serialized map, gets the value associated with a given key.
getShortLength(ByteBuffer, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
getTimeUUID() - Static method in class org.apache.cassandra.utils.UUIDGen
Creates a type 1 UUID (time-based UUID).
getTimeUUID(long) - Static method in class org.apache.cassandra.utils.UUIDGen
Creates a type 1 UUID (time-based UUID) with the timestamp of @param when, in milliseconds.
getTimeUUID(long, long) - Static method in class org.apache.cassandra.utils.UUIDGen
 
getTimeUUID(long, long, long) - Static method in class org.apache.cassandra.utils.UUIDGen
 
getTimeUUIDBytes() - Static method in class org.apache.cassandra.utils.UUIDGen
Returns a 16 byte representation of a type 1 UUID (a time-based UUID), based on the current system time.
getTimeUUIDBytes(long, int) - Static method in class org.apache.cassandra.utils.UUIDGen
Converts a 100-nanoseconds precision timestamp into the 16 byte representation of a type 1 UUID (a time-based UUID).
getTimeUUIDFromMicros(long) - Static method in class org.apache.cassandra.utils.UUIDGen
 
getType() - Method in class org.apache.cassandra.serializers.AbstractTextSerializer
 
getType() - Method in class org.apache.cassandra.serializers.BooleanSerializer
 
getType() - Method in class org.apache.cassandra.serializers.ByteSerializer
 
getType() - Method in class org.apache.cassandra.serializers.BytesSerializer
 
getType() - Method in class org.apache.cassandra.serializers.DecimalSerializer
 
getType() - Method in class org.apache.cassandra.serializers.DoubleSerializer
 
getType() - Method in class org.apache.cassandra.serializers.EmptySerializer
 
getType() - Method in class org.apache.cassandra.serializers.FloatSerializer
 
getType() - Method in class org.apache.cassandra.serializers.InetAddressSerializer
 
getType() - Method in class org.apache.cassandra.serializers.Int32Serializer
 
getType() - Method in class org.apache.cassandra.serializers.IntegerSerializer
 
getType() - Method in class org.apache.cassandra.serializers.ListSerializer
 
getType() - Method in class org.apache.cassandra.serializers.LongSerializer
 
getType() - Method in class org.apache.cassandra.serializers.MapSerializer
 
getType() - Method in class org.apache.cassandra.serializers.SetSerializer
 
getType() - Method in class org.apache.cassandra.serializers.ShortSerializer
 
getType() - Method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
getType() - Method in class org.apache.cassandra.serializers.TimeSerializer
 
getType() - Method in class org.apache.cassandra.serializers.TimestampSerializer
 
getType() - Method in interface org.apache.cassandra.serializers.TypeSerializer
 
getType() - Method in class org.apache.cassandra.serializers.UUIDSerializer
 
getUUID(ByteBuffer) - Static method in class org.apache.cassandra.utils.UUIDGen
creates a type 1 uuid from raw bytes.

H

Hex - Class in org.apache.cassandra.utils
 
Hex() - Constructor for class org.apache.cassandra.utils.Hex
 
hexToBytes(String) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
hexToBytes(String) - Static method in class org.apache.cassandra.utils.Hex
 

I

InetAddressSerializer - Class in org.apache.cassandra.serializers
 
InetAddressSerializer() - Constructor for class org.apache.cassandra.serializers.InetAddressSerializer
 
inputStream(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
instance - Static variable in class org.apache.cassandra.serializers.AsciiSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.BooleanSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.ByteSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.BytesSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.DecimalSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.DoubleSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.EmptySerializer
 
instance - Static variable in class org.apache.cassandra.serializers.FloatSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.InetAddressSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.Int32Serializer
 
instance - Static variable in class org.apache.cassandra.serializers.IntegerSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.LongSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.ShortSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.SimpleDateSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.TimeSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.TimestampSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.TimeUUIDSerializer
 
instance - Static variable in class org.apache.cassandra.serializers.UTF8Serializer
 
instance - Static variable in class org.apache.cassandra.serializers.UUIDSerializer
 
Int32Serializer - Class in org.apache.cassandra.serializers
 
Int32Serializer() - Constructor for class org.apache.cassandra.serializers.Int32Serializer
 
IntegerSerializer - Class in org.apache.cassandra.serializers
 
IntegerSerializer() - Constructor for class org.apache.cassandra.serializers.IntegerSerializer
 
isPrefix(ByteBuffer, ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 

K

keys - Variable in class org.apache.cassandra.serializers.MapSerializer
 

L

lastIndexOf(ByteBuffer, byte, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
ByteBuffer adaptation of org.apache.commons.lang3.ArrayUtils.lastIndexOf method
ListSerializer<T> - Class in org.apache.cassandra.serializers
 
LongSerializer - Class in org.apache.cassandra.serializers
 
LongSerializer() - Constructor for class org.apache.cassandra.serializers.LongSerializer
 

M

MapSerializer<K,V> - Class in org.apache.cassandra.serializers
 
MarshalException - Exception in org.apache.cassandra.serializers
 
MarshalException(String) - Constructor for exception org.apache.cassandra.serializers.MarshalException
 
MarshalException(String, Throwable) - Constructor for exception org.apache.cassandra.serializers.MarshalException
 
maxTimeUUID(long) - Static method in class org.apache.cassandra.utils.UUIDGen
Returns the biggest possible type 1 UUID having the provided timestamp.
microsTimestamp(UUID) - Static method in class org.apache.cassandra.utils.UUIDGen
 
minimalBufferFor(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
trims size of bytebuffer to exactly number of bytes in it, to do not hold too much memory
minTimeUUID(long) - Static method in class org.apache.cassandra.utils.UUIDGen
Returns the smaller possible type 1 UUID having the provided timestamp.

O

org.apache.cassandra.serializers - package org.apache.cassandra.serializers
 
org.apache.cassandra.utils - package org.apache.cassandra.utils
 

P

pack(Collection<ByteBuffer>, int, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
put(ByteBuffer, ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 

R

read(DataInput, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readBytes(DataInput, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readBytes(ByteBuffer, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readBytesWithShortLength(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readCollectionSize(ByteBuffer, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
readShortLength(DataInput) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readShortLength(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readValue(ByteBuffer, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
readWithLength(DataInput) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readWithShortLength(DataInput) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
readWithVIntLength(DataInputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 

S

serialize(String) - Method in class org.apache.cassandra.serializers.AbstractTextSerializer
 
serialize(Boolean) - Method in class org.apache.cassandra.serializers.BooleanSerializer
 
serialize(Byte) - Method in class org.apache.cassandra.serializers.ByteSerializer
 
serialize(ByteBuffer) - Method in class org.apache.cassandra.serializers.BytesSerializer
 
serialize(T) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
serialize(BigDecimal) - Method in class org.apache.cassandra.serializers.DecimalSerializer
 
serialize(Double) - Method in class org.apache.cassandra.serializers.DoubleSerializer
 
serialize(Void) - Method in class org.apache.cassandra.serializers.EmptySerializer
 
serialize(Float) - Method in class org.apache.cassandra.serializers.FloatSerializer
 
serialize(InetAddress) - Method in class org.apache.cassandra.serializers.InetAddressSerializer
 
serialize(Integer) - Method in class org.apache.cassandra.serializers.Int32Serializer
 
serialize(BigInteger) - Method in class org.apache.cassandra.serializers.IntegerSerializer
 
serialize(Long) - Method in class org.apache.cassandra.serializers.LongSerializer
 
serialize(Short) - Method in class org.apache.cassandra.serializers.ShortSerializer
 
serialize(Integer) - Method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
serialize(Long) - Method in class org.apache.cassandra.serializers.TimeSerializer
 
serialize(Date) - Method in class org.apache.cassandra.serializers.TimestampSerializer
 
serialize(T) - Method in interface org.apache.cassandra.serializers.TypeSerializer
 
serialize(UUID) - Method in class org.apache.cassandra.serializers.UUIDSerializer
 
serializedSizeWithLength(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
serializedSizeWithShortLength(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
serializedSizeWithVIntLength(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
serializeValues(T) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
serializeValues(List<T>) - Method in class org.apache.cassandra.serializers.ListSerializer
 
serializeValues(Map<K, V>) - Method in class org.apache.cassandra.serializers.MapSerializer
 
serializeValues(Set<T>) - Method in class org.apache.cassandra.serializers.SetSerializer
 
SetSerializer<T> - Class in org.apache.cassandra.serializers
 
ShortSerializer - Class in org.apache.cassandra.serializers
 
ShortSerializer() - Constructor for class org.apache.cassandra.serializers.ShortSerializer
 
SimpleDateSerializer - Class in org.apache.cassandra.serializers
 
SimpleDateSerializer() - Constructor for class org.apache.cassandra.serializers.SimpleDateSerializer
 
sizeOfCollectionSize(int, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
sizeOfValue(ByteBuffer, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
skipShortLength(DataInputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
skipWithVIntLength(DataInputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
string(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Decode a String representation.
string(ByteBuffer, int, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Decode a String representation.
string(ByteBuffer, int, int, Charset) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Decode a String representation.
string(ByteBuffer, Charset) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Decode a String representation.

T

timeInMillisToDay(long) - Static method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
timePattern - Static variable in class org.apache.cassandra.serializers.TimeSerializer
 
TimeSerializer - Class in org.apache.cassandra.serializers
 
TimeSerializer() - Constructor for class org.apache.cassandra.serializers.TimeSerializer
 
TimestampSerializer - Class in org.apache.cassandra.serializers
 
TimestampSerializer() - Constructor for class org.apache.cassandra.serializers.TimestampSerializer
 
timeStringToLong(String) - Static method in class org.apache.cassandra.serializers.TimeSerializer
 
TimeUUIDSerializer - Class in org.apache.cassandra.serializers
 
TimeUUIDSerializer() - Constructor for class org.apache.cassandra.serializers.TimeUUIDSerializer
 
TO_JSON_FORMAT - Static variable in class org.apache.cassandra.serializers.TimestampSerializer
 
toDouble(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
toFloat(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
toInt(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Convert a byte buffer to an integer.
toLong(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
toShort(ByteBuffer) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
Convert a byte buffer to a short.
toString(String) - Method in class org.apache.cassandra.serializers.AbstractTextSerializer
 
toString(Boolean) - Method in class org.apache.cassandra.serializers.BooleanSerializer
 
toString(Byte) - Method in class org.apache.cassandra.serializers.ByteSerializer
 
toString(ByteBuffer) - Method in class org.apache.cassandra.serializers.BytesSerializer
 
toString(BigDecimal) - Method in class org.apache.cassandra.serializers.DecimalSerializer
 
toString(Double) - Method in class org.apache.cassandra.serializers.DoubleSerializer
 
toString(Void) - Method in class org.apache.cassandra.serializers.EmptySerializer
 
toString(Float) - Method in class org.apache.cassandra.serializers.FloatSerializer
 
toString(InetAddress) - Method in class org.apache.cassandra.serializers.InetAddressSerializer
 
toString(Integer) - Method in class org.apache.cassandra.serializers.Int32Serializer
 
toString(BigInteger) - Method in class org.apache.cassandra.serializers.IntegerSerializer
 
toString(List<T>) - Method in class org.apache.cassandra.serializers.ListSerializer
 
toString(Long) - Method in class org.apache.cassandra.serializers.LongSerializer
 
toString(Map<K, V>) - Method in class org.apache.cassandra.serializers.MapSerializer
 
toString(Set<T>) - Method in class org.apache.cassandra.serializers.SetSerializer
 
toString(Short) - Method in class org.apache.cassandra.serializers.ShortSerializer
 
toString(Integer) - Method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
toString(Long) - Method in class org.apache.cassandra.serializers.TimeSerializer
 
toString(Date) - Method in class org.apache.cassandra.serializers.TimestampSerializer
 
toString(T) - Method in interface org.apache.cassandra.serializers.TypeSerializer
 
toString(UUID) - Method in class org.apache.cassandra.serializers.UUIDSerializer
 
TypeSerializer<T> - Interface in org.apache.cassandra.serializers
 

U

unixTimestamp(UUID) - Static method in class org.apache.cassandra.utils.UUIDGen
 
UNSET_BYTE_BUFFER - Static variable in class org.apache.cassandra.utils.ByteBufferUtil
Represents an unset value in bound variables
UTF8Serializer - Class in org.apache.cassandra.serializers
 
UUIDGen - Class in org.apache.cassandra.utils
The goods are here: www.ietf.org/rfc/rfc4122.txt.
UUIDSerializer - Class in org.apache.cassandra.serializers
 
UUIDSerializer() - Constructor for class org.apache.cassandra.serializers.UUIDSerializer
 

V

validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.AsciiSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.BooleanSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.ByteSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.BytesSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.DecimalSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.DoubleSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.EmptySerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.FloatSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.InetAddressSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.Int32Serializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.IntegerSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.LongSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.ShortSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.SimpleDateSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.TimeSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.TimestampSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.TimeUUIDSerializer
 
validate(ByteBuffer) - Method in interface org.apache.cassandra.serializers.TypeSerializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.UTF8Serializer
 
validate(ByteBuffer) - Method in class org.apache.cassandra.serializers.UUIDSerializer
 
validateForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.CollectionSerializer
 
validateForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.ListSerializer
 
validateForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.MapSerializer
 
validateForNativeProtocol(ByteBuffer, int) - Method in class org.apache.cassandra.serializers.SetSerializer
 
values - Variable in class org.apache.cassandra.serializers.MapSerializer
 

W

wrapCharArray(char[]) - Static method in class org.apache.cassandra.utils.Hex
Create a String from a char array with zero-copy (if available), using reflection to access a package-protected constructor of String.
writeCollectionSize(ByteBuffer, int, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
writeShortLength(ByteBuffer, int) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
writeValue(ByteBuffer, ByteBuffer, int) - Static method in class org.apache.cassandra.serializers.CollectionSerializer
 
writeWithLength(ByteBuffer, DataOutputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
writeWithLength(byte[], DataOutput) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
writeWithShortLength(ByteBuffer, DataOutputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
writeWithShortLength(byte[], DataOutput) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
writeWithVIntLength(ByteBuffer, DataOutputPlus) - Static method in class org.apache.cassandra.utils.ByteBufferUtil
 
A B C D E F G H I K L M O P R S T U V W 
Skip navigation links

Copyright © 2015 The Apache Software Foundation