public final class org.bson.types.BSONTimestamp implements java.lang.Comparable<org.bson.types.BSONTimestamp>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.bson.types.BSONTimestamp
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -3268482672267936464

  private final int inc;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Date time;
    descriptor: Ljava/util/Date;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bson.types.BSONTimestamp this
         0: .line 38
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            iconst_0
            putfield org.bson.types.BSONTimestamp.inc:I
         2: .line 40
            aload 0 /* this */
            aconst_null
            putfield org.bson.types.BSONTimestamp.time:Ljava/util/Date;
         3: .line 41
            return
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bson/types/BSONTimestamp;

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // org.bson.types.BSONTimestamp this
        start local 1 // int time
        start local 2 // int increment
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            new java.util.Date
            dup
            iload 1 /* time */
            i2l
            ldc 1000
            lmul
            invokespecial java.util.Date.<init>:(J)V
            putfield org.bson.types.BSONTimestamp.time:Ljava/util/Date;
         2: .line 52
            aload 0 /* this */
            iload 2 /* increment */
            putfield org.bson.types.BSONTimestamp.inc:I
         3: .line 53
            return
        end local 2 // int increment
        end local 1 // int time
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/bson/types/BSONTimestamp;
            0    4     1       time  I
            0    4     2  increment  I
    MethodParameters:
           Name  Flags
      time       final
      increment  final

  public int getTime();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.bson.types.BSONTimestamp this
         0: .line 61
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.time:Ljava/util/Date;
            ifnonnull 2
         1: .line 62
            iconst_0
            ireturn
         2: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.time:Ljava/util/Date;
            invokevirtual java.util.Date.getTime:()J
            ldc 1000
            ldiv
            l2i
            ireturn
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/types/BSONTimestamp;

  public int getInc();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bson.types.BSONTimestamp this
         0: .line 73
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.inc:I
            ireturn
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/BSONTimestamp;

  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.bson.types.BSONTimestamp this
         0: .line 78
            new java.lang.StringBuilder
            dup
            ldc "TS time:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.time:Ljava/util/Date;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " inc:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.inc:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bson/types/BSONTimestamp;

  public int compareTo(org.bson.types.BSONTimestamp);
    descriptor: (Lorg/bson/types/BSONTimestamp;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bson.types.BSONTimestamp this
        start local 1 // org.bson.types.BSONTimestamp ts
         0: .line 83
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            aload 1 /* ts */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            if_icmpeq 2
         1: .line 84
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            aload 1 /* ts */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            isub
            ireturn
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getInc:()I
            aload 1 /* ts */
            invokevirtual org.bson.types.BSONTimestamp.getInc:()I
            isub
            ireturn
        end local 1 // org.bson.types.BSONTimestamp ts
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bson/types/BSONTimestamp;
            0    3     1    ts  Lorg/bson/types/BSONTimestamp;
    MethodParameters:
      Name  Flags
      ts    final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.bson.types.BSONTimestamp this
         0: .line 92
            bipush 31
            istore 1 /* prime */
        start local 1 // int prime
         1: .line 93
            iconst_1
            istore 2 /* result */
        start local 2 // int result
         2: .line 94
            iload 1 /* prime */
            iload 2 /* result */
            imul
            aload 0 /* this */
            getfield org.bson.types.BSONTimestamp.inc:I
            iadd
            istore 2 /* result */
         3: .line 95
            iload 1 /* prime */
            iload 2 /* result */
            imul
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            iadd
            istore 2 /* result */
         4: .line 96
            iload 2 /* result */
            ireturn
        end local 2 // int result
        end local 1 // int prime
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/bson/types/BSONTimestamp;
            1    5     1   prime  I
            2    5     2  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bson.types.BSONTimestamp this
        start local 1 // java.lang.Object obj
         0: .line 101
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 102
            iconst_1
            ireturn
         2: .line 104
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.bson.types.BSONTimestamp
            ifeq 6
         3: .line 105
            aload 1 /* obj */
            checkcast org.bson.types.BSONTimestamp
            astore 2 /* t2 */
        start local 2 // org.bson.types.BSONTimestamp t2
         4: .line 106
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            aload 2 /* t2 */
            invokevirtual org.bson.types.BSONTimestamp.getTime:()I
            if_icmpne 5
            aload 0 /* this */
            invokevirtual org.bson.types.BSONTimestamp.getInc:()I
            aload 2 /* t2 */
            invokevirtual org.bson.types.BSONTimestamp.getInc:()I
            if_icmpne 5
            iconst_1
            ireturn
      StackMap locals: org.bson.types.BSONTimestamp
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // org.bson.types.BSONTimestamp t2
         6: .line 108
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.bson.types.BSONTimestamp this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bson/types/BSONTimestamp;
            0    7     1   obj  Ljava/lang/Object;
            4    6     2    t2  Lorg/bson/types/BSONTimestamp;
    MethodParameters:
      Name  Flags
      obj   final

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