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.merge Content and commit history merge algorithms.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.EolStreamTypeDirCacheCheckout.CheckoutMetadata. eolStreamTypegit attributesConstructors in org.eclipse.jgit.dircache with parameters of type CoreConfig.EolStreamType Constructor Description CheckoutMetadata(CoreConfig.EolStreamType eolStreamType, 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.EolStreamTypeCoreConfig.EolStreamType. valueOf(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.merge
Methods in org.eclipse.jgit.merge that return CoreConfig.EolStreamType Modifier and Type Method Description CoreConfig.EolStreamTypeResolveMerger.WorkTreeUpdater. detectCheckoutStreamType(Attributes attributes)Detects if CRLF conversion has been configured.Methods in org.eclipse.jgit.merge with parameters of type CoreConfig.EolStreamType Modifier and Type Method Description voidResolveMerger.WorkTreeUpdater. addToCheckout(String path, DirCacheEntry entry, CoreConfig.EolStreamType cleanupStreamType, String cleanupSmudgeCommand, CoreConfig.EolStreamType checkoutStreamType, String checkoutSmudgeCommand)Adds aDirCacheEntryfor direct checkout and remembers itsDirCacheCheckout.CheckoutMetadata.voidResolveMerger.WorkTreeUpdater. deleteFile(String path, File file, CoreConfig.EolStreamType streamType, String smudgeCommand)Remembers the given file to be deleted.voidResolveMerger.WorkTreeUpdater. updateFileWithContent(DirCacheCheckout.StreamSupplier inputStream, CoreConfig.EolStreamType streamType, String smudgeCommand, String path, File file)Updates the file in the checkout with the given content. -
Uses of CoreConfig.EolStreamType in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk that return CoreConfig.EolStreamType Modifier and Type Method Description CoreConfig.EolStreamTypeTreeWalk. getCheckoutEolStreamType(int tree)Get the EOL stream type of the current entry for checking out using the config andTreeWalk.getAttributes().CoreConfig.EolStreamTypeTreeWalk. getEolStreamType(TreeWalk.OperationType opType)Get the EOL stream type of the current entry using the config andTreeWalk.getAttributes().CoreConfig.EolStreamTypeWorkingTreeIterator. getEolStreamType()Get the eol stream type for the current entry. -
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 static CoreConfig.EolStreamTypeEolStreamTypeUtil. 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 .gitattributesMethods in org.eclipse.jgit.util.io with parameters of type CoreConfig.EolStreamType Modifier and Type Method Description static InputStreamEolStreamTypeUtil. wrapInputStream(InputStream in, CoreConfig.EolStreamType conversion)Wrap the input stream depending onCoreConfig.EolStreamType.static InputStreamEolStreamTypeUtil. wrapInputStream(InputStream in, CoreConfig.EolStreamType conversion, boolean forCheckout)Wrap the input stream depending onCoreConfig.EolStreamType.static OutputStreamEolStreamTypeUtil. wrapOutputStream(OutputStream out, CoreConfig.EolStreamType conversion)Wrap the output stream depending onCoreConfig.EolStreamType.
-