Class TokenisingStoreParserContext
Class for Store Parser Contexts for Tokeniser based Parsing.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Parsing.Contexts
Assembly: dotNetRDF.dll
Syntax
public class TokenisingStoreParserContext : BaseStoreParserContext, IStoreParserContext
Constructors
| Improve this Doc View SourceTokenisingStoreParserContext(IRdfHandler, ITokeniser)
Creates a new Tokenising Store Parser Context with default settings.
Declaration
public TokenisingStoreParserContext(IRdfHandler handler, ITokeniser tokeniser)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenisingStoreParserContext(IRdfHandler, ITokeniser, Boolean, Boolean)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(IRdfHandler handler, ITokeniser tokeniser, bool traceParsing, bool traceTokeniser)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
System.Boolean | traceParsing | Whether to trace parsing. |
System.Boolean | traceTokeniser | Whether to trace tokenisation. |
TokenisingStoreParserContext(IRdfHandler, ITokeniser, TokenQueueMode)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(IRdfHandler handler, ITokeniser tokeniser, TokenQueueMode queueMode)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenQueueMode | queueMode | Tokeniser Queue Mode. |
TokenisingStoreParserContext(IRdfHandler, ITokeniser, TokenQueueMode, Boolean, Boolean)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(IRdfHandler handler, ITokeniser tokeniser, TokenQueueMode queueMode, bool traceParsing, bool traceTokeniser)
Parameters
Type | Name | Description |
---|---|---|
IRdfHandler | handler | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenQueueMode | queueMode | Tokeniser Queue Mode. |
System.Boolean | traceParsing | Whether to trace parsing. |
System.Boolean | traceTokeniser | Whether to trace tokenisation. |
TokenisingStoreParserContext(ITripleStore, ITokeniser)
Creates a new Tokenising Store Parser Context with default settings.
Declaration
public TokenisingStoreParserContext(ITripleStore store, ITokeniser tokeniser)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenisingStoreParserContext(ITripleStore, ITokeniser, Boolean, Boolean)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(ITripleStore store, ITokeniser tokeniser, bool traceParsing, bool traceTokeniser)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
System.Boolean | traceParsing | Whether to trace parsing. |
System.Boolean | traceTokeniser | Whether to trace tokenisation. |
TokenisingStoreParserContext(ITripleStore, ITokeniser, TokenQueueMode)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(ITripleStore store, ITokeniser tokeniser, TokenQueueMode queueMode)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenQueueMode | queueMode | Tokeniser Queue Mode. |
TokenisingStoreParserContext(ITripleStore, ITokeniser, TokenQueueMode, Boolean, Boolean)
Creates a new Tokenising Store Parser Context with custom settings.
Declaration
public TokenisingStoreParserContext(ITripleStore store, ITokeniser tokeniser, TokenQueueMode queueMode, bool traceParsing, bool traceTokeniser)
Parameters
Type | Name | Description |
---|---|---|
ITripleStore | store | Store to parse into. |
ITokeniser | tokeniser | Tokeniser to use. |
TokenQueueMode | queueMode | Tokeniser Queue Mode. |
System.Boolean | traceParsing | Whether to trace parsing. |
System.Boolean | traceTokeniser | Whether to trace tokenisation. |
Fields
| Improve this Doc View Source_localTokens
Local Tokens.
Declaration
protected Stack<IToken> _localTokens
Field Value
Type | Description |
---|---|
System.Collections.Generic.Stack<IToken> |
_queue
Tokeniser.
Declaration
protected ITokenQueue _queue
Field Value
Type | Description |
---|---|
ITokenQueue |
_traceTokeniser
Is Tokeniser traced?.
Declaration
protected bool _traceTokeniser
Field Value
Type | Description |
---|---|
System.Boolean |
Properties
| Improve this Doc View SourceLocalTokens
Gets the Local Tokens stack.
Declaration
public Stack<IToken> LocalTokens { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Stack<IToken> |
Tokens
Gets the Token Queue.
Declaration
public ITokenQueue Tokens { get; }
Property Value
Type | Description |
---|---|
ITokenQueue |
TraceTokeniser
Gets/Sets whether tokeniser tracing is used.
Declaration
public bool TraceTokeniser { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |