public static class ObjectStream.SmallStream extends ObjectStream
ObjectLoader implementations can use this stream type when the object's content is small enough to be accessed as a single byte array, but the application has still requested it in stream format.
ObjectStream.Filter, ObjectStream.SmallStream| Constructor and Description |
|---|
ObjectStream.SmallStream(int type,
byte[] data)
Create the stream from an existing byte array and type.
|
ObjectStream.SmallStream(ObjectLoader loader)
Create the stream from an existing loader's cached bytes.
|
public ObjectStream.SmallStream(ObjectLoader loader)
loader - the loader.public ObjectStream.SmallStream(int type,
byte[] data)
type - the type constant for the object.data - the fully inflated content of the object.public int getType()
getType in class ObjectStreamConstants.public long getSize()
getSize in class ObjectStreampublic int available()
available in class java.io.InputStreampublic long skip(long n)
skip in class java.io.InputStreampublic int read()
read in class java.io.InputStreampublic int read(byte[] b,
int off,
int len)
read in class java.io.InputStreampublic boolean markSupported()
markSupported in class java.io.InputStreampublic void mark(int readlimit)
mark in class java.io.InputStreampublic void reset()
reset in class java.io.InputStreamCopyright © 2012. All Rights Reserved.