Codota Logo
CommitTimeRevFilter$Between
Code IndexAdd Codota to your IDE (free)

How to use
CommitTimeRevFilter$Between
in
org.eclipse.jgit.revwalk.filter

Best Java code snippets using org.eclipse.jgit.revwalk.filter.CommitTimeRevFilter$Between (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * Create a new filter to select commits after or equal a given date/time <code>since</code>
 * and before or equal a given date/time <code>until</code>.
 *
 * @param since the point in time to cut on, in milliseconds.
 * @param until the point in time to cut off, in millisconds.
 * @return a new filter to select commits between the given date/times.
 */
public static final RevFilter between(long since, long until) {
  return new Between(since, until);
}
origin: theonedev/onedev

/**
 * Create a new filter to select commits after or equal a given date/time <code>since</code>
 * and before or equal a given date/time <code>until</code>.
 *
 * @param since the point in time to cut on, in milliseconds.
 * @param until the point in time to cut off, in millisconds.
 * @return a new filter to select commits between the given date/times.
 */
public static final RevFilter between(long since, long until) {
  return new Between(since, until);
}
origin: berlam/github-bucket

/**
 * Create a new filter to select commits after or equal a given date/time <code>since</code>
 * and before or equal a given date/time <code>until</code>.
 *
 * @param since the point in time to cut on, in milliseconds.
 * @param until the point in time to cut off, in millisconds.
 * @return a new filter to select commits between the given date/times.
 */
public static final RevFilter between(long since, long until) {
  return new Between(since, until);
}
origin: sonia.jgit/org.eclipse.jgit

/**
 * Create a new filter to select commits after or equal a given date/time <code>since</code>
 * and before or equal a given date/time <code>until</code>.
 *
 * @param since the point in time to cut on, in milliseconds.
 * @param until the point in time to cut off, in millisconds.
 * @return a new filter to select commits between the given date/times.
 */
public static final RevFilter between(final long since, final long until) {
  return new Between(since, until);
}
org.eclipse.jgit.revwalk.filterCommitTimeRevFilter$Between

Most used methods

  • <init>

Popular in Java

  • Finding current android device location
  • setContentView (Activity)
  • getApplicationContext (Context)
  • startActivity (Activity)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • DataSource (javax.sql)
    A factory for connections to the physical data source that this DataSource object represents. An alt
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now