com.graphaware.relcount.common.counter.RelationshipCounter Maven / Gradle / Ivy
/*
* Copyright (c) 2013 GraphAware
*
* This file is part of GraphAware.
*
* GraphAware is free software: you can redistribute it and/or modify it under the terms of
* the GNU General Public License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of
* the GNU General Public License along with this program. If not, see
* .
*/
package com.graphaware.relcount.common.counter;
import com.graphaware.propertycontainer.dto.common.relationship.HasTypeAndDirection;
import org.neo4j.graphdb.Node;
/**
* A node in/out-degree counter. Degree is the number of incoming/outgoing relationships that a node has. Implementations
* should provide a way to describe which relationships should be counted (i.e. direction, type, properties).
*/
public interface RelationshipCounter extends HasTypeAndDirection {
/**
* Count relationships described by this counter on the given node.
*
* @param node on which to count relationships.
* @return number of relationships.
* @throws UnableToCountException indicating that for some reason, relationships could not be counted.
* For example, when asking for a count purely based on cached values and the cached
* values are not present (e.g. have been compacted-out).
*/
int count(Node node);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy