Class StrBeforeFunction
Represents the SPARQL STRBEFORE function.
Inheritance
System.Object
StrBeforeFunction
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)
Namespace: VDS.RDF.Query.Expressions.Functions.Sparql.String
Assembly: dotNetRDF.dll
Syntax
public class StrBeforeFunction : ISparqlExpression
Constructors
| Improve this Doc View SourceStrBeforeFunction(ISparqlExpression, ISparqlExpression)
Creates a new STRBEFORE Function.
Declaration
public StrBeforeFunction(ISparqlExpression stringExpr, ISparqlExpression startsExpr)
Parameters
Type | Name | Description |
---|---|---|
ISparql |
stringExpr | String Expression. |
ISparql |
startsExpr | Starts Expression. |
Properties
| Improve this Doc View SourceArguments
Gets the Arguments of the Function.
Declaration
public IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
Type | Description |
---|---|
System. |
CanParallelise
Gets whether an expression can safely be evaluated in parallel.
Declaration
public virtual bool CanParallelise { get; }
Property Value
Type | Description |
---|---|
System. |
Functor
Gets the Functor of the Expression.
Declaration
public string Functor { get; }
Property Value
Type | Description |
---|---|
System. |
Type
Gets the Type of the Expression.
Declaration
public SparqlExpressionType Type { get; }
Property Value
Type | Description |
---|---|
Sparql |
Variables
Gets the Variables used in the function.
Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceEvaluate(SparqlEvaluationContext, Int32)
Returns the value of the Expression as evaluated for a given Binding as a Literal Node.
Declaration
public IValuedNode Evaluate(SparqlEvaluationContext context, int bindingID)
Parameters
Type | Name | Description |
---|---|---|
Sparql |
context | Evaluation Context. |
System. |
bindingID | Binding ID. |
Returns
Type | Description |
---|---|
IValued |
IsValidArgumentPair(ILiteralNode, ILiteralNode)
Determines whether the Arguments are valid.
Declaration
protected bool IsValidArgumentPair(ILiteralNode stringLit, ILiteralNode argLit)
Parameters
Type | Name | Description |
---|---|---|
ILiteral |
stringLit | String Literal. |
ILiteral |
argLit | Argument Literal. |
Returns
Type | Description |
---|---|
System. |
ToString()
Gets the String representation of the function.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
Overrides
System.Object.ToString()
|
Improve this Doc
View Source
Transform(IExpressionTransformer)
Transforms the Expression using the given Transformer.
Declaration
public ISparqlExpression Transform(IExpressionTransformer transformer)
Parameters
Type | Name | Description |
---|---|---|
IExpression |
transformer | Expression Transformer. |
Returns
Type | Description |
---|---|
ISparql |