Package nl.tue.storage
Interface Inflater<T>
-
- All Known Subinterfaces:
TailInflater<T>
- All Known Implementing Classes:
AbstractCompressor,AbstractFixedLengthListCompressor,ByteListCompressor,CompressableCompressor,DijkstraTail,IntListCompressor,LongListCompressor,ShortListCompressor,StateCompressor
public interface Inflater<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tinflate(java.io.InputStream stream)read an object from a stream.
-
-
-
Method Detail
-
inflate
T inflate(java.io.InputStream stream) throws java.io.IOException
read an object from a stream. The inflater should know when to stop reading and should NOT close the stream;- Parameters:
compressed-- Returns:
- Throws:
java.io.IOException
-
-