org.msgpack.io
Interface Input

All Superinterfaces:
Closeable
All Known Implementing Classes:
LinkedBufferInput, StreamInput

public interface Input
extends Closeable


Method Summary
 void advance()
           
 byte getByte()
           
 double getDouble()
           
 float getFloat()
           
 int getInt()
           
 long getLong()
           
 short getShort()
           
 int read(byte[] b, int off, int len)
           
 byte readByte()
           
 boolean tryRefer(BufferReferer ref, int len)
           
 
Methods inherited from interface java.io.Closeable
close
 

Method Detail

read

int read(byte[] b,
         int off,
         int len)
         throws IOException
Throws:
IOException

tryRefer

boolean tryRefer(BufferReferer ref,
                 int len)
                 throws IOException
Throws:
IOException

readByte

byte readByte()
              throws IOException
Throws:
IOException

advance

void advance()

getByte

byte getByte()
             throws IOException
Throws:
IOException

getShort

short getShort()
               throws IOException
Throws:
IOException

getInt

int getInt()
           throws IOException
Throws:
IOException

getLong

long getLong()
             throws IOException
Throws:
IOException

getFloat

float getFloat()
               throws IOException
Throws:
IOException

getDouble

double getDouble()
                 throws IOException
Throws:
IOException


Copyright © 2011. All Rights Reserved.