congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
SelectorImpl.pushDown
Code IndexAdd Tabnine to your IDE (free)

How to use
pushDown
method
in
org.apache.jackrabbit.oak.query.ast.SelectorImpl

Best Java code snippets using org.apache.jackrabbit.oak.query.ast.SelectorImpl.pushDown (Showing top 6 results out of 315)

origin: apache/jackrabbit-oak

@Override
public void prepare(ExecutionPlan p) {
  if (!(p instanceof SelectorExecutionPlan)) {
    throw new IllegalArgumentException("Not a selector plan");
  }
  SelectorExecutionPlan selectorPlan = (SelectorExecutionPlan) p;
  if (selectorPlan.getSelector() != this) {
    throw new IllegalArgumentException("Not a plan for this selector");
  }
  pushDown();
  this.plan = selectorPlan;
}

origin: org.apache.jackrabbit/oak-core

@Override
public void prepare(ExecutionPlan p) {
  if (!(p instanceof SelectorExecutionPlan)) {
    throw new IllegalArgumentException("Not a selector plan");
  }
  SelectorExecutionPlan selectorPlan = (SelectorExecutionPlan) p;
  if (selectorPlan.getSelector() != this) {
    throw new IllegalArgumentException("Not a plan for this selector");
  }
  pushDown();
  this.plan = selectorPlan;
}

origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak

@Override
public void prepare(ExecutionPlan p) {
  if (!(p instanceof SelectorExecutionPlan)) {
    throw new IllegalArgumentException("Not a selector plan");
  }
  SelectorExecutionPlan selectorPlan = (SelectorExecutionPlan) p;
  if (selectorPlan.getSelector() != this) {
    throw new IllegalArgumentException("Not a plan for this selector");
  }
  pushDown();
  this.plan = selectorPlan;
}

origin: org.apache.jackrabbit/oak-core

@Override
public ExecutionPlan prepare() {
  if (plan != null) {
    return plan;
  }
  pushDown();
  plan = query.getBestSelectorExecutionPlan(createFilter(true));
  return plan;
}

origin: apache/jackrabbit-oak

@Override
public ExecutionPlan prepare() {
  if (plan != null) {
    return plan;
  }
  pushDown();
  plan = query.getBestSelectorExecutionPlan(createFilter(true));
  return plan;
}

origin: org.apache.sling/org.apache.sling.testing.sling-mock-oak

@Override
public ExecutionPlan prepare() {
  if (plan != null) {
    return plan;
  }
  pushDown();
  plan = query.getBestSelectorExecutionPlan(createFilter(true));
  return plan;
}

org.apache.jackrabbit.oak.query.astSelectorImplpushDown

Popular methods of SelectorImpl

  • <init>
  • createFilter
    Create the filter condition for planning or execution.
  • currentOakProperty
  • currentPath
    Get the current absolute Oak path (normalized).
  • currentProperty
    The value for the given selector for the current node, filtered by property type.
  • currentTree
    Get the tree at the current path.
  • equals
  • evaluateCurrentRow
  • evaluateTypeMatch
  • getExecutionPlan
  • getIndex
  • getLocalPath
  • getIndex,
  • getLocalPath,
  • getMixinTypes,
  • getNodeType,
  • getPrimaryTypes,
  • getQuery,
  • getScanCount,
  • getSelectorName,
  • getSupertypes,
  • getTree

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • requestLocationUpdates (LocationManager)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • JCheckBox (javax.swing)
  • JFrame (javax.swing)
  • CodeWhisperer alternatives
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