Codota Logo
AbstractQueryModelVisitor.meetSubQueryValueOperator
Code IndexAdd Codota to your IDE (free)

How to use
meetSubQueryValueOperator
method
in
org.eclipse.rdf4j.query.algebra.helpers.AbstractQueryModelVisitor

Best Java code snippets using org.eclipse.rdf4j.query.algebra.helpers.AbstractQueryModelVisitor.meetSubQueryValueOperator (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: eclipse/rdf4j

/**
 * Method called by all <tt>meet</tt> methods with a {@link CompareSubQueryValueOperator} node as
 * argument. Forwards the call to {@link #meetSubQueryValueOperator} by default.
 * 
 * @param node
 *        The node that is being visited.
 */
protected void meetCompareSubQueryValueOperator(CompareSubQueryValueOperator node)
  throws X
{
  meetSubQueryValueOperator(node);
}
origin: org.eclipse.rdf4j/rdf4j-client

public void meet(Exists node)
  throws X
{
  meetSubQueryValueOperator(node);
}
origin: eclipse/rdf4j

@Override
public void meet(Exists node)
  throws X
{
  meetSubQueryValueOperator(node);
}
origin: org.eclipse.rdf4j/rdf4j-client

/**
 * Method called by all <tt>meet</tt> methods with a {@link CompareSubQueryValueOperator} node as
 * argument. Forwards the call to {@link #meetSubQueryValueOperator} by default.
 * 
 * @param node
 *        The node that is being visited.
 */
protected void meetCompareSubQueryValueOperator(CompareSubQueryValueOperator node)
  throws X
{
  meetSubQueryValueOperator(node);
}
origin: org.eclipse.rdf4j/rdf4j-client

public void meetOther(QueryModelNode node)
  throws X
{
  if (node instanceof UnaryTupleOperator) {
    meetUnaryTupleOperator((UnaryTupleOperator)node);
  }
  else if (node instanceof BinaryTupleOperator) {
    meetBinaryTupleOperator((BinaryTupleOperator)node);
  }
  else if (node instanceof CompareSubQueryValueOperator) {
    meetCompareSubQueryValueOperator((CompareSubQueryValueOperator)node);
  }
  else if (node instanceof SubQueryValueOperator) {
    meetSubQueryValueOperator((SubQueryValueOperator)node);
  }
  else if (node instanceof UnaryValueOperator) {
    meetUnaryValueOperator((UnaryValueOperator)node);
  }
  else if (node instanceof BinaryValueOperator) {
    meetBinaryValueOperator((BinaryValueOperator)node);
  }
  else if (node instanceof UpdateExpr) {
    meetUpdateExpr((UpdateExpr)node);
  }
  else {
    meetNode(node);
  }
}
origin: eclipse/rdf4j

@Override
public void meetOther(QueryModelNode node)
  throws X
{
  if (node instanceof UnaryTupleOperator) {
    meetUnaryTupleOperator((UnaryTupleOperator)node);
  }
  else if (node instanceof BinaryTupleOperator) {
    meetBinaryTupleOperator((BinaryTupleOperator)node);
  }
  else if (node instanceof CompareSubQueryValueOperator) {
    meetCompareSubQueryValueOperator((CompareSubQueryValueOperator)node);
  }
  else if (node instanceof SubQueryValueOperator) {
    meetSubQueryValueOperator((SubQueryValueOperator)node);
  }
  else if (node instanceof UnaryValueOperator) {
    meetUnaryValueOperator((UnaryValueOperator)node);
  }
  else if (node instanceof BinaryValueOperator) {
    meetBinaryValueOperator((BinaryValueOperator)node);
  }
  else if (node instanceof UpdateExpr) {
    meetUpdateExpr((UpdateExpr)node);
  }
  else {
    meetNode(node);
  }
}
org.eclipse.rdf4j.query.algebra.helpersAbstractQueryModelVisitormeetSubQueryValueOperator

Javadoc

Method called by all meet methods with a SubQueryValueOperator node as argument. Forwards the call to #meetNode by default.

Popular methods of AbstractQueryModelVisitor

  • meet
  • meetNode
    Method called by all of the other meet methods that are not overridden in subclasses. This method ca
  • meetUnaryTupleOperator
    Method called by all meet methods with a UnaryTupleOperator node as argument. Forwards the call to #
  • <init>
  • meetBinaryTupleOperator
    Method called by all meet methods with a BinaryTupleOperator node as argument. Forwards the call to
  • meetBinaryValueOperator
    Method called by all meet methods with a BinaryValueOperator node as argument. Forwards the call to
  • meetCompareSubQueryValueOperator
    Method called by all meet methods with a CompareSubQueryValueOperator node as argument. Forwards the
  • meetNAryValueOperator
    Method called by all meet methods with a org.eclipse.rdf4j.query.algebra.NAryValueOperator node as a
  • meetUnaryValueOperator
    Method called by all meet methods with a UnaryValueOperator node as argument. Forwards the call to #
  • meetUpdateExpr
    Method called by all meet methods with a UpdateExpr node as argument. Forwards the call to #meetNode
  • meetOther
  • meetOther

Popular in Java

  • Creating JSON documents from java classes using gson
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • onRequestPermissionsResult (Fragment)
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • PriorityQueue (java.util)
    An unbounded priority Queue based on a priority heap. The elements of the priority queue are ordered
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
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