public class org.eclipse.jgit.util.RawCharUtil
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.util.RawCharUtil
  super_class: java.lang.Object
{
  private static final boolean[] WHITESPACE;
    descriptor: [Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 19
            sipush 256
            newarray 4
            putstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
         1: .line 22
            getstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
            bipush 13
            iconst_1
            bastore
         2: .line 23
            getstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
            bipush 10
            iconst_1
            bastore
         3: .line 24
            getstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
            bipush 9
            iconst_1
            bastore
         4: .line 25
            getstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
            bipush 32
            iconst_1
            bastore
         5: .line 26
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static boolean isWhitespace(byte);
    descriptor: (B)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte c
         0: .line 36
            getstatic org.eclipse.jgit.util.RawCharUtil.WHITESPACE:[Z
            iload 0 /* c */
            sipush 255
            iand
            baload
            ireturn
        end local 0 // byte c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     c  B
    MethodParameters:
      Name  Flags
      c     

  public static int trimTrailingWhitespace(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // byte[] raw
        start local 1 // int start
        start local 2 // int end
         0: .line 53
            iload 2 /* end */
            iconst_1
            isub
            istore 3 /* ptr */
        start local 3 // int ptr
         1: .line 54
            goto 3
         2: .line 55
      StackMap locals: int
      StackMap stack:
            iinc 3 /* ptr */ -1
         3: .line 54
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            iload 3 /* ptr */
            if_icmpgt 4
            aload 0 /* raw */
            iload 3 /* ptr */
            baload
            invokestatic org.eclipse.jgit.util.RawCharUtil.isWhitespace:(B)Z
            ifne 2
         4: .line 57
      StackMap locals:
      StackMap stack:
            iload 3 /* ptr */
            iconst_1
            iadd
            ireturn
        end local 3 // int ptr
        end local 2 // int end
        end local 1 // int start
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0    raw  [B
            0    5     1  start  I
            0    5     2    end  I
            1    5     3    ptr  I
    MethodParameters:
       Name  Flags
      raw    
      start  
      end    

  public static int trimLeadingWhitespace(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // byte[] raw
        start local 1 // int start
        start local 2 // int end
         0: .line 74
            goto 2
         1: .line 75
      StackMap locals:
      StackMap stack:
            iinc 1 /* start */ 1
         2: .line 74
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            iload 2 /* end */
            if_icmpge 3
            aload 0 /* raw */
            iload 1 /* start */
            baload
            invokestatic org.eclipse.jgit.util.RawCharUtil.isWhitespace:(B)Z
            ifne 1
         3: .line 77
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            ireturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0    raw  [B
            0    4     1  start  I
            0    4     2    end  I
    MethodParameters:
       Name  Flags
      raw    
      start  
      end    

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RawCharUtil this
         0: .line 80
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 82
            return
        end local 0 // org.eclipse.jgit.util.RawCharUtil this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/RawCharUtil;
}
SourceFile: "RawCharUtil.java"