org.apache.cassandra.dht
Class BootStrapper.StringSerializer

java.lang.Object
  extended by org.apache.cassandra.dht.BootStrapper.StringSerializer
All Implemented Interfaces:
IVersionedSerializer<java.lang.String>
Enclosing class:
BootStrapper

public static class BootStrapper.StringSerializer
extends java.lang.Object
implements IVersionedSerializer<java.lang.String>


Field Summary
static BootStrapper.StringSerializer instance
           
 
Constructor Summary
BootStrapper.StringSerializer()
           
 
Method Summary
 java.lang.String deserialize(java.io.DataInput in, int version)
          Deserialize into the specified DataInputStream instance.
 void serialize(java.lang.String s, java.io.DataOutput out, int version)
          Serialize the specified type into the specified DataOutputStream instance.
 long serializedSize(java.lang.String s, int version)
          Calculate serialized size of object without actually serializing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

instance

public static final BootStrapper.StringSerializer instance
Constructor Detail

BootStrapper.StringSerializer

public BootStrapper.StringSerializer()
Method Detail

serialize

public void serialize(java.lang.String s,
                      java.io.DataOutput out,
                      int version)
               throws java.io.IOException
Description copied from interface: IVersionedSerializer
Serialize the specified type into the specified DataOutputStream instance.

Specified by:
serialize in interface IVersionedSerializer<java.lang.String>
Parameters:
s - type that needs to be serialized
out - DataOutput into which serialization needs to happen.
version - protocol version
Throws:
java.io.IOException

deserialize

public java.lang.String deserialize(java.io.DataInput in,
                                    int version)
                             throws java.io.IOException
Description copied from interface: IVersionedSerializer
Deserialize into the specified DataInputStream instance.

Specified by:
deserialize in interface IVersionedSerializer<java.lang.String>
Parameters:
in - DataInput from which deserialization needs to happen.
version - protocol version
Returns:
the type that was deserialized
Throws:
java.io.IOException

serializedSize

public long serializedSize(java.lang.String s,
                           int version)
Description copied from interface: IVersionedSerializer
Calculate serialized size of object without actually serializing.

Specified by:
serializedSize in interface IVersionedSerializer<java.lang.String>
Parameters:
s - object to calculate serialized size
version - protocol version
Returns:
serialized size of object t


Copyright © 2012 The Apache Software Foundation