public class com.google.common.graph.ImmutableValueGraph$Builder<N, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.google.common.graph.ImmutableValueGraph$Builder
  super_class: java.lang.Object
{
  private final com.google.common.graph.MutableValueGraph<N, V> mutableValueGraph;
    descriptor: Lcom/google/common/graph/MutableValueGraph;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/graph/MutableValueGraph<TN;TV;>;

  void <init>(com.google.common.graph.ValueGraphBuilder<N, V>);
    descriptor: (Lcom/google/common/graph/ValueGraphBuilder;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
        start local 1 // com.google.common.graph.ValueGraphBuilder graphBuilder
         0: .line 132
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 135
            aload 0 /* this */
         2: .line 136
            aload 1 /* graphBuilder */
            invokevirtual com.google.common.graph.ValueGraphBuilder.copy:()Lcom/google/common/graph/ValueGraphBuilder;
            invokestatic com.google.common.graph.ElementOrder.stable:()Lcom/google/common/graph/ElementOrder;
            invokevirtual com.google.common.graph.ValueGraphBuilder.incidentEdgeOrder:(Lcom/google/common/graph/ElementOrder;)Lcom/google/common/graph/ValueGraphBuilder;
            invokevirtual com.google.common.graph.ValueGraphBuilder.build:()Lcom/google/common/graph/MutableValueGraph;
         3: .line 135
            putfield com.google.common.graph.ImmutableValueGraph$Builder.mutableValueGraph:Lcom/google/common/graph/MutableValueGraph;
         4: .line 137
            return
        end local 1 // com.google.common.graph.ValueGraphBuilder graphBuilder
        end local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
            0    5     1  graphBuilder  Lcom/google/common/graph/ValueGraphBuilder<TN;TV;>;
    Signature: (Lcom/google/common/graph/ValueGraphBuilder<TN;TV;>;)V
    MethodParameters:
              Name  Flags
      graphBuilder  

  public com.google.common.graph.ImmutableValueGraph$Builder<N, V> addNode(N);
    descriptor: (Ljava/lang/Object;)Lcom/google/common/graph/ImmutableValueGraph$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
        start local 1 // java.lang.Object node
         0: .line 148
            aload 0 /* this */
            getfield com.google.common.graph.ImmutableValueGraph$Builder.mutableValueGraph:Lcom/google/common/graph/MutableValueGraph;
            aload 1 /* node */
            invokeinterface com.google.common.graph.MutableValueGraph.addNode:(Ljava/lang/Object;)Z
            pop
         1: .line 149
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
            0    2     1  node  TN;
    Signature: (TN;)Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
      Name  Flags
      node  

  public com.google.common.graph.ImmutableValueGraph$Builder<N, V> putEdgeValue(N, N, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/google/common/graph/ImmutableValueGraph$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
        start local 1 // java.lang.Object nodeU
        start local 2 // java.lang.Object nodeV
        start local 3 // java.lang.Object value
         0: .line 170
            aload 0 /* this */
            getfield com.google.common.graph.ImmutableValueGraph$Builder.mutableValueGraph:Lcom/google/common/graph/MutableValueGraph;
            aload 1 /* nodeU */
            aload 2 /* nodeV */
            aload 3 /* value */
            invokeinterface com.google.common.graph.MutableValueGraph.putEdgeValue:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 171
            aload 0 /* this */
            areturn
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object nodeV
        end local 1 // java.lang.Object nodeU
        end local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
            0    2     1  nodeU  TN;
            0    2     2  nodeV  TN;
            0    2     3  value  TV;
    Signature: (TN;TN;TV;)Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
       Name  Flags
      nodeU  
      nodeV  
      value  

  public com.google.common.graph.ImmutableValueGraph$Builder<N, V> putEdgeValue(com.google.common.graph.EndpointPair<N>, V);
    descriptor: (Lcom/google/common/graph/EndpointPair;Ljava/lang/Object;)Lcom/google/common/graph/ImmutableValueGraph$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
        start local 1 // com.google.common.graph.EndpointPair endpoints
        start local 2 // java.lang.Object value
         0: .line 195
            aload 0 /* this */
            getfield com.google.common.graph.ImmutableValueGraph$Builder.mutableValueGraph:Lcom/google/common/graph/MutableValueGraph;
            aload 1 /* endpoints */
            aload 2 /* value */
            invokeinterface com.google.common.graph.MutableValueGraph.putEdgeValue:(Lcom/google/common/graph/EndpointPair;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 196
            aload 0 /* this */
            areturn
        end local 2 // java.lang.Object value
        end local 1 // com.google.common.graph.EndpointPair endpoints
        end local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
            0    2     1  endpoints  Lcom/google/common/graph/EndpointPair<TN;>;
            0    2     2      value  TV;
    Signature: (Lcom/google/common/graph/EndpointPair<TN;>;TV;)Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
           Name  Flags
      endpoints  
      value      

  public com.google.common.graph.ImmutableValueGraph<N, V> build();
    descriptor: ()Lcom/google/common/graph/ImmutableValueGraph;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
         0: .line 204
            aload 0 /* this */
            getfield com.google.common.graph.ImmutableValueGraph$Builder.mutableValueGraph:Lcom/google/common/graph/MutableValueGraph;
            invokestatic com.google.common.graph.ImmutableValueGraph.copyOf:(Lcom/google/common/graph/ValueGraph;)Lcom/google/common/graph/ImmutableValueGraph;
            areturn
        end local 0 // com.google.common.graph.ImmutableValueGraph$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/ImmutableValueGraph$Builder<TN;TV;>;
    Signature: ()Lcom/google/common/graph/ImmutableValueGraph<TN;TV;>;
}
Signature: <N:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "ImmutableValueGraph.java"
NestHost: com.google.common.graph.ImmutableValueGraph
InnerClasses:
  public Builder = com.google.common.graph.ImmutableValueGraph$Builder of com.google.common.graph.ImmutableValueGraph