Java org.eclipse.jgit.util RawParseUtils fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.util RawParseUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.util RawParseUtils.

The text is from its open source code.

Field

CharsetUTF8_CHARSET
UTF-8 charset constant.

Method

intauthor(byte[] b, int ptr)
Locate the "author " header line data.
intcommitMessage(byte[] b, int ptr)
Locate the position of the commit message body.
intcommitter(byte[] b, int ptr)
Locate the "committer " header line data.
Stringdecode(byte[] buffer)
Decode a buffer under UTF-8, if possible.
Stringdecode(final byte[] buffer, final int start, final int end)
Decode a buffer under UTF-8, if possible.
Stringdecode(Charset cs, byte[] buffer)
Decode a buffer under the specified character set if possible.
Stringdecode(ByteBuffer b, Charset charset)
Stringdecode(final Charset cs, final byte[] buffer, final int start, final int end)
Decode a region of the buffer under the specified character set if possible.
intendOfFooterLineKey(byte[] raw, int ptr)
Locate the end of a footer line key string.
intendOfParagraph(byte[] b, int start)
Locate the end of a paragraph.
IntListlineMap(byte[] buf, int ptr, int end)
Index the region between [ptr, end) to find line starts.
intmatch(byte[] b, int ptr, byte[] src)
Determine if b[ptr] matches src.
intnextLF(byte[] b, int ptr)
Locate the first position after the next LF.
intnextLF(byte[] b, int ptr, char chrA)
Locate the first position after either the given character or LF.
intparseBase10(final byte[] b, int ptr, final MutableInteger ptrResult)
Parse a base 10 numeric from a sequence of ASCII digits into an int.
CharsetparseEncoding(byte[] b)
Parse the "encoding " header into a character set reference.
longparseLongBase10(final byte[] b, int ptr, final MutableInteger ptrResult)
Parse a base 10 numeric from a sequence of ASCII digits into a long.
PersonIdentparsePersonIdent(String in)
Parse a name string (e.g.
PersonIdentparsePersonIdent(byte[] raw, int nameB)
Parse a name line (e.g.
intparseTimeZoneOffset(byte[] b, int ptr)
Parse a Git style timezone string.
intprevLF(byte[] b, int ptr, char chrA)
Locate the previous position before either the given character or LF.