final class com.google.common.collect.DenseImmutableTable<R, C, V> extends com.google.common.collect.RegularImmutableTable<R, C, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.DenseImmutableTable
  super_class: com.google.common.collect.RegularImmutableTable
{
  private final com.google.common.collect.ImmutableMap<R, java.lang.Integer> rowKeyToIndex;
    descriptor: Lcom/google/common/collect/ImmutableMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/ImmutableMap<TR;Ljava/lang/Integer;>;

  private final com.google.common.collect.ImmutableMap<C, java.lang.Integer> columnKeyToIndex;
    descriptor: Lcom/google/common/collect/ImmutableMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/ImmutableMap<TC;Ljava/lang/Integer;>;

  private final com.google.common.collect.ImmutableMap<R, com.google.common.collect.ImmutableMap<C, V>> rowMap;
    descriptor: Lcom/google/common/collect/ImmutableMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/ImmutableMap<TR;Lcom/google/common/collect/ImmutableMap<TC;TV;>;>;

  private final com.google.common.collect.ImmutableMap<C, com.google.common.collect.ImmutableMap<R, V>> columnMap;
    descriptor: Lcom/google/common/collect/ImmutableMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/ImmutableMap<TC;Lcom/google/common/collect/ImmutableMap<TR;TV;>;>;

  private final int[] rowCounts;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] columnCounts;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final V[][] values;
    descriptor: [[Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: [[TV;

  private final int[] cellRowIndices;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] cellColumnIndices;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(com.google.common.collect.ImmutableList<com.google.common.collect.Table$Cell<R, C, V>>, com.google.common.collect.ImmutableSet<R>, com.google.common.collect.ImmutableSet<C>);
    descriptor: (Lcom/google/common/collect/ImmutableList;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=14, args_size=4
        start local 0 // com.google.common.collect.DenseImmutableTable this
        start local 1 // com.google.common.collect.ImmutableList cellList
        start local 2 // com.google.common.collect.ImmutableSet rowSpace
        start local 3 // com.google.common.collect.ImmutableSet columnSpace
         0: .line 52
            aload 0 /* this */
            invokespecial com.google.common.collect.RegularImmutableTable.<init>:()V
         1: .line 57
            aload 2 /* rowSpace */
            invokevirtual com.google.common.collect.ImmutableSet.size:()I
            aload 3 /* columnSpace */
            invokevirtual com.google.common.collect.ImmutableSet.size:()I
            multianewarray [[Ljava/lang/Object; 2
            astore 4 /* array */
        start local 4 // java.lang.Object[][] array
         2: .line 58
            aload 0 /* this */
            aload 4 /* array */
            putfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
         3: .line 59
            aload 0 /* this */
            aload 2 /* rowSpace */
            invokestatic com.google.common.collect.Maps.indexMap:(Ljava/util/Collection;)Lcom/google/common/collect/ImmutableMap;
            putfield com.google.common.collect.DenseImmutableTable.rowKeyToIndex:Lcom/google/common/collect/ImmutableMap;
         4: .line 60
            aload 0 /* this */
            aload 3 /* columnSpace */
            invokestatic com.google.common.collect.Maps.indexMap:(Ljava/util/Collection;)Lcom/google/common/collect/ImmutableMap;
            putfield com.google.common.collect.DenseImmutableTable.columnKeyToIndex:Lcom/google/common/collect/ImmutableMap;
         5: .line 61
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.rowKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            invokevirtual com.google.common.collect.ImmutableMap.size:()I
            newarray 10
            putfield com.google.common.collect.DenseImmutableTable.rowCounts:[I
         6: .line 62
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.columnKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            invokevirtual com.google.common.collect.ImmutableMap.size:()I
            newarray 10
            putfield com.google.common.collect.DenseImmutableTable.columnCounts:[I
         7: .line 63
            aload 1 /* cellList */
            invokevirtual com.google.common.collect.ImmutableList.size:()I
            newarray 10
            astore 5 /* cellRowIndices */
        start local 5 // int[] cellRowIndices
         8: .line 64
            aload 1 /* cellList */
            invokevirtual com.google.common.collect.ImmutableList.size:()I
            newarray 10
            astore 6 /* cellColumnIndices */
        start local 6 // int[] cellColumnIndices
         9: .line 65
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        10: goto 26
        11: .line 66
      StackMap locals: com.google.common.collect.DenseImmutableTable com.google.common.collect.ImmutableList com.google.common.collect.ImmutableSet com.google.common.collect.ImmutableSet java.lang.Object[][] int[] int[] int
      StackMap stack:
            aload 1 /* cellList */
            iload 7 /* i */
            invokevirtual com.google.common.collect.ImmutableList.get:(I)Ljava/lang/Object;
            checkcast com.google.common.collect.Table$Cell
            astore 8 /* cell */
        start local 8 // com.google.common.collect.Table$Cell cell
        12: .line 67
            aload 8 /* cell */
            invokeinterface com.google.common.collect.Table$Cell.getRowKey:()Ljava/lang/Object;
            astore 9 /* rowKey */
        start local 9 // java.lang.Object rowKey
        13: .line 68
            aload 8 /* cell */
            invokeinterface com.google.common.collect.Table$Cell.getColumnKey:()Ljava/lang/Object;
            astore 10 /* columnKey */
        start local 10 // java.lang.Object columnKey
        14: .line 69
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.rowKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            aload 9 /* rowKey */
            invokevirtual com.google.common.collect.ImmutableMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 11 /* rowIndex */
        start local 11 // int rowIndex
        15: .line 70
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.columnKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            aload 10 /* columnKey */
            invokevirtual com.google.common.collect.ImmutableMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 12 /* columnIndex */
        start local 12 // int columnIndex
        16: .line 71
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
            iload 11 /* rowIndex */
            aaload
            iload 12 /* columnIndex */
            aaload
            astore 13 /* existingValue */
        start local 13 // java.lang.Object existingValue
        17: .line 72
            aload 13 /* existingValue */
            ifnonnull 18
            iconst_1
            goto 19
      StackMap locals: com.google.common.collect.DenseImmutableTable com.google.common.collect.ImmutableList com.google.common.collect.ImmutableSet com.google.common.collect.ImmutableSet java.lang.Object[][] int[] int[] int com.google.common.collect.Table$Cell java.lang.Object java.lang.Object int int java.lang.Object
      StackMap stack:
        18: iconst_0
      StackMap locals:
      StackMap stack: int
        19: ldc "duplicate key: (%s, %s)"
            aload 9 /* rowKey */
            aload 10 /* columnKey */
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        20: .line 73
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
            iload 11 /* rowIndex */
            aaload
            iload 12 /* columnIndex */
            aload 8 /* cell */
            invokeinterface com.google.common.collect.Table$Cell.getValue:()Ljava/lang/Object;
            aastore
        21: .line 74
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.rowCounts:[I
            iload 11 /* rowIndex */
            dup2
            iaload
            iconst_1
            iadd
            iastore
        22: .line 75
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.columnCounts:[I
            iload 12 /* columnIndex */
            dup2
            iaload
            iconst_1
            iadd
            iastore
        23: .line 76
            aload 5 /* cellRowIndices */
            iload 7 /* i */
            iload 11 /* rowIndex */
            iastore
        24: .line 77
            aload 6 /* cellColumnIndices */
            iload 7 /* i */
            iload 12 /* columnIndex */
            iastore
        end local 13 // java.lang.Object existingValue
        end local 12 // int columnIndex
        end local 11 // int rowIndex
        end local 10 // java.lang.Object columnKey
        end local 9 // java.lang.Object rowKey
        end local 8 // com.google.common.collect.Table$Cell cell
        25: .line 65
            iinc 7 /* i */ 1
      StackMap locals: com.google.common.collect.DenseImmutableTable com.google.common.collect.ImmutableList com.google.common.collect.ImmutableSet com.google.common.collect.ImmutableSet java.lang.Object[][] int[] int[] int
      StackMap stack:
        26: iload 7 /* i */
            aload 1 /* cellList */
            invokevirtual com.google.common.collect.ImmutableList.size:()I
            if_icmplt 11
        end local 7 // int i
        27: .line 79
            aload 0 /* this */
            aload 5 /* cellRowIndices */
            putfield com.google.common.collect.DenseImmutableTable.cellRowIndices:[I
        28: .line 80
            aload 0 /* this */
            aload 6 /* cellColumnIndices */
            putfield com.google.common.collect.DenseImmutableTable.cellColumnIndices:[I
        29: .line 81
            aload 0 /* this */
            new com.google.common.collect.DenseImmutableTable$RowMap
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.DenseImmutableTable$RowMap.<init>:(Lcom/google/common/collect/DenseImmutableTable;)V
            putfield com.google.common.collect.DenseImmutableTable.rowMap:Lcom/google/common/collect/ImmutableMap;
        30: .line 82
            aload 0 /* this */
            new com.google.common.collect.DenseImmutableTable$ColumnMap
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.DenseImmutableTable$ColumnMap.<init>:(Lcom/google/common/collect/DenseImmutableTable;)V
            putfield com.google.common.collect.DenseImmutableTable.columnMap:Lcom/google/common/collect/ImmutableMap;
        31: .line 83
            return
        end local 6 // int[] cellColumnIndices
        end local 5 // int[] cellRowIndices
        end local 4 // java.lang.Object[][] array
        end local 3 // com.google.common.collect.ImmutableSet columnSpace
        end local 2 // com.google.common.collect.ImmutableSet rowSpace
        end local 1 // com.google.common.collect.ImmutableList cellList
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   32     0               this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            0   32     1           cellList  Lcom/google/common/collect/ImmutableList<Lcom/google/common/collect/Table$Cell<TR;TC;TV;>;>;
            0   32     2           rowSpace  Lcom/google/common/collect/ImmutableSet<TR;>;
            0   32     3        columnSpace  Lcom/google/common/collect/ImmutableSet<TC;>;
            2   32     4              array  [[Ljava/lang/Object;
            8   32     5     cellRowIndices  [I
            9   32     6  cellColumnIndices  [I
           10   27     7                  i  I
           12   25     8               cell  Lcom/google/common/collect/Table$Cell<TR;TC;TV;>;
           13   25     9             rowKey  TR;
           14   25    10          columnKey  TC;
           15   25    11           rowIndex  I
           16   25    12        columnIndex  I
           17   25    13      existingValue  TV;
    Signature: (Lcom/google/common/collect/ImmutableList<Lcom/google/common/collect/Table$Cell<TR;TC;TV;>;>;Lcom/google/common/collect/ImmutableSet<TR;>;Lcom/google/common/collect/ImmutableSet<TC;>;)V
    MethodParameters:
             Name  Flags
      cellList     
      rowSpace     
      columnSpace  

  public com.google.common.collect.ImmutableMap<C, java.util.Map<R, V>> columnMap();
    descriptor: ()Lcom/google/common/collect/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.google.common.collect.DenseImmutableTable this
         0: .line 237
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.columnMap:Lcom/google/common/collect/ImmutableMap;
            astore 1 /* columnMap */
        start local 1 // com.google.common.collect.ImmutableMap columnMap
         1: .line 238
            aload 1 /* columnMap */
            invokestatic com.google.common.collect.ImmutableMap.copyOf:(Ljava/util/Map;)Lcom/google/common/collect/ImmutableMap;
            areturn
        end local 1 // com.google.common.collect.ImmutableMap columnMap
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            1    2     1  columnMap  Lcom/google/common/collect/ImmutableMap<TC;Lcom/google/common/collect/ImmutableMap<TR;TV;>;>;
    Signature: ()Lcom/google/common/collect/ImmutableMap<TC;Ljava/util/Map<TR;TV;>;>;

  public com.google.common.collect.ImmutableMap<R, java.util.Map<C, V>> rowMap();
    descriptor: ()Lcom/google/common/collect/ImmutableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.google.common.collect.DenseImmutableTable this
         0: .line 244
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.rowMap:Lcom/google/common/collect/ImmutableMap;
            astore 1 /* rowMap */
        start local 1 // com.google.common.collect.ImmutableMap rowMap
         1: .line 245
            aload 1 /* rowMap */
            invokestatic com.google.common.collect.ImmutableMap.copyOf:(Ljava/util/Map;)Lcom/google/common/collect/ImmutableMap;
            areturn
        end local 1 // com.google.common.collect.ImmutableMap rowMap
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            1    2     1  rowMap  Lcom/google/common/collect/ImmutableMap<TR;Lcom/google/common/collect/ImmutableMap<TC;TV;>;>;
    Signature: ()Lcom/google/common/collect/ImmutableMap<TR;Ljava/util/Map<TC;TV;>;>;

  public V get(, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // com.google.common.collect.DenseImmutableTable this
        start local 1 // java.lang.Object rowKey
        start local 2 // java.lang.Object columnKey
         0: .line 250
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.rowKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            aload 1 /* rowKey */
            invokevirtual com.google.common.collect.ImmutableMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 3 /* rowIndex */
        start local 3 // java.lang.Integer rowIndex
         1: .line 251
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.columnKeyToIndex:Lcom/google/common/collect/ImmutableMap;
            aload 2 /* columnKey */
            invokevirtual com.google.common.collect.ImmutableMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 4 /* columnIndex */
        start local 4 // java.lang.Integer columnIndex
         2: .line 252
            aload 3 /* rowIndex */
            ifnull 3
            aload 4 /* columnIndex */
            ifnonnull 4
      StackMap locals: java.lang.Integer java.lang.Integer
      StackMap stack:
         3: aconst_null
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
            aload 3 /* rowIndex */
            invokevirtual java.lang.Integer.intValue:()I
            aaload
            aload 4 /* columnIndex */
            invokevirtual java.lang.Integer.intValue:()I
            aaload
      StackMap locals:
      StackMap stack: java.lang.Object
         5: areturn
        end local 4 // java.lang.Integer columnIndex
        end local 3 // java.lang.Integer rowIndex
        end local 2 // java.lang.Object columnKey
        end local 1 // java.lang.Object rowKey
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            0    6     1       rowKey  Ljava/lang/Object;
            0    6     2    columnKey  Ljava/lang/Object;
            1    6     3     rowIndex  Ljava/lang/Integer;
            2    6     4  columnIndex  Ljava/lang/Integer;
    Signature: (Ljava/lang/Object;Ljava/lang/Object;)TV;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
           Name  Flags
      rowKey     
      columnKey  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.DenseImmutableTable this
         0: .line 257
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellRowIndices:[I
            arraylength
            ireturn
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;

  com.google.common.collect.Table$Cell<R, C, V> getCell(int);
    descriptor: (I)Lcom/google/common/collect/Table$Cell;
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.google.common.collect.DenseImmutableTable this
        start local 1 // int index
         0: .line 262
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellRowIndices:[I
            iload 1 /* index */
            iaload
            istore 2 /* rowIndex */
        start local 2 // int rowIndex
         1: .line 263
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellColumnIndices:[I
            iload 1 /* index */
            iaload
            istore 3 /* columnIndex */
        start local 3 // int columnIndex
         2: .line 264
            aload 0 /* this */
            invokevirtual com.google.common.collect.DenseImmutableTable.rowKeySet:()Lcom/google/common/collect/ImmutableSet;
            invokevirtual com.google.common.collect.ImmutableSet.asList:()Lcom/google/common/collect/ImmutableList;
            iload 2 /* rowIndex */
            invokevirtual com.google.common.collect.ImmutableList.get:(I)Ljava/lang/Object;
            astore 4 /* rowKey */
        start local 4 // java.lang.Object rowKey
         3: .line 265
            aload 0 /* this */
            invokevirtual com.google.common.collect.DenseImmutableTable.columnKeySet:()Lcom/google/common/collect/ImmutableSet;
            invokevirtual com.google.common.collect.ImmutableSet.asList:()Lcom/google/common/collect/ImmutableList;
            iload 3 /* columnIndex */
            invokevirtual com.google.common.collect.ImmutableList.get:(I)Ljava/lang/Object;
            astore 5 /* columnKey */
        start local 5 // java.lang.Object columnKey
         4: .line 266
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
            iload 2 /* rowIndex */
            aaload
            iload 3 /* columnIndex */
            aaload
            astore 6 /* value */
        start local 6 // java.lang.Object value
         5: .line 267
            aload 4 /* rowKey */
            aload 5 /* columnKey */
            aload 6 /* value */
            invokestatic com.google.common.collect.DenseImmutableTable.cellOf:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/google/common/collect/Table$Cell;
            areturn
        end local 6 // java.lang.Object value
        end local 5 // java.lang.Object columnKey
        end local 4 // java.lang.Object rowKey
        end local 3 // int columnIndex
        end local 2 // int rowIndex
        end local 1 // int index
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            0    6     1        index  I
            1    6     2     rowIndex  I
            2    6     3  columnIndex  I
            3    6     4       rowKey  TR;
            4    6     5    columnKey  TC;
            5    6     6        value  TV;
    Signature: (I)Lcom/google/common/collect/Table$Cell<TR;TC;TV;>;
    MethodParameters:
       Name  Flags
      index  

  V getValue();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.DenseImmutableTable this
        start local 1 // int index
         0: .line 272
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.values:[[Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellRowIndices:[I
            iload 1 /* index */
            iaload
            aaload
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellColumnIndices:[I
            iload 1 /* index */
            iaload
            aaload
            areturn
        end local 1 // int index
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;
            0    1     1  index  I
    Signature: (I)TV;
    MethodParameters:
       Name  Flags
      index  

  com.google.common.collect.ImmutableTable$SerializedForm createSerializedForm();
    descriptor: ()Lcom/google/common/collect/ImmutableTable$SerializedForm;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.DenseImmutableTable this
         0: .line 277
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellRowIndices:[I
            aload 0 /* this */
            getfield com.google.common.collect.DenseImmutableTable.cellColumnIndices:[I
            invokestatic com.google.common.collect.ImmutableTable$SerializedForm.create:(Lcom/google/common/collect/ImmutableTable;[I[I)Lcom/google/common/collect/ImmutableTable$SerializedForm;
            areturn
        end local 0 // com.google.common.collect.DenseImmutableTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/DenseImmutableTable<TR;TC;TV;>;

  public java.util.Map rowMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.DenseImmutableTable.rowMap:()Lcom/google/common/collect/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Map columnMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.DenseImmutableTable.columnMap:()Lcom/google/common/collect/ImmutableMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <R:Ljava/lang/Object;C:Ljava/lang/Object;V:Ljava/lang/Object;>Lcom/google/common/collect/RegularImmutableTable<TR;TC;TV;>;
SourceFile: "DenseImmutableTable.java"
NestMembers:
  com.google.common.collect.DenseImmutableTable$Column  com.google.common.collect.DenseImmutableTable$ColumnMap  com.google.common.collect.DenseImmutableTable$ImmutableArrayMap  com.google.common.collect.DenseImmutableTable$ImmutableArrayMap$1  com.google.common.collect.DenseImmutableTable$Row  com.google.common.collect.DenseImmutableTable$RowMap
InnerClasses:
  private final Column = com.google.common.collect.DenseImmutableTable$Column of com.google.common.collect.DenseImmutableTable
  private final ColumnMap = com.google.common.collect.DenseImmutableTable$ColumnMap of com.google.common.collect.DenseImmutableTable
  private abstract ImmutableArrayMap = com.google.common.collect.DenseImmutableTable$ImmutableArrayMap of com.google.common.collect.DenseImmutableTable
  private final Row = com.google.common.collect.DenseImmutableTable$Row of com.google.common.collect.DenseImmutableTable
  private final RowMap = com.google.common.collect.DenseImmutableTable$RowMap of com.google.common.collect.DenseImmutableTable
  final SerializedForm = com.google.common.collect.ImmutableTable$SerializedForm of com.google.common.collect.ImmutableTable
  public abstract Cell = com.google.common.collect.Table$Cell of com.google.common.collect.Table
    RuntimeVisibleAnnotations: 
      com.google.errorprone.annotations.Immutable(containerOf = {"R", "C", "V"})
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtCompatible()