Rabbit-R1/switch port/java/sources/com/google/common/graph/MutableValueGraph.java

24 lines
508 B
Java
Raw Normal View History

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