Package org.eclipse.jgit.treewalk
Class WorkingTreeIterator.IteratorState
- java.lang.Object
-
- org.eclipse.jgit.treewalk.WorkingTreeIterator.IteratorState
-
- Enclosing class:
- WorkingTreeIterator
private static final class WorkingTreeIterator.IteratorState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) byte[]
contentReadBuffer
Buffer used to performWorkingTreeIterator.contentId
computations.(package private) int
dirCacheTree
Position of the matchingDirCacheIterator
.(package private) java.util.Map<java.lang.String,java.lang.Boolean>
directoryToIgnored
(package private) java.nio.charset.CharsetEncoder
nameEncoder
File name character encoder.(package private) WorkingTreeOptions
options
Options used to process the working tree.(package private) TreeWalk
walk
TreeWalk with a (supposedly) matching DirCacheIterator.(package private) boolean
walkIgnored
Whether the iterator shall walk ignored directories.
-
Constructor Summary
Constructors Constructor Description IteratorState(WorkingTreeOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
initializeReadBuffer()
-
-
-
Field Detail
-
options
final WorkingTreeOptions options
Options used to process the working tree.
-
nameEncoder
final java.nio.charset.CharsetEncoder nameEncoder
File name character encoder.
-
contentReadBuffer
byte[] contentReadBuffer
Buffer used to performWorkingTreeIterator.contentId
computations.
-
walk
TreeWalk walk
TreeWalk with a (supposedly) matching DirCacheIterator.
-
dirCacheTree
int dirCacheTree
Position of the matchingDirCacheIterator
.
-
walkIgnored
boolean walkIgnored
Whether the iterator shall walk ignored directories.
-
directoryToIgnored
final java.util.Map<java.lang.String,java.lang.Boolean> directoryToIgnored
-
-
Constructor Detail
-
IteratorState
IteratorState(WorkingTreeOptions options)
-
-