Java org.eclipse.jgit.revwalk RevCommit fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.revwalk RevCommit fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Subclass

org.eclipse.jgit.revwalk.RevCommit has subclasses.
Click this link to see all its subclasses.

Method

voidcarry(RevFlag flag)
Carry a RevFlag set on this commit to its parents.
PersonIdentgetAuthorIdent()
Parse the author identity from the raw buffer.
PersonIdentgetCommitterIdent()
Parse the committer identity from the raw buffer.
intgetCommitTime()
Time from the "committer " line of the buffer.
CharsetgetEncoding()
Determine the encoding of the commit message buffer.
ListgetFooterLines(String keyName)
Get the values of all footer lines with the given key.
ListgetFooterLines(FooterKey keyName)
Get the values of all footer lines with the given key.
ListgetFooterLines()
Parse the footer lines (e.g.
StringgetFullMessage()
Parse the complete commit message and decode it to a string.
RevCommitgetParent(int nth)
Get the nth parent from this commit's parent list.
intgetParentCount()
Get the number of parent commits listed in this commit.
RevCommit[]getParents()
Obtain an array of all parents (NOTE - THIS IS NOT A COPY).
byte[]getRawBuffer()
Obtain the raw unparsed commit body (NOTE - THIS IS NOT A COPY).
StringgetShortMessage()
Parse the commit message and return the first "line" of it.
RevTreegetTree()
Get a reference to this commit's tree.
RevCommitparse(byte[] raw)
Parse a commit from its canonical format.
StringtoString()