class io.undertow.server.protocol.http.ParseState
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.undertow.server.protocol.http.ParseState
  super_class: java.lang.Object
{
  public static final int VERB;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int PATH;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int PATH_PARAMETERS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int QUERY_PARAMETERS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  public static final int VERSION;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public static final int AFTER_VERSION;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  public static final int HEADER;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  public static final int HEADER_VALUE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 7

  public static final int PARSE_COMPLETE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  int state;
    descriptor: I
    flags: (0x0000) 

  int parseState;
    descriptor: I
    flags: (0x0000) 

  io.undertow.util.HttpString current;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0000) 

  byte[] currentBytes;
    descriptor: [B
    flags: (0x0000) 

  int pos;
    descriptor: I
    flags: (0x0000) 

  boolean urlDecodeRequired;
    descriptor: Z
    flags: (0x0000) 

  final java.lang.StringBuilder stringBuilder;
    descriptor: Ljava/lang/StringBuilder;
    flags: (0x0010) ACC_FINAL

  final java.lang.StringBuilder canonicalPath;
    descriptor: Ljava/lang/StringBuilder;
    flags: (0x0010) ACC_FINAL

  byte leftOver;
    descriptor: B
    flags: (0x0000) 

  io.undertow.util.HttpString nextHeader;
    descriptor: Lio/undertow/util/HttpString;
    flags: (0x0000) 

  java.lang.String nextQueryParam;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  int mapCount;
    descriptor: I
    flags: (0x0000) 

  final java.lang.StringBuilder decodeBuffer;
    descriptor: Ljava/lang/StringBuilder;
    flags: (0x0010) ACC_FINAL

  final io.undertow.server.protocol.http.CacheMap<io.undertow.util.HttpString, java.lang.String> headerValuesCache;
    descriptor: Lio/undertow/server/protocol/http/CacheMap;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/undertow/server/protocol/http/CacheMap<Lio/undertow/util/HttpString;Ljava/lang/String;>;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http.ParseState this
        start local 1 // int cacheSize
         0: .line 118
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.urlDecodeRequired:Z
         2: .line 82
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            putfield io.undertow.server.protocol.http.ParseState.stringBuilder:Ljava/lang/StringBuilder;
         3: .line 87
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            putfield io.undertow.server.protocol.http.ParseState.canonicalPath:Ljava/lang/StringBuilder;
         4: .line 110
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            putfield io.undertow.server.protocol.http.ParseState.decodeBuffer:Ljava/lang/StringBuilder;
         5: .line 119
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.parseState:I
         6: .line 120
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.pos:I
         7: .line 121
            iload 1 /* cacheSize */
            ifgt 10
         8: .line 122
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http.ParseState.headerValuesCache:Lio/undertow/server/protocol/http/CacheMap;
         9: .line 123
            goto 11
        10: .line 124
      StackMap locals: io.undertow.server.protocol.http.ParseState int
      StackMap stack:
            aload 0 /* this */
            new io.undertow.server.protocol.http.CacheMap
            dup
            iload 1 /* cacheSize */
            invokespecial io.undertow.server.protocol.http.CacheMap.<init>:(I)V
            putfield io.undertow.server.protocol.http.ParseState.headerValuesCache:Lio/undertow/server/protocol/http/CacheMap;
        11: .line 126
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int cacheSize
        end local 0 // io.undertow.server.protocol.http.ParseState this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lio/undertow/server/protocol/http/ParseState;
            0   12     1  cacheSize  I
    MethodParameters:
           Name  Flags
      cacheSize  

  public boolean isComplete();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http.ParseState this
         0: .line 129
            aload 0 /* this */
            getfield io.undertow.server.protocol.http.ParseState.state:I
            bipush 8
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.undertow.server.protocol.http.ParseState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/protocol/http/ParseState;

  public final void parseComplete();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http.ParseState this
         0: .line 133
            aload 0 /* this */
            bipush 8
            putfield io.undertow.server.protocol.http.ParseState.state:I
         1: .line 134
            return
        end local 0 // io.undertow.server.protocol.http.ParseState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/server/protocol/http/ParseState;

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http.ParseState this
         0: .line 137
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.state:I
         1: .line 138
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.parseState:I
         2: .line 139
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http.ParseState.current:Lio/undertow/util/HttpString;
         3: .line 140
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http.ParseState.currentBytes:[B
         4: .line 141
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.pos:I
         5: .line 142
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.leftOver:B
         6: .line 143
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.urlDecodeRequired:Z
         7: .line 144
            aload 0 /* this */
            getfield io.undertow.server.protocol.http.ParseState.stringBuilder:Ljava/lang/StringBuilder;
            iconst_0
            invokevirtual java.lang.StringBuilder.setLength:(I)V
         8: .line 145
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http.ParseState.nextHeader:Lio/undertow/util/HttpString;
         9: .line 146
            aload 0 /* this */
            aconst_null
            putfield io.undertow.server.protocol.http.ParseState.nextQueryParam:Ljava/lang/String;
        10: .line 147
            aload 0 /* this */
            iconst_0
            putfield io.undertow.server.protocol.http.ParseState.mapCount:I
        11: .line 148
            return
        end local 0 // io.undertow.server.protocol.http.ParseState this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/undertow/server/protocol/http/ParseState;
}
SourceFile: "ParseState.java"