Rabbit-R1/switch port/java/sources/com/google/common/graph/MutableValueGraph.java
2024-05-21 17:08:36 -04:00

23 lines
508 B
Java

package com.google.common.graph;
import javax.annotation.CheckForNull;
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
public interface MutableValueGraph<N, V> extends ValueGraph<N, V> {
boolean addNode(N n);
@CheckForNull
V putEdgeValue(EndpointPair<N> endpointPair, V v);
@CheckForNull
V putEdgeValue(N n, N n2, V v);
@CheckForNull
V removeEdge(EndpointPair<N> endpointPair);
@CheckForNull
V removeEdge(N n, N n2);
boolean removeNode(N n);
}