public class org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl implements org.eclipse.collections.api.factory.bimap.MutableBiMapFactory
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl
  super_class: java.lang.Object
{
  public static final org.eclipse.collections.api.factory.bimap.MutableBiMapFactory INSTANCE;
    descriptor: Lorg/eclipse/collections/api/factory/bimap/MutableBiMapFactory;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 18
            new org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl
            dup
            invokespecial org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.<init>:()V
            putstatic org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.INSTANCE:Lorg/eclipse/collections/api/factory/bimap/MutableBiMapFactory;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> empty();
    descriptor: ()Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
         0: .line 23
            invokestatic org.eclipse.collections.impl.bimap.mutable.HashBiMap.newMap:()Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>()Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> of();
    descriptor: ()Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
         0: .line 29
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.empty:()Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>()Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> with();
    descriptor: ()Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
         0: .line 35
            aload 0 /* this */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.empty:()Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>()Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> of(K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 41
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key  TK;
            0    1     2  value  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> with(K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 47
            aload 1 /* key */
            aload 2 /* value */
            invokestatic org.eclipse.collections.impl.bimap.mutable.HashBiMap.newWithKeysValues:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key  TK;
            0    1     2  value  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
       Name  Flags
      key    
      value  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> of(K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
         0: .line 53
            aload 0 /* this */
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> with(K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
         0: .line 59
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            invokestatic org.eclipse.collections.impl.bimap.mutable.HashBiMap.newWithKeysValues:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
            areturn
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> of(K, V, K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
        start local 5 // java.lang.Object key3
        start local 6 // java.lang.Object value3
         0: .line 65
            aload 0 /* this */
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            aload 5 /* key3 */
            aload 6 /* value3 */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 6 // java.lang.Object value3
        end local 5 // java.lang.Object key3
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
            0    1     5    key3  TK;
            0    1     6  value3  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> with(K, V, K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=7
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
        start local 5 // java.lang.Object key3
        start local 6 // java.lang.Object value3
         0: .line 71
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            aload 5 /* key3 */
            aload 6 /* value3 */
            invokestatic org.eclipse.collections.impl.bimap.mutable.HashBiMap.newWithKeysValues:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
            areturn
        end local 6 // java.lang.Object value3
        end local 5 // java.lang.Object key3
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
            0    1     5    key3  TK;
            0    1     6  value3  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> of(K, V, K, V, K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=9, args_size=9
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
        start local 5 // java.lang.Object key3
        start local 6 // java.lang.Object value3
        start local 7 // java.lang.Object key4
        start local 8 // java.lang.Object value4
         0: .line 77
            aload 0 /* this */
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            aload 5 /* key3 */
            aload 6 /* value3 */
            aload 7 /* key4 */
            aload 8 /* value4 */
            invokevirtual org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl.with:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
            areturn
        end local 8 // java.lang.Object value4
        end local 7 // java.lang.Object key4
        end local 6 // java.lang.Object value3
        end local 5 // java.lang.Object key3
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
            0    1     5    key3  TK;
            0    1     6  value3  TV;
            0    1     7    key4  TK;
            0    1     8  value4  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  

  public <K, V> org.eclipse.collections.api.bimap.MutableBiMap<K, V> with(K, V, K, V, K, V, K, V);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/api/bimap/MutableBiMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=9
        start local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
        start local 1 // java.lang.Object key1
        start local 2 // java.lang.Object value1
        start local 3 // java.lang.Object key2
        start local 4 // java.lang.Object value2
        start local 5 // java.lang.Object key3
        start local 6 // java.lang.Object value3
        start local 7 // java.lang.Object key4
        start local 8 // java.lang.Object value4
         0: .line 83
            aload 1 /* key1 */
            aload 2 /* value1 */
            aload 3 /* key2 */
            aload 4 /* value2 */
            aload 5 /* key3 */
            aload 6 /* value3 */
            aload 7 /* key4 */
            aload 8 /* value4 */
            invokestatic org.eclipse.collections.impl.bimap.mutable.HashBiMap.newWithKeysValues:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lorg/eclipse/collections/impl/bimap/mutable/HashBiMap;
            areturn
        end local 8 // java.lang.Object value4
        end local 7 // java.lang.Object key4
        end local 6 // java.lang.Object value3
        end local 5 // java.lang.Object key3
        end local 4 // java.lang.Object value2
        end local 3 // java.lang.Object key2
        end local 2 // java.lang.Object value1
        end local 1 // java.lang.Object key1
        end local 0 // org.eclipse.collections.impl.bimap.mutable.MutableBiMapFactoryImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/collections/impl/bimap/mutable/MutableBiMapFactoryImpl;
            0    1     1    key1  TK;
            0    1     2  value1  TV;
            0    1     3    key2  TK;
            0    1     4  value2  TV;
            0    1     5    key3  TK;
            0    1     6  value3  TV;
            0    1     7    key4  TK;
            0    1     8  value4  TV;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(TK;TV;TK;TV;TK;TV;TK;TV;)Lorg/eclipse/collections/api/bimap/MutableBiMap<TK;TV;>;
    MethodParameters:
        Name  Flags
      key1    
      value1  
      key2    
      value2  
      key3    
      value3  
      key4    
      value4  
}
SourceFile: "MutableBiMapFactoryImpl.java"