public SortedRelatedNodes(RelationshipType relType, Direction direction, Class resultType, Notion notion, int maxDepth, int count) {
this(null, relType, direction, resultType, notion, maxDepth, count);
}
public SortedRelatedNodes(Comparator<T> comparator, RelationshipType relType, Direction direction, Class resultType, int maxDepth, int count) {
this(comparator, relType, direction, resultType, new ObjectNotion(), maxDepth, count);
}