Show / Hide Table of Contents

Class NullOperator

Represents a part of the algebra that has been determined to not return any results in advance and so can be replaced with this operator which always returns null.

Inheritance
object
NullOperator
Implements
ITerminalOperator
ISparqlAlgebra
IVisitable
IProcessable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Algebra
Assembly: dotNetRdf.dll
Syntax
public class NullOperator : ITerminalOperator, ISparqlAlgebra, IVisitable, IProcessable
Remarks

Primarily intended for use with Algebra Optimisers which are rewriting the algebra to run against an out of memory dataset (e.g. SQL based) where it may be easily possible to determine if a triple pattern will match in advance of actually returning the matches.

Constructors

| Edit this page View Source

NullOperator(IEnumerable<string>)

Creates a new Null Operator.

Declaration
public NullOperator(IEnumerable<string> variables)
Parameters
Type Name Description
IEnumerable<string> variables

Variables in the algebra that this null is replacing.

Properties

| Edit this page View Source

FixedVariables

Gets the enumeration of fixed variables in the algebra i.e. variables that are guaranteed to have a bound value.

Declaration
public IEnumerable<string> FixedVariables { get; }
Property Value
Type Description
IEnumerable<string>
| Edit this page View Source

FloatingVariables

Gets the enumeration of floating variables in the algebra i.e. variables that are not guaranteed to have a bound value.

Declaration
public IEnumerable<string> FloatingVariables { get; }
Property Value
Type Description
IEnumerable<string>
| Edit this page View Source

Variables

Gets the variables used in this algebra.

Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type Description
IEnumerable<string>

Methods

| Edit this page View Source

Accept<T>(ISparqlAlgebraVisitor<T>)

Accept a simple algebra visitor.

Declaration
public T Accept<T>(ISparqlAlgebraVisitor<T> visitor)
Parameters
Type Name Description
ISparqlAlgebraVisitor<T> visitor

The visitor implementation.

Returns
Type Description
T
Type Parameters
Name Description
T

The type returned by the Visit methods of the visitor.

| Edit this page View Source

Accept<TResult, TContext>(ISparqlQueryAlgebraProcessor<TResult, TContext>, TContext)

Called by an algebra visitor to process an item by invoking the appropriate method on the processor passed in.

Declaration
public TResult Accept<TResult, TContext>(ISparqlQueryAlgebraProcessor<TResult, TContext> processor, TContext context)
Parameters
Type Name Description
ISparqlQueryAlgebraProcessor<TResult, TContext> processor

The processor to invoke.

TContext context

The context to pass to the processor.

Returns
Type Description
TResult

The result of invoking the processor method.

Type Parameters
Name Description
TResult

The type of result returned by the processor.

TContext

The type of the context object to be provided to the processor.

| Edit this page View Source

ToGraphPattern()

Throws an error since a null operator cannot be transformed back into a query.

Declaration
public GraphPattern ToGraphPattern()
Returns
Type Description
GraphPattern
| Edit this page View Source

ToQuery()

Throws an error since a null operator cannot be transformed back into a query.

Declaration
public SparqlQuery ToQuery()
Returns
Type Description
SparqlQuery
| Edit this page View Source

ToString()

Gets the string representation of the algebra.

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Implements

ITerminalOperator
ISparqlAlgebra
IVisitable
IProcessable

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Constructors
    • NullOperator(IEnumerable<string>)
  • Properties
    • FixedVariables
    • FloatingVariables
    • Variables
  • Methods
    • Accept<T>(ISparqlAlgebraVisitor<T>)
    • Accept<TResult, TContext>(ISparqlQueryAlgebraProcessor<TResult, TContext>, TContext)
    • ToGraphPattern()
    • ToQuery()
    • ToString()
  • Implements
  • Extension Methods
Back to top Generated by DocFX