Uses of Class
org.eclipse.jgit.lib.CoreConfig.EolStreamType
-
Packages that use CoreConfig.EolStreamType Package Description 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.treewalk Walking and comparing directory/file trees (of commits, file system).org.eclipse.jgit.util.io Utility classes for IO (streams). -
-
Uses of CoreConfig.EolStreamType in org.eclipse.jgit.dircache
Fields in org.eclipse.jgit.dircache declared as CoreConfig.EolStreamType Modifier and Type Field Description CoreConfig.EolStreamType
DirCacheCheckout.CheckoutMetadata. eolStreamType
git attributesConstructors in org.eclipse.jgit.dircache with parameters of type CoreConfig.EolStreamType Constructor Description CheckoutMetadata(CoreConfig.EolStreamType eolStreamType, java.lang.String smudgeFilterCommand)
-
Uses of CoreConfig.EolStreamType in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return CoreConfig.EolStreamType Modifier and Type Method Description static CoreConfig.EolStreamType
CoreConfig.EolStreamType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CoreConfig.EolStreamType[]
CoreConfig.EolStreamType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of CoreConfig.EolStreamType in org.eclipse.jgit.treewalk
Fields in org.eclipse.jgit.treewalk with type parameters of type CoreConfig.EolStreamType Modifier and Type Field Description private Holder<CoreConfig.EolStreamType>
WorkingTreeIterator. eolStreamTypeHolder
cached eol stream type.Methods in org.eclipse.jgit.treewalk that return CoreConfig.EolStreamType Modifier and Type Method Description CoreConfig.EolStreamType
TreeWalk. getEolStreamType(TreeWalk.OperationType opType)
Get the EOL stream type of the current entry using the config andTreeWalk.getAttributes()
.CoreConfig.EolStreamType
WorkingTreeIterator. getEolStreamType()
Get the eol stream type for the current entry.private CoreConfig.EolStreamType
WorkingTreeIterator. getEolStreamType(TreeWalk.OperationType opType)
-
Uses of CoreConfig.EolStreamType in org.eclipse.jgit.util.io
Methods in org.eclipse.jgit.util.io that return CoreConfig.EolStreamType Modifier and Type Method Description private static CoreConfig.EolStreamType
EolStreamTypeUtil. checkInStreamType(WorkingTreeOptions options, Attributes attrs)
private static CoreConfig.EolStreamType
EolStreamTypeUtil. checkOutStreamType(WorkingTreeOptions options, Attributes attrs)
static CoreConfig.EolStreamType
EolStreamTypeUtil. detectStreamType(TreeWalk.OperationType op, WorkingTreeOptions options, Attributes attrs)
Convenience method used to detect if CRLF conversion has been configured using the global repo options global attributes info attributes working tree .gitattributesprivate static CoreConfig.EolStreamType
EolStreamTypeUtil. getOutputFormat(WorkingTreeOptions options)
Methods in org.eclipse.jgit.util.io with parameters of type CoreConfig.EolStreamType Modifier and Type Method Description static java.io.InputStream
EolStreamTypeUtil. wrapInputStream(java.io.InputStream in, CoreConfig.EolStreamType conversion)
Wrap the input stream depending onCoreConfig.EolStreamType
.static java.io.InputStream
EolStreamTypeUtil. wrapInputStream(java.io.InputStream in, CoreConfig.EolStreamType conversion, boolean forCheckout)
Wrap the input stream depending onCoreConfig.EolStreamType
.static java.io.OutputStream
EolStreamTypeUtil. wrapOutputStream(java.io.OutputStream out, CoreConfig.EolStreamType conversion)
Wrap the output stream depending onCoreConfig.EolStreamType
.
-