mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
23 lines
508 B
Java
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);
|
|
}
|