Uses of Class
org.eclipse.jgit.lib.FileMode
-
Packages that use FileMode Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.patch Patch file parser and data structure.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system). -
-
Uses of FileMode in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type FileMode Modifier and Type Method Description voidArchiveCommand.Format. putEntry(T out, String path, FileMode mode, ObjectLoader loader)Write an entry to an archive. -
Uses of FileMode in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as FileMode Modifier and Type Field Description protected FileModeDiffEntry. newModeNew mode of the file, if described by the patch, else null.protected FileModeDiffEntry. oldModeOld mode of the file, if described by the patch, else null.Methods in org.eclipse.jgit.diff that return FileMode Modifier and Type Method Description FileModeDiffEntry. getMode(DiffEntry.Side side)Get the mode associated with this file.FileModeDiffEntry. getNewMode()FileModeDiffEntry. getOldMode() -
Uses of FileMode in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache that return FileMode Modifier and Type Method Description FileModeDirCacheEntry. getFileMode()Obtain theFileModefor this entry.Methods in org.eclipse.jgit.dircache with parameters of type FileMode Modifier and Type Method Description voidDirCacheEntry. setFileMode(FileMode mode)Set the file mode for this entry. -
Uses of FileMode in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as FileMode Modifier and Type Field Description static FileModeFileMode. EXECUTABLE_FILEMode indicating an entry is an executable file.static FileModeFileMode. GITLINKMode indicating an entry is a submodule commit in another repository.static FileModeFileMode. MISSINGMode indicating an entry is missing during parallel walks.static FileModeFileMode. REGULAR_FILEMode indicating an entry is a non-executable file.static FileModeFileMode. SYMLINKMode indicating an entry is a symbolic link.static FileModeFileMode. TREEMode indicating an entry is a tree (aka directory).Methods in org.eclipse.jgit.lib that return FileMode Modifier and Type Method Description static FileModeFileMode. fromBits(int bits)Convert a set of mode bits into a FileMode enumerated value.FileModeIndexDiff. getIndexMode(String path)Get the file mode of the given path in the indexFileModeFileTreeEntry. getMode()Deprecated.FileModeGitlinkTreeEntry. getMode()Deprecated.FileModeSymlinkTreeEntry. getMode()Deprecated.FileModeTree. getMode()Deprecated.abstract FileModeTreeEntry. getMode()Deprecated.Methods in org.eclipse.jgit.lib with parameters of type FileMode Modifier and Type Method Description voidTreeFormatter. append(byte[] nameBuf, int namePos, int nameLen, FileMode mode, byte[] idBuf, int idPos)Append any entry to the tree.voidTreeFormatter. append(byte[] nameBuf, int namePos, int nameLen, FileMode mode, AnyObjectId id)Append any entry to the tree.voidTreeFormatter. append(byte[] name, FileMode mode, AnyObjectId id)Append any entry to the tree.voidTreeFormatter. append(String name, FileMode mode, AnyObjectId id)Append any entry to the tree.static intTreeFormatter. entrySize(FileMode mode, int nameLen)Compute the size of a tree entry record.Set<String>IndexDiff. getPathsWithIndexMode(FileMode mode)Get the list of paths that IndexDiff has detected to differ and have the given file mode -
Uses of FileMode in org.eclipse.jgit.patch
Methods in org.eclipse.jgit.patch that return FileMode Modifier and Type Method Description FileModeCombinedFileHeader. getOldMode()FileModeCombinedFileHeader. getOldMode(int nthParent)Get the file mode of the nth ancestor -
Uses of FileMode in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk that return FileMode Modifier and Type Method Description FileModeAbstractTreeIterator. getEntryFileMode()FileModeTreeWalk. getFileMode(int nth)Obtain theFileModefor the current entry.FileModeWorkingTreeIterator. getIndexFileMode(DirCacheIterator indexIter)Get the file mode to use for the current entry when it is to be updated in the index.FileModeFileTreeIterator.FileEntry. getMode()abstract FileModeWorkingTreeIterator.Entry. getMode()Get the type of this entry.
-