Class FullTripleComparer
Triple comparer which compares on subjects, then predicates and finally objects.
Implements
System.Collections.Generic.IEqualityComparer<Triple>
System.Collections.Generic.IComparer<Triple>
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
Assembly: dotNetRDF.dll
Syntax
public class FullTripleComparer : BaseTripleComparer, IEqualityComparer<Triple>, IComparer<Triple>
Constructors
| Improve this Doc View SourceFullTripleComparer()
Creates a new Full Triple comparer.
Declaration
public FullTripleComparer()
FullTripleComparer(IComparer<INode>)
Creates a new Full Triple comparer that uses a specific Node comparer.
Declaration
public FullTripleComparer(IComparer<INode> nodeComparer)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IComparer<INode> | nodeComparer | Node comparer. |
Methods
| Improve this Doc View SourceCompare(Triple, Triple)
Compares two Triples.
Declaration
public override int Compare(Triple x, Triple y)
Parameters
Type | Name | Description |
---|---|---|
Triple | x | Triple. |
Triple | y | Triple. |
Returns
Type | Description |
---|---|
System.Int32 |
Overrides
Implements
System.Collections.Generic.IEqualityComparer<T>
System.Collections.Generic.IComparer<T>