Show / Hide Table of Contents

Interface IMatchTriplePattern

Inteface for Triple Patterns that do simple pattern matching.
Inherited Members
ITriplePattern.Evaluate(SparqlEvaluationContext)
ITriplePattern.PatternType
ITriplePattern.IsAcceptAll
ITriplePattern.Variables
ITriplePattern.FloatingVariables
ITriplePattern.FixedVariables
ITriplePattern.UsesDefaultDataset
ITriplePattern.HasNoBlankVariables
System.IComparable<VDS.RDF.Query.Patterns.ITriplePattern>.CompareTo(VDS.RDF.Query.Patterns.ITriplePattern)
System.IComparable<VDS.RDF.Query.Patterns.IMatchTriplePattern>.CompareTo(VDS.RDF.Query.Patterns.IMatchTriplePattern)
Namespace: VDS.RDF.Query.Patterns
Assembly: dotNetRDF.dll
Syntax
public interface IMatchTriplePattern : ITriplePattern, IComparable<ITriplePattern>, IComparable<IMatchTriplePattern>

Properties

| Improve this Doc View Source

IndexType

Gets the Index type that should be used in Pattern execution.
Declaration
TripleIndexType IndexType { get; }
Property Value
Type Description
TripleIndexType
| Improve this Doc View Source

Object

Gets the Object of the Pattern.
Declaration
PatternItem Object { get; }
Property Value
Type Description
PatternItem
| Improve this Doc View Source

Predicate

Gets the Predicate of the Pattern.
Declaration
PatternItem Predicate { get; }
Property Value
Type Description
PatternItem
| Improve this Doc View Source

Subject

Gets the Subject of the Pattern.
Declaration
PatternItem Subject { get; }
Property Value
Type Description
PatternItem

Methods

| Improve this Doc View Source

Accepts(SparqlEvaluationContext, Triple)

Gets whether a given triple is accepted by this pattern.
Declaration
bool Accepts(SparqlEvaluationContext context, Triple t)
Parameters
Type Name Description
SparqlEvaluationContext context Context.
Triple t Triple.
Returns
Type Description
System.Boolean
| Improve this Doc View Source

CreateResult(Triple)

Creates a set from a Triple.
Declaration
ISet CreateResult(Triple t)
Parameters
Type Name Description
Triple t Triple.
Returns
Type Description
ISet
| Improve this Doc View Source

GetTriples(SparqlEvaluationContext)

Gets the Triples that match this pattern.
Declaration
IEnumerable<Triple> GetTriples(SparqlEvaluationContext context)
Parameters
Type Name Description
SparqlEvaluationContext context Evaluation Context.
Returns
Type Description
System.Collections.Generic.IEnumerable<Triple>

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • IndexType
    • Object
    • Predicate
    • Subject
  • Methods
    • Accepts(SparqlEvaluationContext, Triple)
    • CreateResult(Triple)
    • GetTriples(SparqlEvaluationContext)
  • Extension Methods
Back to top Generated by DocFX