final class com.google.common.graph.UndirectedGraphConnections<N, V> implements com.google.common.graph.GraphConnections<N, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.graph.UndirectedGraphConnections
  super_class: java.lang.Object
{
  private final java.util.Map<N, V> adjacentNodeValues;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<TN;TV;>;

  private static volatile int[] $SWITCH_TABLE$com$google$common$graph$ElementOrder$Type;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  private void <init>(java.util.Map<N, V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.util.Map adjacentNodeValues
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* adjacentNodeValues */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
            putfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
         2: .line 45
            return
        end local 1 // java.util.Map adjacentNodeValues
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    3     1  adjacentNodeValues  Ljava/util/Map<TN;TV;>;
    Signature: (Ljava/util/Map<TN;TV;>;)V
    MethodParameters:
                    Name  Flags
      adjacentNodeValues  

  static <N, V> com.google.common.graph.UndirectedGraphConnections<N, V> of(com.google.common.graph.ElementOrder<N>);
    descriptor: (Lcom/google/common/graph/ElementOrder;)Lcom/google/common/graph/UndirectedGraphConnections;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.google.common.graph.ElementOrder incidentEdgeOrder
         0: .line 48
            invokestatic com.google.common.graph.UndirectedGraphConnections.$SWITCH_TABLE$com$google$common$graph$ElementOrder$Type:()[I
            aload 0 /* incidentEdgeOrder */
            invokevirtual com.google.common.graph.ElementOrder.type:()Lcom/google/common/graph/ElementOrder$Type;
            invokevirtual com.google.common.graph.ElementOrder$Type.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 1
                    2: 4
              default: 7
          }
         1: .line 50
      StackMap locals:
      StackMap stack:
            new com.google.common.graph.UndirectedGraphConnections
            dup
         2: .line 51
            new java.util.HashMap
            dup
            iconst_2
            fconst_1
            invokespecial java.util.HashMap.<init>:(IF)V
         3: .line 50
            invokespecial com.google.common.graph.UndirectedGraphConnections.<init>:(Ljava/util/Map;)V
            areturn
         4: .line 53
      StackMap locals:
      StackMap stack:
            new com.google.common.graph.UndirectedGraphConnections
            dup
         5: .line 54
            new java.util.LinkedHashMap
            dup
            iconst_2
            fconst_1
            invokespecial java.util.LinkedHashMap.<init>:(IF)V
         6: .line 53
            invokespecial com.google.common.graph.UndirectedGraphConnections.<init>:(Ljava/util/Map;)V
            areturn
         7: .line 56
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            aload 0 /* incidentEdgeOrder */
            invokevirtual com.google.common.graph.ElementOrder.type:()Lcom/google/common/graph/ElementOrder$Type;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 0 // com.google.common.graph.ElementOrder incidentEdgeOrder
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0  incidentEdgeOrder  Lcom/google/common/graph/ElementOrder<TN;>;
    Signature: <N:Ljava/lang/Object;V:Ljava/lang/Object;>(Lcom/google/common/graph/ElementOrder<TN;>;)Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
    MethodParameters:
                   Name  Flags
      incidentEdgeOrder  

  static <N, V> com.google.common.graph.UndirectedGraphConnections<N, V> ofImmutable(java.util.Map<N, V>);
    descriptor: (Ljava/util/Map;)Lcom/google/common/graph/UndirectedGraphConnections;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.Map adjacentNodeValues
         0: .line 61
            new com.google.common.graph.UndirectedGraphConnections
            dup
            aload 0 /* adjacentNodeValues */
            invokestatic com.google.common.collect.ImmutableMap.copyOf:(Ljava/util/Map;)Lcom/google/common/collect/ImmutableMap;
            invokespecial com.google.common.graph.UndirectedGraphConnections.<init>:(Ljava/util/Map;)V
            areturn
        end local 0 // java.util.Map adjacentNodeValues
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    1     0  adjacentNodeValues  Ljava/util/Map<TN;TV;>;
    Signature: <N:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/util/Map<TN;TV;>;)Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
    MethodParameters:
                    Name  Flags
      adjacentNodeValues  

  public java.util.Set<N> adjacentNodes();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
         0: .line 66
            aload 0 /* this */
            getfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
    Signature: ()Ljava/util/Set<TN;>;

  public java.util.Set<N> predecessors();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
         0: .line 71
            aload 0 /* this */
            invokevirtual com.google.common.graph.UndirectedGraphConnections.adjacentNodes:()Ljava/util/Set;
            areturn
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
    Signature: ()Ljava/util/Set<TN;>;

  public java.util.Set<N> successors();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
         0: .line 76
            aload 0 /* this */
            invokevirtual com.google.common.graph.UndirectedGraphConnections.adjacentNodes:()Ljava/util/Set;
            areturn
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
    Signature: ()Ljava/util/Set<TN;>;

  public java.util.Iterator<com.google.common.graph.EndpointPair<N>> incidentEdgeIterator(N);
    descriptor: (Ljava/lang/Object;)Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object thisNode
         0: .line 82
            aload 0 /* this */
            getfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
         1: .line 83
            new com.google.common.graph.UndirectedGraphConnections$1
            dup
            aload 0 /* this */
            aload 1 /* thisNode */
            invokespecial com.google.common.graph.UndirectedGraphConnections$1.<init>:(Lcom/google/common/graph/UndirectedGraphConnections;Ljava/lang/Object;)V
         2: .line 81
            invokestatic com.google.common.collect.Iterators.transform:(Ljava/util/Iterator;Lcom/google/common/base/Function;)Ljava/util/Iterator;
            areturn
        end local 1 // java.lang.Object thisNode
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    3     1  thisNode  TN;
    Signature: (TN;)Ljava/util/Iterator<Lcom/google/common/graph/EndpointPair<TN;>;>;
    MethodParameters:
          Name  Flags
      thisNode  final

  public V value();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object node
         0: .line 93
            aload 0 /* this */
            getfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
            aload 1 /* node */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    1     1  node  TN;
    Signature: (TN;)TV;
    MethodParameters:
      Name  Flags
      node  

  public void removePredecessor();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object node
         0: .line 99
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual com.google.common.graph.UndirectedGraphConnections.removeSuccessor:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 100
            return
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    2     1  node  TN;
    Signature: (TN;)V
    MethodParameters:
      Name  Flags
      node  

  public V removeSuccessor();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object node
         0: .line 104
            aload 0 /* this */
            getfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
            aload 1 /* node */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    1     1  node  TN;
    Signature: (TN;)TV;
    MethodParameters:
      Name  Flags
      node  

  public void addPredecessor(N, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object node
        start local 2 // java.lang.Object value
         0: .line 110
            aload 0 /* this */
            aload 1 /* node */
            aload 2 /* value */
            invokevirtual com.google.common.graph.UndirectedGraphConnections.addSuccessor:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 111
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    2     1   node  TN;
            0    2     2  value  TV;
    Signature: (TN;TV;)V
    MethodParameters:
       Name  Flags
      node   
      value  

  public V addSuccessor(N, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.graph.UndirectedGraphConnections this
        start local 1 // java.lang.Object node
        start local 2 // java.lang.Object value
         0: .line 115
            aload 0 /* this */
            getfield com.google.common.graph.UndirectedGraphConnections.adjacentNodeValues:Ljava/util/Map;
            aload 1 /* node */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object node
        end local 0 // com.google.common.graph.UndirectedGraphConnections this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/graph/UndirectedGraphConnections<TN;TV;>;
            0    1     1   node  TN;
            0    1     2  value  TV;
    Signature: (TN;TV;)TV;
    MethodParameters:
       Name  Flags
      node   
      value  

  static int[] $SWITCH_TABLE$com$google$common$graph$ElementOrder$Type();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 40
            getstatic com.google.common.graph.UndirectedGraphConnections.$SWITCH_TABLE$com$google$common$graph$ElementOrder$Type:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic com.google.common.graph.ElementOrder$Type.values:()[Lcom/google/common/graph/ElementOrder$Type;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic com.google.common.graph.ElementOrder$Type.INSERTION:Lcom/google/common/graph/ElementOrder$Type;
            invokevirtual com.google.common.graph.ElementOrder$Type.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic com.google.common.graph.ElementOrder$Type.SORTED:Lcom/google/common/graph/ElementOrder$Type;
            invokevirtual com.google.common.graph.ElementOrder$Type.ordinal:()I
            iconst_4
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic com.google.common.graph.ElementOrder$Type.STABLE:Lcom/google/common/graph/ElementOrder$Type;
            invokevirtual com.google.common.graph.ElementOrder$Type.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic com.google.common.graph.ElementOrder$Type.UNORDERED:Lcom/google/common/graph/ElementOrder$Type;
            invokevirtual com.google.common.graph.ElementOrder$Type.ordinal:()I
            iconst_1
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic com.google.common.graph.UndirectedGraphConnections.$SWITCH_TABLE$com$google$common$graph$ElementOrder$Type:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
}
Signature: <N:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lcom/google/common/graph/GraphConnections<TN;TV;>;
SourceFile: "UndirectedGraphConnections.java"
NestMembers:
  com.google.common.graph.UndirectedGraphConnections$1
InnerClasses:
  public final Type = com.google.common.graph.ElementOrder$Type of com.google.common.graph.ElementOrder
  com.google.common.graph.UndirectedGraphConnections$1