public class org.apache.batik.css.parser.ScannerUtilities
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.batik.css.parser.ScannerUtilities
  super_class: java.lang.Object
{
  protected static final int[] IDENTIFIER_START;
    descriptor: [I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final int[] NAME;
    descriptor: [I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final int[] HEXADECIMAL;
    descriptor: [I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final int[] STRING;
    descriptor: [I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  protected static final int[] URI;
    descriptor: [I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 34
            iconst_4
            newarray 10
            dup
            iconst_2
            ldc -2013265922
            iastore
            dup
            iconst_3
            ldc 134217726
            iastore
         1: .line 33
            putstatic org.apache.batik.css.parser.ScannerUtilities.IDENTIFIER_START:[I
         2: .line 40
            iconst_4
            newarray 10
            dup
            iconst_1
            ldc 67051520
            iastore
            dup
            iconst_2
            ldc -2013265922
            iastore
            dup
            iconst_3
            ldc 134217726
            iastore
         3: .line 39
            putstatic org.apache.batik.css.parser.ScannerUtilities.NAME:[I
         4: .line 46
            iconst_4
            newarray 10
            dup
            iconst_1
            ldc 67043328
            iastore
            dup
            iconst_2
            bipush 126
            iastore
            dup
            iconst_3
            bipush 126
            iastore
         5: .line 45
            putstatic org.apache.batik.css.parser.ScannerUtilities.HEXADECIMAL:[I
         6: .line 52
            iconst_4
            newarray 10
            dup
            iconst_0
            sipush 512
            iastore
            dup
            iconst_1
            sipush -133
            iastore
            dup
            iconst_2
            iconst_m1
            iastore
            dup
            iconst_3
            ldc 2147483647
            iastore
         7: .line 51
            putstatic org.apache.batik.css.parser.ScannerUtilities.STRING:[I
         8: .line 58
            iconst_4
            newarray 10
            dup
            iconst_1
            sipush -902
            iastore
            dup
            iconst_2
            iconst_m1
            iastore
            dup
            iconst_3
            ldc 2147483647
            iastore
         9: .line 57
            putstatic org.apache.batik.css.parser.ScannerUtilities.URI:[I
        10: .line 58
            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.apache.batik.css.parser.ScannerUtilities this
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            return
        end local 0 // org.apache.batik.css.parser.ScannerUtilities this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/batik/css/parser/ScannerUtilities;

  public static boolean isCSSSpace(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 70
            iload 0 /* c */
            bipush 32
            if_icmpgt 9
         1: .line 71
            ldc 4294981120
         2: .line 75
            iload 0 /* c */
         3: .line 71
            lshr
         4: .line 75
            lconst_1
         5: .line 71
            land
         6: .line 75
            lconst_0
         7: .line 71
            lcmp
            ifeq 9
         8: .line 70
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         9: iconst_0
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0     c  C
    MethodParameters:
      Name  Flags
      c     

  public static boolean isCSSIdentifierStartCharacter(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 82
            iload 0 /* c */
            sipush 128
            if_icmpge 1
            getstatic org.apache.batik.css.parser.ScannerUtilities.IDENTIFIER_START:[I
            iload 0 /* c */
            iconst_5
            ishr
            iaload
            iconst_1
            iload 0 /* c */
            bipush 31
            iand
            ishl
            iand
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  C
    MethodParameters:
      Name  Flags
      c     

  public static boolean isCSSNameCharacter(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 89
            iload 0 /* c */
            sipush 128
            if_icmpge 1
            getstatic org.apache.batik.css.parser.ScannerUtilities.NAME:[I
            iload 0 /* c */
            iconst_5
            ishr
            iaload
            iconst_1
            iload 0 /* c */
            bipush 31
            iand
            ishl
            iand
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  C
    MethodParameters:
      Name  Flags
      c     

  public static boolean isCSSHexadecimalCharacter(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 96
            iload 0 /* c */
            sipush 128
            if_icmpge 1
            getstatic org.apache.batik.css.parser.ScannerUtilities.HEXADECIMAL:[I
            iload 0 /* c */
            iconst_5
            ishr
            iaload
            iconst_1
            iload 0 /* c */
            bipush 31
            iand
            ishl
            iand
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  C
    MethodParameters:
      Name  Flags
      c     

  public static boolean isCSSStringCharacter(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 103
            iload 0 /* c */
            sipush 128
            if_icmpge 1
            getstatic org.apache.batik.css.parser.ScannerUtilities.STRING:[I
            iload 0 /* c */
            iconst_5
            ishr
            iaload
            iconst_1
            iload 0 /* c */
            bipush 31
            iand
            ishl
            iand
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  C
    MethodParameters:
      Name  Flags
      c     

  public static boolean isCSSURICharacter(char);
    descriptor: (C)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char c
         0: .line 110
            iload 0 /* c */
            sipush 128
            if_icmpge 1
            getstatic org.apache.batik.css.parser.ScannerUtilities.URI:[I
            iload 0 /* c */
            iconst_5
            ishr
            iaload
            iconst_1
            iload 0 /* c */
            bipush 31
            iand
            ishl
            iand
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  C
    MethodParameters:
      Name  Flags
      c     
}
SourceFile: "ScannerUtilities.java"