Rabbit-R1/android (non root)/java/sources/com/google/common/graph/NetworkConnections.java
2024-05-21 17:08:36 -04:00

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();
}