Click or drag to resize

IIncidenceCountIndex Interface

A single incidence count index.

Namespace:  de.unika.ipd.grGen.libGr
Assembly:  libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntax
C#
public interface IIncidenceCountIndex : IAttributeIndex, 
	IIndex

The IIncidenceCountIndex type exposes the following members.

Properties
  NameDescription
Public propertyDescription
The description of the index.
(Inherited from IIndex.)
Public propertySize
The number of elements in the index.
(Inherited from IIndex.)
Top
Methods
  NameDescription
Public methodGetIncidenceCount
Lookup the incidence count of the graph element given. TODO: Shouldn't the parameter be of type INode?
Public methodLookupElements
Lookup all graph elements in the index whose indexed attribute value is equal to the value given.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscending
Lookup all graph elements in the index in ascending order. Index lookup begins at the graph element with the minimum attribute value. Index lookup ends at the graph element with the maximum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromExclusive
Lookup all graph elements in the index whose indexed attribute value is: higher than the from value specified, in ascending order. Index lookup ends at the graph element with the maximum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromExclusiveToExclusive
Lookup all graph elements in the index whose indexed attribute value is: higher than the from value specified, and lower than the to value specified, in ascending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromExclusiveToInclusive
Lookup all graph elements in the index whose indexed attribute value is: higher than the from value specified, and lower or equal than the to value specified, in ascending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromInclusive
Lookup all graph elements in the index whose indexed attribute value is: higher or equal than the from value specified, in ascending order. Index lookup ends at the graph element with the maximum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromInclusiveToExclusive
Lookup all graph elements in the index whose indexed attribute value is: higher or equal than the from value specified, and lower than the to value specified, in ascending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingFromInclusiveToInclusive
Lookup all graph elements in the index whose indexed attribute value is: higher or equal than the from value specified, and lower or equal than the to value specified, in ascending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingToExclusive
Lookup all graph elements in the index whose indexed attribute value is: lower than the to value specified, in ascending order. Index lookup begins at the graph element with the minimum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsAscendingToInclusive
Lookup all graph elements in the index whose indexed attribute value is: lower or equal than the to value specified, in ascending order. Index lookup begins at the graph element with the minimum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescending
Lookup all graph elements in the index in descending order. Index lookup begins at the graph element with the maximum attribute value. Index lookup ends at the graph element with the minimum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromExclusive
Lookup all graph elements in the index whose indexed attribute value is: lower than the from value specified, in descending order. Index lookup ends at the graph element with the minimum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromExclusiveToExclusive
Lookup all graph elements in the index whose indexed attribute value is: lower than the from value specified, and higher than the to value specified, in descending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromExclusiveToInclusive
Lookup all graph elements in the index whose indexed attribute value is: lower than the from value specified, and higher or equal than the to value specified, in descending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromInclusive
Lookup all graph elements in the index whose indexed attribute value is: lower or equal than the from value specified, in descending order. Index lookup ends at the graph element with the minimum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromInclusiveToExclusive
Lookup all graph elements in the index whose indexed attribute value is: lower or equal than the from value specified, and higher than the to value specified, in descending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingFromInclusiveToInclusive
Lookup all graph elements in the index whose indexed attribute value is: lower or equal than the from value specified, and higher or equal than the to value specified, in descending order.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingToExclusive
Lookup all graph elements in the index whose indexed attribute value is: higher than the to value specified, in descending order. Index lookup begins at the graph element with the maximum attribute value.
(Inherited from IAttributeIndex.)
Public methodLookupElementsDescendingToInclusive
Lookup all graph elements in the index whose indexed attribute value is: higher or equal than the to value specified, in descending order. Index lookup begins at the graph element with the maximum attribute value.
(Inherited from IAttributeIndex.)
Top
See Also