Package com.google.common.graph
Class AbstractBaseGraph.IncidentEdgeSet<N>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<EndpointPair<N>>
-
- com.google.common.graph.AbstractBaseGraph.IncidentEdgeSet<N>
-
- All Implemented Interfaces:
java.lang.Iterable<EndpointPair<N>>
,java.util.Collection<EndpointPair<N>>
,java.util.Set<EndpointPair<N>>
- Direct Known Subclasses:
AbstractBaseGraph.IncidentEdgeSet.Directed
,AbstractBaseGraph.IncidentEdgeSet.Undirected
- Enclosing class:
- AbstractBaseGraph<N>
private abstract static class AbstractBaseGraph.IncidentEdgeSet<N> extends java.util.AbstractSet<EndpointPair<N>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
AbstractBaseGraph.IncidentEdgeSet.Directed<N>
private static class
AbstractBaseGraph.IncidentEdgeSet.Undirected<N>
-
Constructor Summary
Constructors Modifier Constructor Description private
IncidentEdgeSet(BaseGraph<N> graph, N node)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <N> AbstractBaseGraph.IncidentEdgeSet<N>
of(BaseGraph<N> graph, N node)
boolean
remove(java.lang.Object o)
-
Methods inherited from class java.util.AbstractCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, retainAll, size, toArray, toArray, toString
-
-
-
-
Method Detail
-
of
public static <N> AbstractBaseGraph.IncidentEdgeSet<N> of(BaseGraph<N> graph, N node)
-
remove
public boolean remove(java.lang.Object o)
- Specified by:
remove
in interfacejava.util.Collection<N>
- Specified by:
remove
in interfacejava.util.Set<N>
- Overrides:
remove
in classjava.util.AbstractCollection<EndpointPair<N>>
-
-