Modifier and Type | Method and Description |
---|---|
T |
Archive.add(Archive<?> archive,
ArchivePath path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
T |
Archive.add(Archive<?> archive,
java.lang.String path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.Class<? extends StreamExporter> |
ArchiveAsset.exporter
Exporter used to represent this archive as a
InputStream |
Constructor and Description |
---|
ArchiveAsset(Archive<?> archive,
java.lang.Class<? extends StreamExporter> exporter)
Creates a new instance wrapping the specified
Archive , which will use the specified
StreamExporter to represent the archive as an InputStream in Asset.openStream() . |
Modifier and Type | Interface and Description |
---|---|
interface |
TarBz2Exporter
Exporter used to represent an
Assignable in TAR format encoded w/ BZip2 compression |
interface |
TarExporter
Exporter used to represent an
Assignable in TAR format |
interface |
TarGzExporter
Exporter used to represent an
Assignable in TAR format encoded w/ GZIP compression |
interface |
ZipExporter
Exporter used to represent an
Assignable in ZIP format. |
Modifier and Type | Field and Description |
---|---|
private java.lang.Class<? extends StreamExporter> |
ArchiveFormatStreamBindings.exporter |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends StreamExporter> |
ArchiveFormatStreamBindings.getExporter() |
Modifier and Type | Method and Description |
---|---|
T |
ArchiveBase.add(Archive<?> archive,
ArchivePath path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
T |
MemoryMapArchiveBase.add(Archive<?> archive,
ArchivePath path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
T |
MemoryMapArchiveBase.add(Archive<?> archive,
java.lang.String path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
Modifier and Type | Method and Description |
---|---|
T |
ContainerBase.add(Archive<?> archive,
ArchivePath path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
T |
ContainerBase.add(Archive<?> archive,
java.lang.String path,
java.lang.Class<? extends StreamExporter> exporter)
Add an archive under a specific context and maintain the archive name as context path.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractStreamExporterImpl
Base support for I/O Stream-based exporters
|
Modifier and Type | Class and Description |
---|---|
class |
TarBz2ExporterImpl
Implementation of
TarBz2Exporter used to export an Archive as a TAR format encoded in BZip2. |
class |
TarExporterImpl
Implementation of
TarExporter used to export an Archive as a TAR format. |
class |
TarGzExporterImpl
Implementation of
TarGzExporter used to export an Archive as a TAR format encoded in GZIP. |
Modifier and Type | Class and Description |
---|---|
class |
ZipExporterImpl
Implementation of ZipExporter used to export an Archive as a ZIP format.
|