public class org.eclipse.jetty.util.Utf8LineParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.Utf8LineParser
  super_class: java.lang.Object
{
  private org.eclipse.jetty.util.Utf8LineParser$State state;
    descriptor: Lorg/eclipse/jetty/util/Utf8LineParser$State;
    flags: (0x0002) ACC_PRIVATE

  private org.eclipse.jetty.util.Utf8StringBuilder utf;
    descriptor: Lorg/eclipse/jetty/util/Utf8StringBuilder;
    flags: (0x0002) ACC_PRIVATE

  private static volatile int[] $SWITCH_TABLE$org$eclipse$jetty$util$Utf8LineParser$State;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.Utf8LineParser this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.START:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            putfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
         2: .line 45
            return
        end local 0 // org.eclipse.jetty.util.Utf8LineParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/Utf8LineParser;

  public java.lang.String parse(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jetty.util.Utf8LineParser this
        start local 1 // java.nio.ByteBuffer buf
         0: .line 58
            goto 5
         1: .line 60
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 2 /* b */
        start local 2 // byte b
         2: .line 61
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual org.eclipse.jetty.util.Utf8LineParser.parseByte:(B)Z
            ifeq 5
         3: .line 63
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.START:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            putfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
         4: .line 64
            aload 0 /* this */
            getfield org.eclipse.jetty.util.Utf8LineParser.utf:Lorg/eclipse/jetty/util/Utf8StringBuilder;
            invokevirtual org.eclipse.jetty.util.Utf8StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // byte b
         5: .line 58
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ifgt 1
         6: .line 68
            aconst_null
            areturn
        end local 1 // java.nio.ByteBuffer buf
        end local 0 // org.eclipse.jetty.util.Utf8LineParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jetty/util/Utf8LineParser;
            0    7     1   buf  Ljava/nio/ByteBuffer;
            2    5     2     b  B
    MethodParameters:
      Name  Flags
      buf   

  private boolean parseByte(byte);
    descriptor: (B)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.Utf8LineParser this
        start local 1 // byte b
         0: .line 73
            invokestatic org.eclipse.jetty.util.Utf8LineParser.$SWITCH_TABLE$org$eclipse$jetty$util$Utf8LineParser$State:()[I
            aload 0 /* this */
            getfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            invokevirtual org.eclipse.jetty.util.Utf8LineParser$State.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 1
                    2: 4
                    3: 9
              default: 13
          }
         1: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.eclipse.jetty.util.Utf8StringBuilder
            dup
            invokespecial org.eclipse.jetty.util.Utf8StringBuilder.<init>:()V
            putfield org.eclipse.jetty.util.Utf8LineParser.utf:Lorg/eclipse/jetty/util/Utf8StringBuilder;
         2: .line 77
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.PARSE:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            putfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
         3: .line 78
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual org.eclipse.jetty.util.Utf8LineParser.parseByte:(B)Z
            ireturn
         4: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.Utf8LineParser.utf:Lorg/eclipse/jetty/util/Utf8StringBuilder;
            invokevirtual org.eclipse.jetty.util.Utf8StringBuilder.isUtf8SequenceComplete:()Z
            ifeq 7
            iload 1 /* b */
            bipush 13
            if_icmpeq 5
            iload 1 /* b */
            bipush 10
            if_icmpne 7
         5: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.END:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            putfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
         6: .line 85
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual org.eclipse.jetty.util.Utf8LineParser.parseByte:(B)Z
            ireturn
         7: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.Utf8LineParser.utf:Lorg/eclipse/jetty/util/Utf8StringBuilder;
            iload 1 /* b */
            invokevirtual org.eclipse.jetty.util.Utf8StringBuilder.append:(B)V
         8: .line 88
            iconst_0
            ireturn
         9: .line 91
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 10
            if_icmpne 12
        10: .line 94
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.START:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            putfield org.eclipse.jetty.util.Utf8LineParser.state:Lorg/eclipse/jetty/util/Utf8LineParser$State;
        11: .line 95
            iconst_1
            ireturn
        12: .line 97
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        13: .line 100
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
        end local 1 // byte b
        end local 0 // org.eclipse.jetty.util.Utf8LineParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/eclipse/jetty/util/Utf8LineParser;
            0   14     1     b  B
    MethodParameters:
      Name  Flags
      b     

  static int[] $SWITCH_TABLE$org$eclipse$jetty$util$Utf8LineParser$State();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 30
            getstatic org.eclipse.jetty.util.Utf8LineParser.$SWITCH_TABLE$org$eclipse$jetty$util$Utf8LineParser$State:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.eclipse.jetty.util.Utf8LineParser$State.values:()[Lorg/eclipse/jetty/util/Utf8LineParser$State;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.END:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            invokevirtual org.eclipse.jetty.util.Utf8LineParser$State.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.PARSE:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            invokevirtual org.eclipse.jetty.util.Utf8LineParser$State.ordinal:()I
            iconst_2
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.eclipse.jetty.util.Utf8LineParser$State.START:Lorg/eclipse/jetty/util/Utf8LineParser$State;
            invokevirtual org.eclipse.jetty.util.Utf8LineParser$State.ordinal:()I
            iconst_1
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            dup
            putstatic org.eclipse.jetty.util.Utf8LineParser.$SWITCH_TABLE$org$eclipse$jetty$util$Utf8LineParser$State:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
}
SourceFile: "Utf8LineParser.java"
NestMembers:
  org.eclipse.jetty.util.Utf8LineParser$State
InnerClasses:
  private final State = org.eclipse.jetty.util.Utf8LineParser$State of org.eclipse.jetty.util.Utf8LineParser