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

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

Introduction

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

The text is from its open source code.

Subclass

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

Field

RevFilterALL
Default filter that always returns true (thread safe).
RevFilterNONE
Default filter that always returns false (thread safe).
RevFilterNO_MERGES
Excludes commits with more than one parent (thread safe).
RevFilterMERGE_BASE
Selects only merge bases of the starting points (thread safe).

Constructor

Method

booleaninclude(RevWalk walker, RevCommit cmit)
Determine if the supplied commit should be included in results.