Rabbit-R1/android (non root)/java/sources/com/google/common/graph/NetworkConnections.java

34 lines
573 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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();
}