SparqlExpressionType Enumeration | 
 
            SPARQL Expression Types.
            
 
    Namespace: 
   VDS.RDF.Query.Expressions
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic enum SparqlExpressionType
Public Enumeration SparqlExpressionType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Primary | 0 | 
            The Expression is a Primary Expression which is a leaf in the expression tree
             | 
 | UnaryOperator | 1 | 
            The Expression is a Unary Operator which has a single argument
             | 
 | BinaryOperator | 2 | 
            The Expression is a Binary Operator which has two arguments
             | 
 | Function | 3 | 
            The Expression is a Function which has zero/more arguments
             | 
 | Aggregate | 4 | 
            The Expression is an Aggregate Function which has one/more arguments
             | 
 | SetOperator | 5 | 
            The Expression is a Set Operator where the first argument forms the LHS and all remaining arguments form a set on the RHS
             | 
 | GraphOperator | 6 | 
            The Expression is a Unary Operator that applies to a Graph Pattern
             | 
See Also