mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
33 lines
573 B
Java
33 lines
573 B
Java
package com.google.common.graph;
|
|
|
|
import java.util.Set;
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
interface NetworkConnections<N, E> {
|
|
void addInEdge(E e, N n, boolean z);
|
|
|
|
void addOutEdge(E e, N n);
|
|
|
|
N adjacentNode(E e);
|
|
|
|
Set<N> adjacentNodes();
|
|
|
|
Set<E> edgesConnecting(N n);
|
|
|
|
Set<E> inEdges();
|
|
|
|
Set<E> incidentEdges();
|
|
|
|
Set<E> outEdges();
|
|
|
|
Set<N> predecessors();
|
|
|
|
@CheckForNull
|
|
N removeInEdge(E e, boolean z);
|
|
|
|
N removeOutEdge(E e);
|
|
|
|
Set<N> successors();
|
|
}
|