Uses of Interface
org.eclipse.jgit.api.ArchiveCommand.Format
-
Packages that use ArchiveCommand.Format Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.archive -
-
Uses of ArchiveCommand.Format in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as ArchiveCommand.Format Modifier and Type Field Description (package private) ArchiveCommand.Format<?>
ArchiveCommand.FormatEntry. format
Methods in org.eclipse.jgit.api that return ArchiveCommand.Format Modifier and Type Method Description private static ArchiveCommand.Format<?>
ArchiveCommand. formatBySuffix(java.lang.String filenameSuffix)
private static ArchiveCommand.Format<?>
ArchiveCommand. lookupFormat(java.lang.String formatName)
Methods in org.eclipse.jgit.api with parameters of type ArchiveCommand.Format Modifier and Type Method Description static void
ArchiveCommand. registerFormat(java.lang.String name, ArchiveCommand.Format<?> fmt)
Adds support for an additional archival format.private <T extends java.io.Closeable>
java.io.OutputStreamArchiveCommand. writeArchive(ArchiveCommand.Format<T> fmt)
Constructors in org.eclipse.jgit.api with parameters of type ArchiveCommand.Format Constructor Description FormatEntry(ArchiveCommand.Format<?> format, int refcnt)
-
Uses of ArchiveCommand.Format in org.eclipse.jgit.archive
Classes in org.eclipse.jgit.archive that implement ArchiveCommand.Format Modifier and Type Class Description class
TarFormat
Unix TAR format (ustar + some PAX extensions).class
Tbz2Format
bzip2-compressed tarball (tar.bz2) format.class
TgzFormat
gzip-compressed tarball (tar.gz) format.class
TxzFormat
Xz-compressed tar (tar.xz) format.class
ZipFormat
PKWARE's ZIP format.Fields in org.eclipse.jgit.archive declared as ArchiveCommand.Format Modifier and Type Field Description private ArchiveCommand.Format<org.apache.commons.compress.archivers.ArchiveOutputStream>
Tbz2Format. tarFormat
private ArchiveCommand.Format<org.apache.commons.compress.archivers.ArchiveOutputStream>
TgzFormat. tarFormat
private ArchiveCommand.Format<org.apache.commons.compress.archivers.ArchiveOutputStream>
TxzFormat. tarFormat
Methods in org.eclipse.jgit.archive with parameters of type ArchiveCommand.Format Modifier and Type Method Description private static void
ArchiveFormats. register(java.lang.String name, ArchiveCommand.Format<?> fmt)
-