Uses of Class
org.eclipse.jgit.lib.FileMode

Packages that use FileMode
org.eclipse.jgit.diff   
org.eclipse.jgit.dircache   
org.eclipse.jgit.lib   
org.eclipse.jgit.patch   
org.eclipse.jgit.treewalk   
 

Uses of FileMode in org.eclipse.jgit.diff
 

Fields in org.eclipse.jgit.diff declared as FileMode
protected  FileMode DiffEntry.newMode
          New mode of the file, if described by the patch, else null.
protected  FileMode DiffEntry.oldMode
          Old mode of the file, if described by the patch, else null.
 

Methods in org.eclipse.jgit.diff that return FileMode
 FileMode DiffEntry.getMode(DiffEntry.Side side)
          Get the mode associated with this file.
 FileMode DiffEntry.getNewMode()
           
 FileMode DiffEntry.getOldMode()
           
 

Uses of FileMode in org.eclipse.jgit.dircache
 

Methods in org.eclipse.jgit.dircache that return FileMode
 FileMode DirCacheEntry.getFileMode()
          Obtain the FileMode for this entry.
 

Methods in org.eclipse.jgit.dircache with parameters of type FileMode
 void DirCacheEntry.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
static FileMode FileMode.EXECUTABLE_FILE
          Mode indicating an entry is an executable file.
static FileMode FileMode.GITLINK
          Mode indicating an entry is a submodule commit in another repository.
static FileMode FileMode.MISSING
          Mode indicating an entry is missing during parallel walks.
static FileMode FileMode.REGULAR_FILE
          Mode indicating an entry is a non-executable file.
static FileMode FileMode.SYMLINK
          Mode indicating an entry is a symbolic link.
static FileMode FileMode.TREE
          Mode indicating an entry is a tree (aka directory).
 

Methods in org.eclipse.jgit.lib that return FileMode
static FileMode FileMode.fromBits(int bits)
          Convert a set of mode bits into a FileMode enumerated value.
 FileMode IndexDiff.getIndexMode(String path)
          Get the file mode of the given path in the index
 FileMode GitlinkTreeEntry.getMode()
          Deprecated.  
abstract  FileMode TreeEntry.getMode()
          Deprecated.  
 FileMode FileTreeEntry.getMode()
          Deprecated.  
 FileMode SymlinkTreeEntry.getMode()
          Deprecated.  
 FileMode Tree.getMode()
          Deprecated.  
 

Methods in org.eclipse.jgit.lib with parameters of type FileMode
 void TreeFormatter.append(byte[] name, FileMode mode, AnyObjectId id)
          Append any entry to the tree.
 void TreeFormatter.append(byte[] nameBuf, int namePos, int nameLen, FileMode mode, AnyObjectId id)
          Append any entry to the tree.
 void TreeFormatter.append(byte[] nameBuf, int namePos, int nameLen, FileMode mode, byte[] idBuf, int idPos)
          Append any entry to the tree.
 void TreeFormatter.append(String name, FileMode mode, AnyObjectId id)
          Append any entry to the tree.
static int TreeFormatter.entrySize(FileMode mode, int nameLen)
          Compute the size of a tree entry record.
 

Uses of FileMode in org.eclipse.jgit.patch
 

Methods in org.eclipse.jgit.patch that return FileMode
 FileMode CombinedFileHeader.getOldMode()
           
 FileMode CombinedFileHeader.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
 FileMode AbstractTreeIterator.getEntryFileMode()
           
 FileMode TreeWalk.getFileMode(int nth)
          Obtain the FileMode for the current entry.
 FileMode WorkingTreeIterator.getIndexFileMode(DirCacheIterator indexIter)
          Get the file mode to use for the current entry when it is to be updated in the index.
abstract  FileMode WorkingTreeIterator.Entry.getMode()
          Get the type of this entry.
 FileMode FileTreeIterator.FileEntry.getMode()
           
 



Copyright © 2012. All Rights Reserved.