| Constructor and Description |
|---|
ContentDirectoryContent(Content content,
String path) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
This method must be called when the content is no longer needed so
that any resourses being used (e.g., open files) can be closed.
|
long |
getContentTime(String name) |
Enumeration<String> |
getEntries()
Returns an enumeration of entry names as String objects.
|
byte[] |
getEntryAsBytes(String name)
This method returns the named entry as an array of bytes.
|
Content |
getEntryAsContent(String name)
This method returns the named entry as an IContent Typically,
this method only makes sense for entries that correspond to some form
of aggregated resource (e.g., an embedded JAR file or directory), but
implementations are free to interpret this however makes sense.
|
String |
getEntryAsNativeLibrary(String name)
This method returns the named entry as a file in the file system for
use as a native library.
|
InputStream |
getEntryAsStream(String name)
This method returns the named entry as an input stream.
|
URL |
getEntryAsURL(String name)
This method allows retrieving an entry as a local URL.
|
boolean |
hasEntry(String name)
This method determines if the specified named entry is contained in
the associated content.
|
boolean |
isDirectory(String name)
This method determines if the specified named entry is contained in
the associated content and is a directory.
|
String |
toString() |
public void close()
ContentThis method must be called when the content is no longer needed so that any resourses being used (e.g., open files) can be closed. Once this method is called, the content is no longer usable. If the content is already closed, then calls on this method should have no effect.
public boolean hasEntry(String name) throws IllegalStateException
ContentThis method determines if the specified named entry is contained in the associated content. The entry name is a relative path with '/' separators.
hasEntry in interface Contentname - The name of the entry to find.IllegalStateExceptionpublic boolean isDirectory(String name)
ContentThis method determines if the specified named entry is contained in the associated content and is a directory. The entry name is a relative path with '/' separators.
isDirectory in interface Contentname - The name of the entry to find.public Enumeration<String> getEntries()
ContentReturns an enumeration of entry names as String objects. An entry name is a path constructed with '/' as path element separators and is relative to the root of the content. Entry names for entries that represent directories should end with the '/' character.
getEntries in interface Contentpublic byte[] getEntryAsBytes(String name) throws IllegalStateException
ContentThis method returns the named entry as an array of bytes.
getEntryAsBytes in interface Contentname - The name of the entry to retrieve as a byte array.IllegalStateExceptionpublic InputStream getEntryAsStream(String name) throws IllegalStateException, IOException
ContentThis method returns the named entry as an input stream.
getEntryAsStream in interface Contentname - The name of the entry to retrieve as an input stream.IllegalStateExceptionIOExceptionpublic URL getEntryAsURL(String name)
ContentThis method allows retrieving an entry as a local URL.
getEntryAsURL in interface Contentname - The name of the entry to retrieve as a URLpublic long getContentTime(String name)
getContentTime in interface Contentpublic Content getEntryAsContent(String name)
ContentThis method returns the named entry as an IContent Typically, this method only makes sense for entries that correspond to some form of aggregated resource (e.g., an embedded JAR file or directory), but implementations are free to interpret this however makes sense. This method should return a new IContent instance for every invocation and the caller is responsible for opening and closing the returned content object.
getEntryAsContent in interface Contentname - The name of the entry to retrieve as an IContent.public String getEntryAsNativeLibrary(String name)
ContentThis method returns the named entry as a file in the file system for use as a native library. It may not be possible for all content implementations (e.g., memory only) to implement this method, in which case it is acceptable to return null. Since native libraries can only be associated with a single class loader, this method should return a unique file per request.
getEntryAsNativeLibrary in interface Contentname - The name of the entry to retrieve as a file.Copyright © 2006–2022 The Apache Software Foundation. All rights reserved.