public final class io.ebeaninternal.server.el.CharMatch
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.ebeaninternal.server.el.CharMatch
  super_class: java.lang.Object
{
  private final char[] upperChars;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.el.CharMatch this
        start local 1 // java.lang.String s
         0: .line 15
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 16
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual java.lang.String.toUpperCase:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            putfield io.ebeaninternal.server.el.CharMatch.upperChars:[C
         2: .line 17
            aload 0 /* this */
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.upperChars:[C
            arraylength
            putfield io.ebeaninternal.server.el.CharMatch.maxLength:I
         3: .line 18
            return
        end local 1 // java.lang.String s
        end local 0 // io.ebeaninternal.server.el.CharMatch this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/ebeaninternal/server/el/CharMatch;
            0    4     1     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  public boolean startsWith(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.el.CharMatch this
        start local 1 // java.lang.String other
         0: .line 22
            aload 1 /* other */
            ifnull 1
            aload 1 /* other */
            invokevirtual java.lang.String.length:()I
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.maxLength:I
            if_icmpge 2
         1: .line 23
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 26
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 2 /* ta */
        start local 2 // char[] ta
         3: .line 28
            iconst_m1
            istore 3 /* pos */
        start local 3 // int pos
         4: .line 29
            goto 9
         5: .line 30
      StackMap locals: char[] int
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.upperChars:[C
            iload 3 /* pos */
            caload
            istore 4 /* c1 */
        start local 4 // char c1
         6: .line 31
            aload 2 /* ta */
            iload 3 /* pos */
            caload
            invokestatic java.lang.Character.toUpperCase:(C)C
            istore 5 /* c2 */
        start local 5 // char c2
         7: .line 32
            iload 4 /* c1 */
            iload 5 /* c2 */
            if_icmpeq 9
         8: .line 33
            iconst_0
            ireturn
        end local 5 // char c2
        end local 4 // char c1
         9: .line 29
      StackMap locals:
      StackMap stack:
            iinc 3 /* pos */ 1
            iload 3 /* pos */
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.maxLength:I
            if_icmplt 5
        10: .line 36
            iconst_1
            ireturn
        end local 3 // int pos
        end local 2 // char[] ta
        end local 1 // java.lang.String other
        end local 0 // io.ebeaninternal.server.el.CharMatch this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lio/ebeaninternal/server/el/CharMatch;
            0   11     1  other  Ljava/lang/String;
            3   11     2     ta  [C
            4   11     3    pos  I
            6    9     4     c1  C
            7    9     5     c2  C
    MethodParameters:
       Name  Flags
      other  

  public boolean endsWith(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // io.ebeaninternal.server.el.CharMatch this
        start local 1 // java.lang.String other
         0: .line 41
            aload 1 /* other */
            ifnull 1
            aload 1 /* other */
            invokevirtual java.lang.String.length:()I
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.maxLength:I
            if_icmpge 2
         1: .line 42
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 45
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 2 /* ta */
        start local 2 // char[] ta
         3: .line 47
            aload 2 /* ta */
            arraylength
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.maxLength:I
            isub
            istore 3 /* offset */
        start local 3 // int offset
         4: .line 48
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.maxLength:I
            istore 4 /* pos */
        start local 4 // int pos
         5: .line 49
            goto 10
         6: .line 50
      StackMap locals: char[] int int
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.el.CharMatch.upperChars:[C
            iload 4 /* pos */
            caload
            istore 5 /* c1 */
        start local 5 // char c1
         7: .line 51
            aload 2 /* ta */
            iload 3 /* offset */
            iload 4 /* pos */
            iadd
            caload
            invokestatic java.lang.Character.toUpperCase:(C)C
            istore 6 /* c2 */
        start local 6 // char c2
         8: .line 52
            iload 5 /* c1 */
            iload 6 /* c2 */
            if_icmpeq 10
         9: .line 53
            iconst_0
            ireturn
        end local 6 // char c2
        end local 5 // char c1
        10: .line 49
      StackMap locals:
      StackMap stack:
            iinc 4 /* pos */ -1
            iload 4 /* pos */
            ifge 6
        11: .line 56
            iconst_1
            ireturn
        end local 4 // int pos
        end local 3 // int offset
        end local 2 // char[] ta
        end local 1 // java.lang.String other
        end local 0 // io.ebeaninternal.server.el.CharMatch this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lio/ebeaninternal/server/el/CharMatch;
            0   12     1   other  Ljava/lang/String;
            3   12     2      ta  [C
            4   12     3  offset  I
            5   12     4     pos  I
            7   10     5      c1  C
            8   10     6      c2  C
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "CharMatch.java"