Class ConflictKey
- java.lang.Object
-
- com.google.gerrit.server.query.change.ConflictKey
-
public abstract class ConflictKey extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConflictKey.Serializer
-
Constructor Summary
Constructors Constructor Description ConflictKey()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract org.eclipse.jgit.lib.ObjectId
commit()
abstract boolean
contentMerge()
static ConflictKey
create(org.eclipse.jgit.lib.AnyObjectId commit, org.eclipse.jgit.lib.AnyObjectId otherCommit, SubmitType submitType, boolean contentMerge)
abstract org.eclipse.jgit.lib.ObjectId
otherCommit()
abstract SubmitType
submitType()
-
-
-
Method Detail
-
create
public static ConflictKey create(org.eclipse.jgit.lib.AnyObjectId commit, org.eclipse.jgit.lib.AnyObjectId otherCommit, SubmitType submitType, boolean contentMerge)
-
commit
public abstract org.eclipse.jgit.lib.ObjectId commit()
-
otherCommit
public abstract org.eclipse.jgit.lib.ObjectId otherCommit()
-
submitType
public abstract SubmitType submitType()
-
contentMerge
public abstract boolean contentMerge()
-
-