mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
24 lines
508 B
Java
24 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);
|
||
|
}
|