public class IdentityMarshaller extends AbstractMarshaller
| Modifier and Type | Field and Description |
|---|---|
static IdentityMarshaller |
INSTANCE |
marshallableTypeHints| Constructor and Description |
|---|
IdentityMarshaller() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isMarshallable(java.lang.Object o)
A method that checks whether the given object is marshallable as per the rules of this marshaller.
|
MediaType |
mediaType() |
java.lang.Object |
objectFromByteBuffer(byte[] buf,
int offset,
int length)
Unmarshalls an object from a specific portion of a byte array.
|
protected ByteBuffer |
objectToBuffer(java.lang.Object o,
int estimatedSize)
This is a convenience method for converting an object into a
org.infinispan.io.ByteBuffer which takes
an estimated size as parameter. |
getBufferSizePredictor, objectFromByteBuffer, objectFromInputStream, objectToBuffer, objectToByteBuffer, objectToByteBufferpublic static final IdentityMarshaller INSTANCE
protected ByteBuffer objectToBuffer(java.lang.Object o, int estimatedSize)
AbstractMarshallerorg.infinispan.io.ByteBuffer which takes
an estimated size as parameter. A org.infinispan.io.ByteBuffer allows direct access to the byte
array with minimal array copyingobjectToBuffer in class AbstractMarshallero - object to marshallestimatedSize - an estimate of how large the resulting byte array may bepublic java.lang.Object objectFromByteBuffer(byte[] buf,
int offset,
int length)
Marshallerbuf - byte array containing the binary representation of an object. Must not be null.offset - point in buffer to start readinglength - number of bytes to considerpublic boolean isMarshallable(java.lang.Object o)
Marshallero - object to verify whether it's marshallable or not