Uses of Interface
org.msgpack.type.Value

Packages that use Value
org.msgpack   
org.msgpack.packer   
org.msgpack.template   
org.msgpack.type   
org.msgpack.unpacker   
org.msgpack.util.json   
 

Uses of Value in org.msgpack
 

Methods in org.msgpack that return Value
 Value MessagePack.read(byte[] bytes)
          Deserializes specified byte array to Value object.
 Value MessagePack.read(byte[] bytes, int off, int len)
          Deserializes byte array to Value object.
 Value MessagePack.read(ByteBuffer buffer)
          Deserializes ByteBuffer object to Value object.
 Value MessagePack.read(InputStream in)
          Deserializes input stream to Value object.
<T> Value
MessagePack.unconvert(T v)
          Unconverts specified object to Value object.
static Value MessagePack.unpack(byte[] bytes)
          Deprecated. 
static Value MessagePack.unpack(InputStream in)
          Deprecated. MessagePack.read(InputStream)
 

Methods in org.msgpack with parameters of type Value
<T> T
MessagePack.convert(Value v, Class<T> c)
          Converts Value object to object specified class.
<T> T
MessagePack.convert(Value v, T to)
          Converts specified Value object to object.
 byte[] MessagePack.write(Value v)
          Serializes Value object to byte array.
 

Uses of Value in org.msgpack.packer
 

Methods in org.msgpack.packer that return Value
 Value Unconverter.getResult()
           
 

Methods in org.msgpack.packer with parameters of type Value
 Packer Unconverter.write(Value v)
           
 Packer Packer.write(Value v)
           
 Packer AbstractPacker.write(Value v)
           
 

Uses of Value in org.msgpack.template
 

Fields in org.msgpack.template with type parameters of type Value
static Template<Value> Templates.TValue
           
 

Methods in org.msgpack.template that return Value
 Value ValueTemplate.read(Unpacker u, Value to, boolean required)
           
 

Methods in org.msgpack.template with parameters of type Value
 Value ValueTemplate.read(Unpacker u, Value to, boolean required)
           
 void ValueTemplate.write(Packer pk, Value target, boolean required)
           
 

Uses of Value in org.msgpack.type
 

Subinterfaces of Value in org.msgpack.type
 interface ArrayValue
           
 interface BooleanValue
           
 interface MapValue
           
 interface RawValue
           
 

Classes in org.msgpack.type that implement Value
 class FloatValue
           
 class IntegerValue
           
 class NilValue
           
 class NumberValue
           
 

Methods in org.msgpack.type that return Value
 Value[] ArrayValue.getElementArray()
           
 Value[] MapValue.getKeyValueArray()
           
 

Methods in org.msgpack.type with parameters of type Value
static ArrayValue ValueFactory.createArrayValue(Value[] array)
           
static ArrayValue ValueFactory.createArrayValue(Value[] array, boolean gift)
           
static MapValue ValueFactory.createMapValue(Value[] kvs)
           
static MapValue ValueFactory.createMapValue(Value[] kvs, boolean gift)
           
 

Uses of Value in org.msgpack.unpacker
 

Fields in org.msgpack.unpacker declared as Value
protected  Value Converter.value
           
 

Methods in org.msgpack.unpacker that return Value
 Value UnpackerIterator.next()
           
protected  Value Converter.nextValue()
           
 Value Unpacker.readValue()
           
 Value Converter.readValue()
           
 Value AbstractUnpacker.readValue()
           
 

Constructors in org.msgpack.unpacker with parameters of type Value
Converter(MessagePack msgpack, Value value)
           
Converter(Value value)
           
 

Uses of Value in org.msgpack.util.json
 

Methods in org.msgpack.util.json that return Value
protected  Value JSONUnpacker.nextValue()
           
 



Copyright © 2011. All Rights Reserved.