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[]contentReadBufferBuffer used to performWorkingTreeIterator.contentIdcomputations.(package private) intdirCacheTreePosition of the matchingDirCacheIterator.(package private) java.util.Map<java.lang.String,java.lang.Boolean>directoryToIgnored(package private) java.nio.charset.CharsetEncodernameEncoderFile name character encoder.(package private) WorkingTreeOptionsoptionsOptions used to process the working tree.(package private) TreeWalkwalkTreeWalk with a (supposedly) matching DirCacheIterator.(package private) booleanwalkIgnoredWhether 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) voidinitializeReadBuffer()
-
-
-
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.contentIdcomputations.
-
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)
-
-