public interface Digraph<E,V> extends DigraphIteration<E,V>
| Modifier and Type | Method and Description | 
|---|---|
| boolean | addAllVertices(Collection<? extends E> vertices) | 
| boolean | addVertex(E vertex) | 
| boolean | containsAllVertices(Collection<? extends E> vertices) | 
| boolean | containsVertex(E vertex) | 
| V | getArc(E origin,
      E destination) | 
| boolean | hasArc(E origin,
      E destination) | 
| int | incomingSize(E vertex) | 
| boolean | isEmpty() | 
| boolean | isIncomingEmpty(E vertex) | 
| boolean | isOutgoingEmpty(E vertex) | 
| int | order() | 
| int | outgoingSize(E vertex) | 
| V | putArc(E origin,
      E destination,
      V arc) | 
| boolean | removeAllVertices(Collection<? extends E> vertices) | 
| Object | removeArc(E origin,
         E destination) | 
| boolean | removeIncoming(E vertex) | 
| boolean | removeOutgoing(E vertex) | 
| boolean | removeVertex(E vertex) | 
| int | size() | 
arcIterator, incomingIterator, outgoingIterator, vertexIteratorboolean addVertex(E vertex)
boolean addAllVertices(Collection<? extends E> vertices)
boolean removeVertex(E vertex)
boolean removeAllVertices(Collection<? extends E> vertices)
boolean removeIncoming(E vertex)
boolean removeOutgoing(E vertex)
int order()
int size()
int outgoingSize(E vertex)
int incomingSize(E vertex)
boolean containsVertex(E vertex)
boolean containsAllVertices(Collection<? extends E> vertices)
boolean isEmpty()
boolean isOutgoingEmpty(E vertex)
boolean isIncomingEmpty(E vertex)
Copyright © 2001–2023 Apache Cayenne. All rights reserved.