Package org.eclipse.jgit.revwalk.filter
Class CommitTimeRevFilter
- java.lang.Object
-
- org.eclipse.jgit.revwalk.filter.RevFilter
-
- org.eclipse.jgit.revwalk.filter.CommitTimeRevFilter
-
public abstract class CommitTimeRevFilter extends RevFilter
Selects commits based upon the commit time field.
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.revwalk.filter.RevFilter
ALL, MERGE_BASE, NO_MERGES, NONE, ONLY_MERGES
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RevFilter
after(long ts)
Create a new filter to select commits after a given date/time.static RevFilter
after(Date ts)
Create a new filter to select commits after a given date/time.static RevFilter
before(long ts)
Create a new filter to select commits before a given date/time.static RevFilter
before(Date ts)
Create a new filter to select commits before a given date/time.static RevFilter
between(long since, long until)
Create a new filter to select commits after or equal a given date/timesince
and before or equal a given date/timeuntil
.static RevFilter
between(Date since, Date until)
Create a new filter to select commits after or equal a given date/timesince
and before or equal a given date/timeuntil
.RevFilter
clone()
boolean
requiresCommitBody()
Whether the filter needs the commit body to be parsed.
-
-
-
Method Detail
-
before
public static final RevFilter before(Date ts)
Create a new filter to select commits before a given date/time.- Parameters:
ts
- the point in time to cut on.- Returns:
- a new filter to select commits on or before
ts
.
-
before
public static final RevFilter before(long ts)
Create a new filter to select commits before a given date/time.- Parameters:
ts
- the point in time to cut on, in milliseconds- Returns:
- a new filter to select commits on or before
ts
.
-
after
public static final RevFilter after(Date ts)
Create a new filter to select commits after a given date/time.- Parameters:
ts
- the point in time to cut on.- Returns:
- a new filter to select commits on or after
ts
.
-
after
public static final RevFilter after(long ts)
Create a new filter to select commits after a given date/time.- Parameters:
ts
- the point in time to cut on, in milliseconds.- Returns:
- a new filter to select commits on or after
ts
.
-
between
public static final RevFilter between(Date since, Date until)
Create a new filter to select commits after or equal a given date/timesince
and before or equal a given date/timeuntil
.- Parameters:
since
- the point in time to cut on.until
- the point in time to cut off.- Returns:
- a new filter to select commits between the given date/times.
-
between
public static final RevFilter between(long since, long until)
Create a new filter to select commits after or equal a given date/timesince
and before or equal a given date/timeuntil
.- Parameters:
since
- the point in time to cut on, in milliseconds.until
- the point in time to cut off, in millisconds.- Returns:
- a new filter to select commits between the given date/times.
-
clone
public RevFilter clone()
Clone this revision filter, including its parameters.
This is a deep clone. If this filter embeds objects or other filters it must also clone those, to ensure the instances do not share mutable data.
-
requiresCommitBody
public boolean requiresCommitBody()
Whether the filter needs the commit body to be parsed.- Overrides:
requiresCommitBody
in classRevFilter
- Returns:
- true if the filter needs the commit body to be parsed.
-
-