public class org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl implements org.eclipse.collections.api.tuple.primitive.ByteDoublePair
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final byte one;
    descriptor: B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final double two;
    descriptor: D
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(byte, double);
    descriptor: (BD)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
        start local 1 // byte newOne
        start local 2 // double newTwo
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            iload 1 /* newOne */
            putfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
         2: .line 28
            aload 0 /* this */
            dload 2 /* newTwo */
            putfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
         3: .line 29
            return
        end local 2 // double newTwo
        end local 1 // byte newOne
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;
            0    4     1  newOne  B
            0    4     2  newTwo  D
    MethodParameters:
        Name  Flags
      newOne  
      newTwo  

  public byte getOne();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
         0: .line 34
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
            ireturn
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;

  public double getTwo();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            dreturn
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
        start local 1 // java.lang.Object o
         0: .line 46
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 48
            iconst_1
            ireturn
         2: .line 50
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof org.eclipse.collections.api.tuple.primitive.ByteDoublePair
            ifne 4
         3: .line 52
            iconst_0
            ireturn
         4: .line 55
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.eclipse.collections.api.tuple.primitive.ByteDoublePair
            astore 2 /* that */
        start local 2 // org.eclipse.collections.api.tuple.primitive.ByteDoublePair that
         5: .line 57
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
            aload 2 /* that */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ByteDoublePair.getOne:()B
            if_icmpne 8
         6: .line 58
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            aload 2 /* that */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ByteDoublePair.getTwo:()D
            invokestatic java.lang.Double.compare:(DD)I
            ifne 8
         7: .line 57
            iconst_1
            ireturn
      StackMap locals: org.eclipse.collections.api.tuple.primitive.ByteDoublePair
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // org.eclipse.collections.api.tuple.primitive.ByteDoublePair that
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;
            0    9     1     o  Ljava/lang/Object;
            5    9     2  that  Lorg/eclipse/collections/api/tuple/primitive/ByteDoublePair;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
         0: .line 64
            bipush 29
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
            imul
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            bipush 32
            lushr
            lxor
            l2i
            iadd
            ireturn
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
         0: .line 70
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ":"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;

  public int compareTo(org.eclipse.collections.api.tuple.primitive.ByteDoublePair);
    descriptor: (Lorg/eclipse/collections/api/tuple/primitive/ByteDoublePair;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
        start local 1 // org.eclipse.collections.api.tuple.primitive.ByteDoublePair that
         0: .line 76
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.one:B
            aload 1 /* that */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ByteDoublePair.getOne:()B
            isub
            istore 2 /* i */
        start local 2 // int i
         1: .line 77
            iload 2 /* i */
            ifeq 3
         2: .line 79
            iload 2 /* i */
            ireturn
         3: .line 81
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.two:D
            aload 1 /* that */
            invokeinterface org.eclipse.collections.api.tuple.primitive.ByteDoublePair.getTwo:()D
            invokestatic java.lang.Double.compare:(DD)I
            ireturn
        end local 2 // int i
        end local 1 // org.eclipse.collections.api.tuple.primitive.ByteDoublePair that
        end local 0 // org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/collections/impl/tuple/primitive/ByteDoublePairImpl;
            0    4     1  that  Lorg/eclipse/collections/api/tuple/primitive/ByteDoublePair;
            1    4     2     i  I
    MethodParameters:
      Name  Flags
      that  

  public int compareTo(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.eclipse.collections.api.tuple.primitive.ByteDoublePair
            invokevirtual org.eclipse.collections.impl.tuple.primitive.ByteDoublePairImpl.compareTo:(Lorg/eclipse/collections/api/tuple/primitive/ByteDoublePair;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "ByteDoublePairImpl.java"