class org.apache.commons.lang3.time.FastDateParser$NumberStrategy extends org.apache.commons.lang3.time.FastDateParser$Strategy
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.lang3.time.FastDateParser$NumberStrategy
  super_class: org.apache.commons.lang3.time.FastDateParser$Strategy
{
  private final int field;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
        start local 1 // int field
         0: .line 732
            aload 0 /* this */
            invokespecial org.apache.commons.lang3.time.FastDateParser$Strategy.<init>:()V
         1: .line 733
            aload 0 /* this */
            iload 1 /* field */
            putfield org.apache.commons.lang3.time.FastDateParser$NumberStrategy.field:I
         2: .line 734
            return
        end local 1 // int field
        end local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/lang3/time/FastDateParser$NumberStrategy;
            0    3     1  field  I
    MethodParameters:
       Name  Flags
      field  final

  boolean isNumber();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
         0: .line 741
            iconst_1
            ireturn
        end local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/lang3/time/FastDateParser$NumberStrategy;

  boolean parse(org.apache.commons.lang3.time.FastDateParser, java.util.Calendar, java.lang.String, java.text.ParsePosition, int);
    descriptor: (Lorg/apache/commons/lang3/time/FastDateParser;Ljava/util/Calendar;Ljava/lang/String;Ljava/text/ParsePosition;I)Z
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
        start local 1 // org.apache.commons.lang3.time.FastDateParser parser
        start local 2 // java.util.Calendar calendar
        start local 3 // java.lang.String source
        start local 4 // java.text.ParsePosition pos
        start local 5 // int maxWidth
         0: .line 746
            aload 4 /* pos */
            invokevirtual java.text.ParsePosition.getIndex:()I
            istore 6 /* idx */
        start local 6 // int idx
         1: .line 747
            aload 3 /* source */
            invokevirtual java.lang.String.length:()I
            istore 7 /* last */
        start local 7 // int last
         2: .line 749
            iload 5 /* maxWidth */
            ifne 11
         3: .line 751
            goto 8
         4: .line 752
      StackMap locals: int int
      StackMap stack:
            aload 3 /* source */
            iload 6 /* idx */
            invokevirtual java.lang.String.charAt:(I)C
            istore 8 /* c */
        start local 8 // char c
         5: .line 753
            iload 8 /* c */
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 7
         6: .line 754
            goto 9
        end local 8 // char c
         7: .line 751
      StackMap locals:
      StackMap stack:
            iinc 6 /* idx */ 1
      StackMap locals:
      StackMap stack:
         8: iload 6 /* idx */
            iload 7 /* last */
            if_icmplt 4
         9: .line 757
      StackMap locals:
      StackMap stack:
            aload 4 /* pos */
            iload 6 /* idx */
            invokevirtual java.text.ParsePosition.setIndex:(I)V
        10: .line 758
            goto 19
        11: .line 759
      StackMap locals:
      StackMap stack:
            iload 6 /* idx */
            iload 5 /* maxWidth */
            iadd
            istore 8 /* end */
        start local 8 // int end
        12: .line 760
            iload 7 /* last */
            iload 8 /* end */
            if_icmple 19
        13: .line 761
            iload 8 /* end */
            istore 7 /* last */
        end local 8 // int end
        14: .line 765
            goto 19
        15: .line 766
      StackMap locals:
      StackMap stack:
            aload 3 /* source */
            iload 6 /* idx */
            invokevirtual java.lang.String.charAt:(I)C
            istore 8 /* c */
        start local 8 // char c
        16: .line 767
            iload 8 /* c */
            invokestatic java.lang.Character.isDigit:(C)Z
            ifne 18
        17: .line 768
            goto 20
        end local 8 // char c
        18: .line 765
      StackMap locals:
      StackMap stack:
            iinc 6 /* idx */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* idx */
            iload 7 /* last */
            if_icmplt 15
        20: .line 772
      StackMap locals:
      StackMap stack:
            aload 4 /* pos */
            invokevirtual java.text.ParsePosition.getIndex:()I
            iload 6 /* idx */
            if_icmpne 23
        21: .line 773
            aload 4 /* pos */
            iload 6 /* idx */
            invokevirtual java.text.ParsePosition.setErrorIndex:(I)V
        22: .line 774
            iconst_0
            ireturn
        23: .line 777
      StackMap locals:
      StackMap stack:
            aload 3 /* source */
            aload 4 /* pos */
            invokevirtual java.text.ParsePosition.getIndex:()I
            iload 6 /* idx */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 8 /* value */
        start local 8 // int value
        24: .line 778
            aload 4 /* pos */
            iload 6 /* idx */
            invokevirtual java.text.ParsePosition.setIndex:(I)V
        25: .line 780
            aload 2 /* calendar */
            aload 0 /* this */
            getfield org.apache.commons.lang3.time.FastDateParser$NumberStrategy.field:I
            aload 0 /* this */
            aload 1 /* parser */
            iload 8 /* value */
            invokevirtual org.apache.commons.lang3.time.FastDateParser$NumberStrategy.modify:(Lorg/apache/commons/lang3/time/FastDateParser;I)I
            invokevirtual java.util.Calendar.set:(II)V
        26: .line 781
            iconst_1
            ireturn
        end local 8 // int value
        end local 7 // int last
        end local 6 // int idx
        end local 5 // int maxWidth
        end local 4 // java.text.ParsePosition pos
        end local 3 // java.lang.String source
        end local 2 // java.util.Calendar calendar
        end local 1 // org.apache.commons.lang3.time.FastDateParser parser
        end local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   27     0      this  Lorg/apache/commons/lang3/time/FastDateParser$NumberStrategy;
            0   27     1    parser  Lorg/apache/commons/lang3/time/FastDateParser;
            0   27     2  calendar  Ljava/util/Calendar;
            0   27     3    source  Ljava/lang/String;
            0   27     4       pos  Ljava/text/ParsePosition;
            0   27     5  maxWidth  I
            1   27     6       idx  I
            2   27     7      last  I
            5    7     8         c  C
           12   14     8       end  I
           16   18     8         c  C
           24   27     8     value  I
    MethodParameters:
          Name  Flags
      parser    final
      calendar  final
      source    final
      pos       final
      maxWidth  final

  int modify(org.apache.commons.lang3.time.FastDateParser, int);
    descriptor: (Lorg/apache/commons/lang3/time/FastDateParser;I)I
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
        start local 1 // org.apache.commons.lang3.time.FastDateParser parser
        start local 2 // int iValue
         0: .line 791
            iload 2 /* iValue */
            ireturn
        end local 2 // int iValue
        end local 1 // org.apache.commons.lang3.time.FastDateParser parser
        end local 0 // org.apache.commons.lang3.time.FastDateParser$NumberStrategy this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/lang3/time/FastDateParser$NumberStrategy;
            0    1     1  parser  Lorg/apache/commons/lang3/time/FastDateParser;
            0    1     2  iValue  I
    MethodParameters:
        Name  Flags
      parser  final
      iValue  final
}
SourceFile: "FastDateParser.java"
NestHost: org.apache.commons.lang3.time.FastDateParser
InnerClasses:
  private NumberStrategy = org.apache.commons.lang3.time.FastDateParser$NumberStrategy of org.apache.commons.lang3.time.FastDateParser
  private abstract Strategy = org.apache.commons.lang3.time.FastDateParser$Strategy of org.apache.commons.lang3.time.FastDateParser