org.cloudfoundry.client.lib.io
Interface DynamicZipInputStream.Entry

Enclosing class:
DynamicZipInputStream

public static interface DynamicZipInputStream.Entry

Represents a single entry from a ZIP files.


Method Summary
 InputStream getInputStream()
          Opens a new stream that can be used to read the contents of the entry.
 String getName()
          Returns the name of the entry complete with path, equivalent to ZipEntry.getName().
 

Method Detail

getName

String getName()
Returns the name of the entry complete with path, equivalent to ZipEntry.getName().

Returns:
the name of the entry

getInputStream

InputStream getInputStream()
                           throws IOException
Opens a new stream that can be used to read the contents of the entry. The steam will be closed by the caller.

Returns:
the entry input stream
Throws:
IOException


Copyright © 2013. All rights reserved.