congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
RevFlagFilter$HasAll.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.eclipse.jgit.revwalk.filter.RevFlagFilter$HasAll
constructor

Best Java code snippets using org.eclipse.jgit.revwalk.filter.RevFlagFilter$HasAll.<init> (Showing top 12 results out of 315)

origin: theonedev/onedev

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlag... a) {
  final RevFlagSet set = new RevFlagSet();
  for (RevFlag flag : a)
    set.add(flag);
  return new HasAll(set);
}
origin: sonia.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(final RevFlag... a) {
  final RevFlagSet set = new RevFlagSet();
  for (final RevFlag flag : a)
    set.add(flag);
  return new HasAll(set);
}
origin: berlam/github-bucket

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlagSet a) {
  return new HasAll(new RevFlagSet(a));
}
origin: berlam/github-bucket

/**
 * Create a new filter that tests for a single flag.
 *
 * @param a
 *            the flag to test.
 * @return filter that selects only commits with flag <code>a</code>.
 */
public static RevFilter has(RevFlag a) {
  final RevFlagSet s = new RevFlagSet();
  s.add(a);
  return new HasAll(s);
}
origin: berlam/github-bucket

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlag... a) {
  final RevFlagSet set = new RevFlagSet();
  for (RevFlag flag : a)
    set.add(flag);
  return new HasAll(set);
}
origin: sonia.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests for a single flag.
 *
 * @param a
 *            the flag to test.
 * @return filter that selects only commits with flag <code>a</code>.
 */
public static RevFilter has(final RevFlag a) {
  final RevFlagSet s = new RevFlagSet();
  s.add(a);
  return new HasAll(s);
}
origin: theonedev/onedev

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlagSet a) {
  return new HasAll(new RevFlagSet(a));
}
origin: sonia.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(final RevFlagSet a) {
  return new HasAll(new RevFlagSet(a));
}
origin: theonedev/onedev

/**
 * Create a new filter that tests for a single flag.
 *
 * @param a
 *            the flag to test.
 * @return filter that selects only commits with flag <code>a</code>.
 */
public static RevFilter has(RevFlag a) {
  final RevFlagSet s = new RevFlagSet();
  s.add(a);
  return new HasAll(s);
}
origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlag... a) {
  final RevFlagSet set = new RevFlagSet();
  for (RevFlag flag : a)
    set.add(flag);
  return new HasAll(set);
}
origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests all flags in a set.
 *
 * @param a
 *            set of flags to test.
 * @return filter that selects only commits with all flags in <code>a</code>.
 */
public static RevFilter hasAll(RevFlagSet a) {
  return new HasAll(new RevFlagSet(a));
}
origin: org.eclipse.jgit/org.eclipse.jgit

/**
 * Create a new filter that tests for a single flag.
 *
 * @param a
 *            the flag to test.
 * @return filter that selects only commits with flag <code>a</code>.
 */
public static RevFilter has(RevFlag a) {
  final RevFlagSet s = new RevFlagSet();
  s.add(a);
  return new HasAll(s);
}
org.eclipse.jgit.revwalk.filterRevFlagFilter$HasAll<init>

Popular methods of RevFlagFilter$HasAll

    Popular in Java

    • Making http post requests using okhttp
    • compareTo (BigDecimal)
    • onCreateOptionsMenu (Activity)
    • setRequestProperty (URLConnection)
    • Color (java.awt)
      The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
    • Thread (java.lang)
      A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
    • Calendar (java.util)
      Calendar is an abstract base class for converting between a Date object and a set of integer fields
    • SortedMap (java.util)
      A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
    • TreeMap (java.util)
      Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
    • Table (org.hibernate.mapping)
      A relational table
    • Top plugins for WebStorm
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now