public abstract class org.joda.time.base.AbstractInterval implements org.joda.time.ReadableInterval
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.joda.time.base.AbstractInterval
  super_class: java.lang.Object
{
  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            return
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/joda/time/base/AbstractInterval;

  protected void checkInterval(long, long);
    descriptor: (JJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // long start
        start local 3 // long end
         0: .line 62
            lload 3 /* end */
            lload 1 /* start */
            lcmp
            ifge 2
         1: .line 63
            new java.lang.IllegalArgumentException
            dup
            ldc "The end instant must be greater than the start instant"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 3 // long end
        end local 1 // long start
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/joda/time/base/AbstractInterval;
            0    3     1  start  J
            0    3     3    end  J
    MethodParameters:
       Name  Flags
      start  
      end    

  public org.joda.time.DateTime getStart();
    descriptor: ()Lorg/joda/time/DateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 74
            new org.joda.time.DateTime
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.DateTime.<init>:(JLorg/joda/time/Chronology;)V
            areturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public org.joda.time.DateTime getEnd();
    descriptor: ()Lorg/joda/time/DateTime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 83
            new org.joda.time.DateTime
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.DateTime.<init>:(JLorg/joda/time/Chronology;)V
            areturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public boolean contains(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // long millisInstant
         0: .line 98
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lstore 3 /* thisStart */
        start local 3 // long thisStart
         1: .line 99
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            lstore 5 /* thisEnd */
        start local 5 // long thisEnd
         2: .line 100
            lload 1 /* millisInstant */
            lload 3 /* thisStart */
            lcmp
            iflt 3
            lload 1 /* millisInstant */
            lload 5 /* thisEnd */
            lcmp
            ifge 3
            iconst_1
            ireturn
      StackMap locals: long long
      StackMap stack:
         3: iconst_0
            ireturn
        end local 5 // long thisEnd
        end local 3 // long thisStart
        end local 1 // long millisInstant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/joda/time/base/AbstractInterval;
            0    4     1  millisInstant  J
            1    4     3      thisStart  J
            2    4     5        thisEnd  J
    MethodParameters:
               Name  Flags
      millisInstant  

  public boolean containsNow();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 112
            aload 0 /* this */
            invokestatic org.joda.time.DateTimeUtils.currentTimeMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.contains:(J)Z
            ireturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public boolean contains(org.joda.time.ReadableInstant);
    descriptor: (Lorg/joda/time/ReadableInstant;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInstant instant
         0: .line 138
            aload 1 /* instant */
            ifnonnull 2
         1: .line 139
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.containsNow:()Z
            ireturn
         2: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* instant */
            invokeinterface org.joda.time.ReadableInstant.getMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.contains:(J)Z
            ireturn
        end local 1 // org.joda.time.ReadableInstant instant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/joda/time/base/AbstractInterval;
            0    3     1  instant  Lorg/joda/time/ReadableInstant;
    MethodParameters:
         Name  Flags
      instant  

  public boolean contains(org.joda.time.ReadableInterval);
    descriptor: (Lorg/joda/time/ReadableInterval;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInterval interval
         0: .line 179
            aload 1 /* interval */
            ifnonnull 2
         1: .line 180
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.containsNow:()Z
            ireturn
         2: .line 182
      StackMap locals:
      StackMap stack:
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            lstore 2 /* otherStart */
        start local 2 // long otherStart
         3: .line 183
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lstore 4 /* otherEnd */
        start local 4 // long otherEnd
         4: .line 184
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lstore 6 /* thisStart */
        start local 6 // long thisStart
         5: .line 185
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            lstore 8 /* thisEnd */
        start local 8 // long thisEnd
         6: .line 186
            lload 6 /* thisStart */
            lload 2 /* otherStart */
            lcmp
            ifgt 7
            lload 2 /* otherStart */
            lload 8 /* thisEnd */
            lcmp
            ifge 7
            lload 4 /* otherEnd */
            lload 8 /* thisEnd */
            lcmp
            ifgt 7
            iconst_1
            ireturn
      StackMap locals: org.joda.time.base.AbstractInterval org.joda.time.ReadableInterval long long long long
      StackMap stack:
         7: iconst_0
            ireturn
        end local 8 // long thisEnd
        end local 6 // long thisStart
        end local 4 // long otherEnd
        end local 2 // long otherStart
        end local 1 // org.joda.time.ReadableInterval interval
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/joda/time/base/AbstractInterval;
            0    8     1    interval  Lorg/joda/time/ReadableInterval;
            3    8     2  otherStart  J
            4    8     4    otherEnd  J
            5    8     6   thisStart  J
            6    8     8     thisEnd  J
    MethodParameters:
          Name  Flags
      interval  

  public boolean overlaps(org.joda.time.ReadableInterval);
    descriptor: (Lorg/joda/time/ReadableInterval;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInterval interval
         0: .line 231
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lstore 2 /* thisStart */
        start local 2 // long thisStart
         1: .line 232
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            lstore 4 /* thisEnd */
        start local 4 // long thisEnd
         2: .line 233
            aload 1 /* interval */
            ifnonnull 6
         3: .line 234
            invokestatic org.joda.time.DateTimeUtils.currentTimeMillis:()J
            lstore 6 /* now */
        start local 6 // long now
         4: .line 235
            lload 2 /* thisStart */
            lload 6 /* now */
            lcmp
            ifge 5
            lload 6 /* now */
            lload 4 /* thisEnd */
            lcmp
            ifge 5
            iconst_1
            ireturn
      StackMap locals: long long long
      StackMap stack:
         5: iconst_0
            ireturn
        end local 6 // long now
         6: .line 237
      StackMap locals:
      StackMap stack:
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            lstore 6 /* otherStart */
        start local 6 // long otherStart
         7: .line 238
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lstore 8 /* otherEnd */
        start local 8 // long otherEnd
         8: .line 239
            lload 2 /* thisStart */
            lload 8 /* otherEnd */
            lcmp
            ifge 9
            lload 6 /* otherStart */
            lload 4 /* thisEnd */
            lcmp
            ifge 9
            iconst_1
            ireturn
      StackMap locals: long long
      StackMap stack:
         9: iconst_0
            ireturn
        end local 8 // long otherEnd
        end local 6 // long otherStart
        end local 4 // long thisEnd
        end local 2 // long thisStart
        end local 1 // org.joda.time.ReadableInterval interval
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/joda/time/base/AbstractInterval;
            0   10     1    interval  Lorg/joda/time/ReadableInterval;
            1   10     2   thisStart  J
            2   10     4     thisEnd  J
            4    6     6         now  J
            7   10     6  otherStart  J
            8   10     8    otherEnd  J
    MethodParameters:
          Name  Flags
      interval  

  public boolean isEqual(org.joda.time.ReadableInterval);
    descriptor: (Lorg/joda/time/ReadableInterval;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInterval other
         0: .line 254
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 1 /* other */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            lcmp
            ifne 3
         1: .line 255
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 1 /* other */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lcmp
            ifne 3
         2: .line 254
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // org.joda.time.ReadableInterval other
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/joda/time/base/AbstractInterval;
            0    4     1  other  Lorg/joda/time/ReadableInterval;
    MethodParameters:
       Name  Flags
      other  

  public boolean isBefore(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // long millisInstant
         0: .line 268
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            lload 1 /* millisInstant */
            lcmp
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long millisInstant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/joda/time/base/AbstractInterval;
            0    2     1  millisInstant  J
    MethodParameters:
               Name  Flags
      millisInstant  

  public boolean isBeforeNow();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 279
            aload 0 /* this */
            invokestatic org.joda.time.DateTimeUtils.currentTimeMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.isBefore:(J)Z
            ireturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public boolean isBefore(org.joda.time.ReadableInstant);
    descriptor: (Lorg/joda/time/ReadableInstant;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInstant instant
         0: .line 291
            aload 1 /* instant */
            ifnonnull 2
         1: .line 292
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.isBeforeNow:()Z
            ireturn
         2: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* instant */
            invokeinterface org.joda.time.ReadableInstant.getMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.isBefore:(J)Z
            ireturn
        end local 1 // org.joda.time.ReadableInstant instant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/joda/time/base/AbstractInterval;
            0    3     1  instant  Lorg/joda/time/ReadableInstant;
    MethodParameters:
         Name  Flags
      instant  

  public boolean isBefore(org.joda.time.ReadableInterval);
    descriptor: (Lorg/joda/time/ReadableInterval;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInterval interval
         0: .line 306
            aload 1 /* interval */
            ifnonnull 2
         1: .line 307
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.isBeforeNow:()Z
            ireturn
         2: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.isBefore:(J)Z
            ireturn
        end local 1 // org.joda.time.ReadableInterval interval
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/joda/time/base/AbstractInterval;
            0    3     1  interval  Lorg/joda/time/ReadableInterval;
    MethodParameters:
          Name  Flags
      interval  

  public boolean isAfter(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // long millisInstant
         0: .line 323
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lload 1 /* millisInstant */
            lcmp
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long millisInstant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/joda/time/base/AbstractInterval;
            0    2     1  millisInstant  J
    MethodParameters:
               Name  Flags
      millisInstant  

  public boolean isAfterNow();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 334
            aload 0 /* this */
            invokestatic org.joda.time.DateTimeUtils.currentTimeMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.isAfter:(J)Z
            ireturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public boolean isAfter(org.joda.time.ReadableInstant);
    descriptor: (Lorg/joda/time/ReadableInstant;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInstant instant
         0: .line 346
            aload 1 /* instant */
            ifnonnull 2
         1: .line 347
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.isAfterNow:()Z
            ireturn
         2: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* instant */
            invokeinterface org.joda.time.ReadableInstant.getMillis:()J
            invokevirtual org.joda.time.base.AbstractInterval.isAfter:(J)Z
            ireturn
        end local 1 // org.joda.time.ReadableInstant instant
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/joda/time/base/AbstractInterval;
            0    3     1  instant  Lorg/joda/time/ReadableInstant;
    MethodParameters:
         Name  Flags
      instant  

  public boolean isAfter(org.joda.time.ReadableInterval);
    descriptor: (Lorg/joda/time/ReadableInterval;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.ReadableInterval interval
         0: .line 363
            aload 1 /* interval */
            ifnonnull 3
         1: .line 364
            invokestatic org.joda.time.DateTimeUtils.currentTimeMillis:()J
            lstore 2 /* endMillis */
        start local 2 // long endMillis
         2: .line 365
            goto 4
        end local 2 // long endMillis
         3: .line 366
      StackMap locals:
      StackMap stack:
            aload 1 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lstore 2 /* endMillis */
        start local 2 // long endMillis
         4: .line 368
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lload 2 /* endMillis */
            lcmp
            iflt 5
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_0
            ireturn
        end local 2 // long endMillis
        end local 1 // org.joda.time.ReadableInterval interval
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/joda/time/base/AbstractInterval;
            0    6     1   interval  Lorg/joda/time/ReadableInterval;
            2    3     2  endMillis  J
            4    6     2  endMillis  J
    MethodParameters:
          Name  Flags
      interval  

  public org.joda.time.Interval toInterval();
    descriptor: ()Lorg/joda/time/Interval;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 378
            new org.joda.time.Interval
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.Interval.<init>:(JJLorg/joda/time/Chronology;)V
            areturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public org.joda.time.MutableInterval toMutableInterval();
    descriptor: ()Lorg/joda/time/MutableInterval;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 389
            new org.joda.time.MutableInterval
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.MutableInterval.<init>:(JJLorg/joda/time/Chronology;)V
            areturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public long toDurationMillis();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 402
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            invokestatic org.joda.time.field.FieldUtils.safeSubtract:(JJ)J
            lreturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public org.joda.time.Duration toDuration();
    descriptor: ()Lorg/joda/time/Duration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 414
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.toDurationMillis:()J
            lstore 1 /* durMillis */
        start local 1 // long durMillis
         1: .line 415
            lload 1 /* durMillis */
            lconst_0
            lcmp
            ifne 3
         2: .line 416
            getstatic org.joda.time.Duration.ZERO:Lorg/joda/time/Duration;
            areturn
         3: .line 418
      StackMap locals: long
      StackMap stack:
            new org.joda.time.Duration
            dup
            lload 1 /* durMillis */
            invokespecial org.joda.time.Duration.<init>:(J)V
            areturn
        end local 1 // long durMillis
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/joda/time/base/AbstractInterval;
            1    4     1  durMillis  J

  public org.joda.time.Period toPeriod();
    descriptor: ()Lorg/joda/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 433
            new org.joda.time.Period
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.Period.<init>:(JJLorg/joda/time/Chronology;)V
            areturn
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;

  public org.joda.time.Period toPeriod(org.joda.time.PeriodType);
    descriptor: (Lorg/joda/time/PeriodType;)Lorg/joda/time/Period;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // org.joda.time.base.AbstractInterval this
        start local 1 // org.joda.time.PeriodType type
         0: .line 447
            new org.joda.time.Period
            dup
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 1 /* type */
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokespecial org.joda.time.Period.<init>:(JJLorg/joda/time/PeriodType;Lorg/joda/time/Chronology;)V
            areturn
        end local 1 // org.joda.time.PeriodType type
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/base/AbstractInterval;
            0    1     1  type  Lorg/joda/time/PeriodType;
    MethodParameters:
      Name  Flags
      type  

  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.joda.time.base.AbstractInterval this
        start local 1 // java.lang.Object readableInterval
         0: .line 464
            aload 0 /* this */
            aload 1 /* readableInterval */
            if_acmpne 2
         1: .line 465
            iconst_1
            ireturn
         2: .line 467
      StackMap locals:
      StackMap stack:
            aload 1 /* readableInterval */
            instanceof org.joda.time.ReadableInterval
            ifne 4
         3: .line 468
            iconst_0
            ireturn
         4: .line 470
      StackMap locals:
      StackMap stack:
            aload 1 /* readableInterval */
            checkcast org.joda.time.ReadableInterval
            astore 2 /* other */
        start local 2 // org.joda.time.ReadableInterval other
         5: .line 472
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            aload 2 /* other */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            lcmp
            ifne 9
         6: .line 473
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            aload 2 /* other */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lcmp
            ifne 9
         7: .line 474
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            aload 2 /* other */
            invokeinterface org.joda.time.ReadableInterval.getChronology:()Lorg/joda/time/Chronology;
            invokestatic org.joda.time.field.FieldUtils.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         8: .line 471
            iconst_1
            ireturn
      StackMap locals: org.joda.time.ReadableInterval
      StackMap stack:
         9: iconst_0
            ireturn
        end local 2 // org.joda.time.ReadableInterval other
        end local 1 // java.lang.Object readableInterval
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0              this  Lorg/joda/time/base/AbstractInterval;
            0   10     1  readableInterval  Ljava/lang/Object;
            5   10     2             other  Lorg/joda/time/ReadableInterval;
    MethodParameters:
                  Name  Flags
      readableInterval  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 483
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            lstore 1 /* start */
        start local 1 // long start
         1: .line 484
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            lstore 3 /* end */
        start local 3 // long end
         2: .line 485
            bipush 97
            istore 5 /* result */
        start local 5 // int result
         3: .line 486
            bipush 31
            iload 5 /* result */
            imul
            lload 1 /* start */
            lload 1 /* start */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 5 /* result */
         4: .line 487
            bipush 31
            iload 5 /* result */
            imul
            lload 3 /* end */
            lload 3 /* end */
            bipush 32
            lushr
            lxor
            l2i
            iadd
            istore 5 /* result */
         5: .line 488
            bipush 31
            iload 5 /* result */
            imul
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 5 /* result */
         6: .line 489
            iload 5 /* result */
            ireturn
        end local 5 // int result
        end local 3 // long end
        end local 1 // long start
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/joda/time/base/AbstractInterval;
            1    7     1   start  J
            2    7     3     end  J
            3    7     5  result  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.joda.time.base.AbstractInterval this
         0: .line 500
            invokestatic org.joda.time.format.ISODateTimeFormat.dateTime:()Lorg/joda/time/format/DateTimeFormatter;
            astore 1 /* printer */
        start local 1 // org.joda.time.format.DateTimeFormatter printer
         1: .line 501
            aload 1 /* printer */
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getChronology:()Lorg/joda/time/Chronology;
            invokevirtual org.joda.time.format.DateTimeFormatter.withChronology:(Lorg/joda/time/Chronology;)Lorg/joda/time/format/DateTimeFormatter;
            astore 1 /* printer */
         2: .line 502
            new java.lang.StringBuffer
            dup
            bipush 48
            invokespecial java.lang.StringBuffer.<init>:(I)V
            astore 2 /* buf */
        start local 2 // java.lang.StringBuffer buf
         3: .line 503
            aload 1 /* printer */
            aload 2 /* buf */
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getStartMillis:()J
            invokevirtual org.joda.time.format.DateTimeFormatter.printTo:(Ljava/lang/StringBuffer;J)V
         4: .line 504
            aload 2 /* buf */
            bipush 47
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         5: .line 505
            aload 1 /* printer */
            aload 2 /* buf */
            aload 0 /* this */
            invokevirtual org.joda.time.base.AbstractInterval.getEndMillis:()J
            invokevirtual org.joda.time.format.DateTimeFormatter.printTo:(Ljava/lang/StringBuffer;J)V
         6: .line 506
            aload 2 /* buf */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuffer buf
        end local 1 // org.joda.time.format.DateTimeFormatter printer
        end local 0 // org.joda.time.base.AbstractInterval this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/joda/time/base/AbstractInterval;
            1    7     1  printer  Lorg/joda/time/format/DateTimeFormatter;
            3    7     2      buf  Ljava/lang/StringBuffer;
}
SourceFile: "AbstractInterval.java"