abstract class org.joda.time.chrono.BasicFixedMonthChronology extends org.joda.time.chrono.BasicChronology
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.joda.time.chrono.BasicFixedMonthChronology
  super_class: org.joda.time.chrono.BasicChronology
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 261387371998

  static final int MONTH_LENGTH;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 30

  static final long MILLIS_PER_YEAR;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 31557600000

  static final long MILLIS_PER_MONTH;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 2592000000

  void <init>(org.joda.time.Chronology, java.lang.Object, int);
    descriptor: (Lorg/joda/time/Chronology;Ljava/lang/Object;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // org.joda.time.Chronology base
        start local 2 // java.lang.Object param
        start local 3 // int minDaysInFirstWeek
         0: .line 59
            aload 0 /* this */
            aload 1 /* base */
            aload 2 /* param */
            iload 3 /* minDaysInFirstWeek */
            invokespecial org.joda.time.chrono.BasicChronology.<init>:(Lorg/joda/time/Chronology;Ljava/lang/Object;I)V
         1: .line 60
            return
        end local 3 // int minDaysInFirstWeek
        end local 2 // java.lang.Object param
        end local 1 // org.joda.time.Chronology base
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    2     1                base  Lorg/joda/time/Chronology;
            0    2     2               param  Ljava/lang/Object;
            0    2     3  minDaysInFirstWeek  I
    MethodParameters:
                    Name  Flags
      base                
      param               
      minDaysInFirstWeek  

  long setYear(long, int);
    descriptor: (JI)J
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // long instant
        start local 3 // int year
         0: .line 65
            aload 0 /* this */
            lload 1 /* instant */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYear:(J)I
            istore 4 /* thisYear */
        start local 4 // int thisYear
         1: .line 66
            aload 0 /* this */
            lload 1 /* instant */
            iload 4 /* thisYear */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getDayOfYear:(JI)I
            istore 5 /* dayOfYear */
        start local 5 // int dayOfYear
         2: .line 67
            aload 0 /* this */
            lload 1 /* instant */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getMillisOfDay:(J)I
            istore 6 /* millisOfDay */
        start local 6 // int millisOfDay
         3: .line 69
            iload 5 /* dayOfYear */
            sipush 365
            if_icmple 6
         4: .line 71
            aload 0 /* this */
            iload 3 /* year */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.isLeapYear:(I)Z
            ifne 6
         5: .line 73
            iinc 5 /* dayOfYear */ -1
         6: .line 77
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* year */
            iconst_1
            iload 5 /* dayOfYear */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYearMonthDayMillis:(III)J
            lstore 1 /* instant */
         7: .line 78
            lload 1 /* instant */
            iload 6 /* millisOfDay */
            i2l
            ladd
            lstore 1 /* instant */
         8: .line 79
            lload 1 /* instant */
            lreturn
        end local 6 // int millisOfDay
        end local 5 // int dayOfYear
        end local 4 // int thisYear
        end local 3 // int year
        end local 1 // long instant
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    9     1      instant  J
            0    9     3         year  I
            1    9     4     thisYear  I
            2    9     5    dayOfYear  I
            3    9     6  millisOfDay  I
    MethodParameters:
         Name  Flags
      instant  
      year     

  long getYearDifference(long, long);
    descriptor: (JJ)J
    flags: (0x0000) 
    Code:
      stack=4, locals=12, args_size=3
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // long minuendInstant
        start local 3 // long subtrahendInstant
         0: .line 85
            aload 0 /* this */
            lload 1 /* minuendInstant */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYear:(J)I
            istore 5 /* minuendYear */
        start local 5 // int minuendYear
         1: .line 86
            aload 0 /* this */
            lload 3 /* subtrahendInstant */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYear:(J)I
            istore 6 /* subtrahendYear */
        start local 6 // int subtrahendYear
         2: .line 89
            lload 1 /* minuendInstant */
            aload 0 /* this */
            iload 5 /* minuendYear */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYearMillis:(I)J
            lsub
            lstore 7 /* minuendRem */
        start local 7 // long minuendRem
         3: .line 90
            lload 3 /* subtrahendInstant */
            aload 0 /* this */
            iload 6 /* subtrahendYear */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYearMillis:(I)J
            lsub
            lstore 9 /* subtrahendRem */
        start local 9 // long subtrahendRem
         4: .line 92
            iload 5 /* minuendYear */
            iload 6 /* subtrahendYear */
            isub
            istore 11 /* difference */
        start local 11 // int difference
         5: .line 93
            lload 7 /* minuendRem */
            lload 9 /* subtrahendRem */
            lcmp
            ifge 7
         6: .line 94
            iinc 11 /* difference */ -1
         7: .line 96
      StackMap locals: org.joda.time.chrono.BasicFixedMonthChronology long long int int long long int
      StackMap stack:
            iload 11 /* difference */
            i2l
            lreturn
        end local 11 // int difference
        end local 9 // long subtrahendRem
        end local 7 // long minuendRem
        end local 6 // int subtrahendYear
        end local 5 // int minuendYear
        end local 3 // long subtrahendInstant
        end local 1 // long minuendInstant
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    8     1     minuendInstant  J
            0    8     3  subtrahendInstant  J
            1    8     5        minuendYear  I
            2    8     6     subtrahendYear  I
            3    8     7         minuendRem  J
            4    8     9      subtrahendRem  J
            5    8    11         difference  I
    MethodParameters:
                   Name  Flags
      minuendInstant     
      subtrahendInstant  

  long getTotalMillisByYearMonth(int, int);
    descriptor: (II)J
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // int year
        start local 2 // int month
         0: .line 101
            iload 2 /* month */
            iconst_1
            isub
            i2l
            ldc 2592000000
            lmul
            lreturn
        end local 2 // int month
        end local 1 // int year
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    1     1   year  I
            0    1     2  month  I
    MethodParameters:
       Name  Flags
      year   
      month  

  int getDayOfMonth(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // long millis
         0: .line 107
            aload 0 /* this */
            lload 1 /* millis */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getDayOfYear:(J)I
            iconst_1
            isub
            bipush 30
            irem
            iconst_1
            iadd
            ireturn
        end local 1 // long millis
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    1     1  millis  J
    MethodParameters:
        Name  Flags
      millis  

  boolean isLeapYear(int);
    descriptor: (I)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // int year
         0: .line 112
            iload 1 /* year */
            iconst_3
            iand
            iconst_3
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int year
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    2     1  year  I
    MethodParameters:
      Name  Flags
      year  

  int getDaysInYearMonth(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // int year
        start local 2 // int month
         0: .line 117
            iload 2 /* month */
            bipush 13
            if_icmpeq 1
            bipush 30
            goto 3
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            iload 1 /* year */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.isLeapYear:(I)Z
            ifeq 2
            bipush 6
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_5
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 2 // int month
        end local 1 // int year
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    4     1   year  I
            0    4     2  month  I
    MethodParameters:
       Name  Flags
      year   
      month  

  int getDaysInMonthMax();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
         0: .line 122
            bipush 30
            ireturn
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;

  int getDaysInMonthMax(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // int month
         0: .line 127
            iload 1 /* month */
            bipush 13
            if_icmpeq 1
            bipush 30
            goto 2
      StackMap locals:
      StackMap stack:
         1: bipush 6
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int month
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    3     1  month  I
    MethodParameters:
       Name  Flags
      month  

  int getMonthOfYear(long);
    descriptor: (J)I
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // long millis
         0: .line 132
            aload 0 /* this */
            lload 1 /* millis */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getDayOfYear:(J)I
            iconst_1
            isub
            bipush 30
            idiv
            iconst_1
            iadd
            ireturn
        end local 1 // long millis
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    1     1  millis  J
    MethodParameters:
        Name  Flags
      millis  

  int getMonthOfYear(long, int);
    descriptor: (JI)I
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
        start local 1 // long millis
        start local 3 // int year
         0: .line 137
            lload 1 /* millis */
            aload 0 /* this */
            iload 3 /* year */
            invokevirtual org.joda.time.chrono.BasicFixedMonthChronology.getYearMillis:(I)J
            lsub
            ldc 2592000000
            ldiv
            lstore 4 /* monthZeroBased */
        start local 4 // long monthZeroBased
         1: .line 138
            lload 4 /* monthZeroBased */
            l2i
            iconst_1
            iadd
            ireturn
        end local 4 // long monthZeroBased
        end local 3 // int year
        end local 1 // long millis
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
            0    2     1          millis  J
            0    2     3            year  I
            1    2     4  monthZeroBased  J
    MethodParameters:
        Name  Flags
      millis  
      year    

  int getMaxMonth();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
         0: .line 143
            bipush 13
            ireturn
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;

  long getAverageMillisPerYear();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
         0: .line 148
            ldc 31557600000
            lreturn
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;

  long getAverageMillisPerYearDividedByTwo();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
         0: .line 153
            ldc 15778800000
            lreturn
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;

  long getAverageMillisPerMonth();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
         0: .line 158
            ldc 2592000000
            lreturn
        end local 0 // org.joda.time.chrono.BasicFixedMonthChronology this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/joda/time/chrono/BasicFixedMonthChronology;
}
SourceFile: "BasicFixedMonthChronology.java"