public final class org.postgresql.replication.LogSequenceNumber implements java.lang.Comparable<org.postgresql.replication.LogSequenceNumber>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.postgresql.replication.LogSequenceNumber
  super_class: java.lang.Object
{
  public static final org.postgresql.replication.LogSequenceNumber INVALID_LSN;
    descriptor: Lorg/postgresql/replication/LogSequenceNumber;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final long value;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 18
            lconst_0
            invokestatic org.postgresql.replication.LogSequenceNumber.valueOf:(J)Lorg/postgresql/replication/LogSequenceNumber;
            putstatic org.postgresql.replication.LogSequenceNumber.INVALID_LSN:Lorg/postgresql/replication/LogSequenceNumber;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.postgresql.replication.LogSequenceNumber this
        start local 1 // long value
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            lload 1 /* value */
            putfield org.postgresql.replication.LogSequenceNumber.value:J
         2: .line 24
            return
        end local 1 // long value
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/postgresql/replication/LogSequenceNumber;
            0    3     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static org.postgresql.replication.LogSequenceNumber valueOf(long);
    descriptor: (J)Lorg/postgresql/replication/LogSequenceNumber;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long value
         0: .line 31
            new org.postgresql.replication.LogSequenceNumber
            dup
            lload 0 /* value */
            invokespecial org.postgresql.replication.LogSequenceNumber.<init>:(J)V
            areturn
        end local 0 // long value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  J
    MethodParameters:
       Name  Flags
      value  

  public static org.postgresql.replication.LogSequenceNumber valueOf(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/postgresql/replication/LogSequenceNumber;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=9, args_size=1
        start local 0 // java.lang.String strValue
         0: .line 43
            aload 0 /* strValue */
            bipush 47
            invokevirtual java.lang.String.lastIndexOf:(I)I
            istore 1 /* slashIndex */
        start local 1 // int slashIndex
         1: .line 45
            iload 1 /* slashIndex */
            ifgt 3
         2: .line 46
            getstatic org.postgresql.replication.LogSequenceNumber.INVALID_LSN:Lorg/postgresql/replication/LogSequenceNumber;
            areturn
         3: .line 49
      StackMap locals: int
      StackMap stack:
            aload 0 /* strValue */
            iconst_0
            iload 1 /* slashIndex */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 2 /* logicalXLogStr */
        start local 2 // java.lang.String logicalXLogStr
         4: .line 50
            aload 2 /* logicalXLogStr */
            bipush 16
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;I)J
            l2i
            istore 3 /* logicalXlog */
        start local 3 // int logicalXlog
         5: .line 51
            aload 0 /* strValue */
            iload 1 /* slashIndex */
            iconst_1
            iadd
            aload 0 /* strValue */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 4 /* segmentStr */
        start local 4 // java.lang.String segmentStr
         6: .line 52
            aload 4 /* segmentStr */
            bipush 16
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;I)J
            l2i
            istore 5 /* segment */
        start local 5 // int segment
         7: .line 54
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 6 /* buf */
        start local 6 // java.nio.ByteBuffer buf
         8: .line 55
            aload 6 /* buf */
            iload 3 /* logicalXlog */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            pop
         9: .line 56
            aload 6 /* buf */
            iload 5 /* segment */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            pop
        10: .line 57
            aload 6 /* buf */
            iconst_0
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        11: .line 58
            aload 6 /* buf */
            invokevirtual java.nio.ByteBuffer.getLong:()J
            lstore 7 /* value */
        start local 7 // long value
        12: .line 60
            lload 7 /* value */
            invokestatic org.postgresql.replication.LogSequenceNumber.valueOf:(J)Lorg/postgresql/replication/LogSequenceNumber;
            areturn
        end local 7 // long value
        end local 6 // java.nio.ByteBuffer buf
        end local 5 // int segment
        end local 4 // java.lang.String segmentStr
        end local 3 // int logicalXlog
        end local 2 // java.lang.String logicalXLogStr
        end local 1 // int slashIndex
        end local 0 // java.lang.String strValue
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0        strValue  Ljava/lang/String;
            1   13     1      slashIndex  I
            4   13     2  logicalXLogStr  Ljava/lang/String;
            5   13     3     logicalXlog  I
            6   13     4      segmentStr  Ljava/lang/String;
            7   13     5         segment  I
            8   13     6             buf  Ljava/nio/ByteBuffer;
           12   13     7           value  J
    MethodParameters:
          Name  Flags
      strValue  

  public long asLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.postgresql.replication.LogSequenceNumber this
         0: .line 67
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            lreturn
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/replication/LogSequenceNumber;

  public java.lang.String asString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.postgresql.replication.LogSequenceNumber this
         0: .line 75
            bipush 8
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 1 /* buf */
        start local 1 // java.nio.ByteBuffer buf
         1: .line 76
            aload 1 /* buf */
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            invokevirtual java.nio.ByteBuffer.putLong:(J)Ljava/nio/ByteBuffer;
            pop
         2: .line 77
            aload 1 /* buf */
            iconst_0
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 79
            aload 1 /* buf */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 2 /* logicalXlog */
        start local 2 // int logicalXlog
         4: .line 80
            aload 1 /* buf */
            invokevirtual java.nio.ByteBuffer.getInt:()I
            istore 3 /* segment */
        start local 3 // int segment
         5: .line 81
            ldc "%X/%X"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 2 /* logicalXlog */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 3 /* segment */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 3 // int segment
        end local 2 // int logicalXlog
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/postgresql/replication/LogSequenceNumber;
            1    6     1          buf  Ljava/nio/ByteBuffer;
            4    6     2  logicalXlog  I
            5    6     3      segment  I

  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.postgresql.replication.LogSequenceNumber this
        start local 1 // java.lang.Object o
         0: .line 86
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 87
            iconst_1
            ireturn
         2: .line 89
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* o */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 90
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.postgresql.replication.LogSequenceNumber
            astore 2 /* that */
        start local 2 // org.postgresql.replication.LogSequenceNumber that
         5: .line 95
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            aload 2 /* that */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            lcmp
            ifne 6
            iconst_1
            ireturn
      StackMap locals: org.postgresql.replication.LogSequenceNumber
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // org.postgresql.replication.LogSequenceNumber that
        end local 1 // java.lang.Object o
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/postgresql/replication/LogSequenceNumber;
            0    7     1     o  Ljava/lang/Object;
            5    7     2  that  Lorg/postgresql/replication/LogSequenceNumber;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.postgresql.replication.LogSequenceNumber this
         0: .line 101
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            bipush 32
            lushr
            lxor
            l2i
            ireturn
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/replication/LogSequenceNumber;

  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.postgresql.replication.LogSequenceNumber this
         0: .line 106
            new java.lang.StringBuilder
            dup
            ldc "LSN{"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.postgresql.replication.LogSequenceNumber.asString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/postgresql/replication/LogSequenceNumber;

  public int compareTo(org.postgresql.replication.LogSequenceNumber);
    descriptor: (Lorg/postgresql/replication/LogSequenceNumber;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.postgresql.replication.LogSequenceNumber this
        start local 1 // org.postgresql.replication.LogSequenceNumber o
         0: .line 111
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            aload 1 /* o */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            lcmp
            ifne 2
         1: .line 112
            iconst_0
            ireturn
         2: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            ldc -9223372036854775808
            ladd
            aload 1 /* o */
            getfield org.postgresql.replication.LogSequenceNumber.value:J
            ldc -9223372036854775808
            ladd
            lcmp
            ifge 3
            iconst_m1
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: ireturn
        end local 1 // org.postgresql.replication.LogSequenceNumber o
        end local 0 // org.postgresql.replication.LogSequenceNumber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/postgresql/replication/LogSequenceNumber;
            0    5     1     o  Lorg/postgresql/replication/LogSequenceNumber;
    MethodParameters:
      Name  Flags
      o     

  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.postgresql.replication.LogSequenceNumber
            invokevirtual org.postgresql.replication.LogSequenceNumber.compareTo:(Lorg/postgresql/replication/LogSequenceNumber;)I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/lang/Comparable<Lorg/postgresql/replication/LogSequenceNumber;>;
SourceFile: "LogSequenceNumber.java"