Tabnine Logo
QueryBuilderFind.excludingType
Code IndexAdd Tabnine to your IDE (free)

How to use
excludingType
method
in
org.jboss.windup.config.query.QueryBuilderFind

Best Java code snippets using org.jboss.windup.config.query.QueryBuilderFind.excludingType (Showing top 3 results out of 315)

origin: windup/windup

@Override
public Configuration getConfiguration(RuleLoaderContext ruleLoaderContext)
{
  return ConfigurationBuilder.begin()
    .addRule()
    .when(Query.fromType(ArchiveModel.class).excludingType(IgnoredArchiveModel.class))
    .perform(
      UnzipArchiveToOutputFolder.unzip(),
      IterationProgress.monitoring("Unzipped archive", 1),
      Commit.every(1)
    )
    .addRule()
    .when(Query.fromType(ArchiveModel.class).excludingType(DuplicateArchiveModel.class))
    .perform(new DuplicateArchiveOperation());
}
origin: org.jboss.windup.rules.apps/windup-rules-java-api

@Override
public Configuration getConfiguration(RuleLoaderContext ruleLoaderContext)
{
  return ConfigurationBuilder.begin()
    .addRule()
    .when(Query.fromType(ArchiveModel.class).excludingType(IgnoredArchiveModel.class))
    .perform(
      UnzipArchiveToOutputFolder.unzip(),
      IterationProgress.monitoring("Unzipped archive", 1),
      Commit.every(1)
    )
    .addRule()
    .when(Query.fromType(ArchiveModel.class).excludingType(DuplicateArchiveModel.class))
    .perform(new DuplicateArchiveOperation());
}
origin: org.jboss.windup.rules.apps/rules-java

  @Override
  public Configuration getConfiguration(GraphContext context)
  {
    return ConfigurationBuilder.begin().addRule()
          .when(Query.fromType(ArchiveModel.class).excludingType(IgnoredArchiveModel.class))
          .perform(UnzipArchiveToOutputFolder.unzip()
                .and(IterationProgress.monitoring("Unzipped archive: ", 1))
                .and(Commit.every(1))
          );
  }
}
org.jboss.windup.config.queryQueryBuilderFindexcludingType

Javadoc

Excludes Vertices that are of the provided type.

Popular methods of QueryBuilderFind

  • withProperty
  • piped
  • evaluate
  • or
  • withoutProperty

Popular in Java

  • Running tasks concurrently on multiple threads
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • getExternalFilesDir (Context)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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