BaseNode.CompareTo Method (IVariableNode) |
Nodes must implement a CompareTo method to allow them to be Sorted.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic abstract int CompareTo(
IVariableNode other
)
Public MustOverride Function CompareTo (
other As IVariableNode
) As Integer
Parameters
- other
- Type: VDS.RDF.IVariableNode
Node to compare self to.
Return Value
Type:
Int32[Missing <returns> documentation for "M:VDS.RDF.BaseNode.CompareTo(VDS.RDF.IVariableNode)"]
Implements
IComparable<T>.CompareTo(T)
Remarks
Implementations should use the SPARQL Term Sort Order for ordering nodes (as opposed to value sort order). Standard implementations of Node type specific comparisons can be found in
ComparisonHelper.
See Also