class org.joda.time.convert.ReadableIntervalConverter extends org.joda.time.convert.AbstractConverter implements org.joda.time.convert.IntervalConverter, org.joda.time.convert.DurationConverter, org.joda.time.convert.PeriodConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.joda.time.convert.ReadableIntervalConverter
  super_class: org.joda.time.convert.AbstractConverter
{
  static final org.joda.time.convert.ReadableIntervalConverter INSTANCE;
    descriptor: Lorg/joda/time/convert/ReadableIntervalConverter;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 36
            new org.joda.time.convert.ReadableIntervalConverter
            dup
            invokespecial org.joda.time.convert.ReadableIntervalConverter.<init>:()V
            putstatic org.joda.time.convert.ReadableIntervalConverter.INSTANCE:Lorg/joda/time/convert/ReadableIntervalConverter;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
         0: .line 42
            aload 0 /* this */
            invokespecial org.joda.time.convert.AbstractConverter.<init>:()V
         1: .line 43
            return
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/joda/time/convert/ReadableIntervalConverter;

  public long getDurationMillis(java.lang.Object);
    descriptor: (Ljava/lang/Object;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
        start local 1 // java.lang.Object object
         0: .line 52
            aload 1 /* object */
            checkcast org.joda.time.ReadableInterval
            invokeinterface org.joda.time.ReadableInterval.toDurationMillis:()J
            lreturn
        end local 1 // java.lang.Object object
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/joda/time/convert/ReadableIntervalConverter;
            0    1     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  

  public void setInto(org.joda.time.ReadWritablePeriod, java.lang.Object, org.joda.time.Chronology);
    descriptor: (Lorg/joda/time/ReadWritablePeriod;Ljava/lang/Object;Lorg/joda/time/Chronology;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=4
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
        start local 1 // org.joda.time.ReadWritablePeriod writablePeriod
        start local 2 // java.lang.Object object
        start local 3 // org.joda.time.Chronology chrono
         0: .line 64
            aload 2 /* object */
            checkcast org.joda.time.ReadableInterval
            astore 4 /* interval */
        start local 4 // org.joda.time.ReadableInterval interval
         1: .line 65
            aload 3 /* chrono */
            ifnull 2
            aload 3 /* chrono */
            goto 3
      StackMap locals: org.joda.time.ReadableInterval
      StackMap stack:
         2: aload 4 /* interval */
            invokestatic org.joda.time.DateTimeUtils.getIntervalChronology:(Lorg/joda/time/ReadableInterval;)Lorg/joda/time/Chronology;
      StackMap locals:
      StackMap stack: org.joda.time.Chronology
         3: astore 3 /* chrono */
         4: .line 66
            aload 4 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getStartMillis:()J
            lstore 5 /* start */
        start local 5 // long start
         5: .line 67
            aload 4 /* interval */
            invokeinterface org.joda.time.ReadableInterval.getEndMillis:()J
            lstore 7 /* end */
        start local 7 // long end
         6: .line 68
            aload 3 /* chrono */
            aload 1 /* writablePeriod */
            lload 5 /* start */
            lload 7 /* end */
            invokevirtual org.joda.time.Chronology.get:(Lorg/joda/time/ReadablePeriod;JJ)[I
            astore 9 /* values */
        start local 9 // int[] values
         7: .line 69
            iconst_0
            istore 10 /* i */
        start local 10 // int i
         8: goto 11
         9: .line 70
      StackMap locals: org.joda.time.convert.ReadableIntervalConverter org.joda.time.ReadWritablePeriod java.lang.Object org.joda.time.Chronology org.joda.time.ReadableInterval long long int[] int
      StackMap stack:
            aload 1 /* writablePeriod */
            iload 10 /* i */
            aload 9 /* values */
            iload 10 /* i */
            iaload
            invokeinterface org.joda.time.ReadWritablePeriod.setValue:(II)V
        10: .line 69
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 10 /* i */
            aload 9 /* values */
            arraylength
            if_icmplt 9
        end local 10 // int i
        12: .line 72
            return
        end local 9 // int[] values
        end local 7 // long end
        end local 5 // long start
        end local 4 // org.joda.time.ReadableInterval interval
        end local 3 // org.joda.time.Chronology chrono
        end local 2 // java.lang.Object object
        end local 1 // org.joda.time.ReadWritablePeriod writablePeriod
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0            this  Lorg/joda/time/convert/ReadableIntervalConverter;
            0   13     1  writablePeriod  Lorg/joda/time/ReadWritablePeriod;
            0   13     2          object  Ljava/lang/Object;
            0   13     3          chrono  Lorg/joda/time/Chronology;
            1   13     4        interval  Lorg/joda/time/ReadableInterval;
            5   13     5           start  J
            6   13     7             end  J
            7   13     9          values  [I
            8   12    10               i  I
    MethodParameters:
                Name  Flags
      writablePeriod  
      object          
      chrono          

  public boolean isReadableInterval(java.lang.Object, org.joda.time.Chronology);
    descriptor: (Ljava/lang/Object;Lorg/joda/time/Chronology;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
        start local 1 // java.lang.Object object
        start local 2 // org.joda.time.Chronology chrono
         0: .line 86
            iconst_1
            ireturn
        end local 2 // org.joda.time.Chronology chrono
        end local 1 // java.lang.Object object
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/joda/time/convert/ReadableIntervalConverter;
            0    1     1  object  Ljava/lang/Object;
            0    1     2  chrono  Lorg/joda/time/Chronology;
    MethodParameters:
        Name  Flags
      object  
      chrono  

  public void setInto(org.joda.time.ReadWritableInterval, java.lang.Object, org.joda.time.Chronology);
    descriptor: (Lorg/joda/time/ReadWritableInterval;Ljava/lang/Object;Lorg/joda/time/Chronology;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
        start local 1 // org.joda.time.ReadWritableInterval writableInterval
        start local 2 // java.lang.Object object
        start local 3 // org.joda.time.Chronology chrono
         0: .line 99
            aload 2 /* object */
            checkcast org.joda.time.ReadableInterval
            astore 4 /* input */
        start local 4 // org.joda.time.ReadableInterval input
         1: .line 100
            aload 1 /* writableInterval */
            aload 4 /* input */
            invokeinterface org.joda.time.ReadWritableInterval.setInterval:(Lorg/joda/time/ReadableInterval;)V
         2: .line 101
            aload 3 /* chrono */
            ifnull 5
         3: .line 102
            aload 1 /* writableInterval */
            aload 3 /* chrono */
            invokeinterface org.joda.time.ReadWritableInterval.setChronology:(Lorg/joda/time/Chronology;)V
         4: .line 103
            goto 6
         5: .line 104
      StackMap locals: org.joda.time.ReadableInterval
      StackMap stack:
            aload 1 /* writableInterval */
            aload 4 /* input */
            invokeinterface org.joda.time.ReadableInterval.getChronology:()Lorg/joda/time/Chronology;
            invokeinterface org.joda.time.ReadWritableInterval.setChronology:(Lorg/joda/time/Chronology;)V
         6: .line 106
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.joda.time.ReadableInterval input
        end local 3 // org.joda.time.Chronology chrono
        end local 2 // java.lang.Object object
        end local 1 // org.joda.time.ReadWritableInterval writableInterval
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/joda/time/convert/ReadableIntervalConverter;
            0    7     1  writableInterval  Lorg/joda/time/ReadWritableInterval;
            0    7     2            object  Ljava/lang/Object;
            0    7     3            chrono  Lorg/joda/time/Chronology;
            1    7     4             input  Lorg/joda/time/ReadableInterval;
    MethodParameters:
                  Name  Flags
      writableInterval  
      object            
      chrono            

  public java.lang.Class<?> getSupportedType();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joda.time.convert.ReadableIntervalConverter this
         0: .line 113
            ldc Lorg/joda/time/ReadableInterval;
            areturn
        end local 0 // org.joda.time.convert.ReadableIntervalConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/convert/ReadableIntervalConverter;
    Signature: ()Ljava/lang/Class<*>;
}
SourceFile: "ReadableIntervalConverter.java"