class io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder
  super_class: java.lang.Object
{
  private final java.lang.String header;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.netty.handler.codec.http.cookie.DefaultCookie cookie;
    descriptor: Lio/netty/handler/codec/http/cookie/DefaultCookie;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.String domain;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private long maxAge;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private int expiresStart;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int expiresEnd;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean secure;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean httpOnly;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  void <init>(io.netty.handler.codec.http.cookie.DefaultCookie, java.lang.String);
    descriptor: (Lio/netty/handler/codec/http/cookie/DefaultCookie;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // io.netty.handler.codec.http.cookie.DefaultCookie cookie
        start local 2 // java.lang.String header
         0: .line 158
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 152
            aload 0 /* this */
            ldc -9223372036854775808
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.maxAge:J
         2: .line 159
            aload 0 /* this */
            aload 1 /* cookie */
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
         3: .line 160
            aload 0 /* this */
            aload 2 /* header */
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
         4: .line 161
            return
        end local 2 // java.lang.String header
        end local 1 // io.netty.handler.codec.http.cookie.DefaultCookie cookie
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    5     1  cookie  Lio/netty/handler/codec/http/cookie/DefaultCookie;
            0    5     2  header  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      cookie  
      header  

  private long mergeMaxAgeAndExpires();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
         0: .line 165
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.maxAge:J
            ldc -9223372036854775808
            lcmp
            ifeq 2
         1: .line 166
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.maxAge:J
            lreturn
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresStart:I
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresEnd:I
            invokestatic io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.isValueDefined:(II)Z
            ifeq 9
         3: .line 168
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresStart:I
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresEnd:I
            invokestatic io.netty.handler.codec.DateFormatter.parseHttpDate:(Ljava/lang/CharSequence;II)Ljava/util/Date;
            astore 1 /* expiresDate */
        start local 1 // java.util.Date expiresDate
         4: .line 169
            aload 1 /* expiresDate */
            ifnull 9
         5: .line 170
            aload 1 /* expiresDate */
            invokevirtual java.util.Date.getTime:()J
            invokestatic java.lang.System.currentTimeMillis:()J
            lsub
            lstore 2 /* maxAgeMillis */
        start local 2 // long maxAgeMillis
         6: .line 171
            lload 2 /* maxAgeMillis */
            ldc 1000
            ldiv
            lload 2 /* maxAgeMillis */
            ldc 1000
            lrem
            lconst_0
            lcmp
            ifeq 7
            iconst_1
            goto 8
      StackMap locals: io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder java.util.Date long
      StackMap stack: long
         7: iconst_0
      StackMap locals: io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder java.util.Date long
      StackMap stack: long int
         8: i2l
            ladd
            lreturn
        end local 2 // long maxAgeMillis
        end local 1 // java.util.Date expiresDate
         9: .line 174
      StackMap locals:
      StackMap stack:
            ldc -9223372036854775808
            lreturn
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            4    9     1   expiresDate  Ljava/util/Date;
            6    9     2  maxAgeMillis  J

  io.netty.handler.codec.http.cookie.Cookie cookie();
    descriptor: ()Lio/netty/handler/codec/http/cookie/Cookie;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
         0: .line 178
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.domain:Ljava/lang/String;
            invokevirtual io.netty.handler.codec.http.cookie.DefaultCookie.setDomain:(Ljava/lang/String;)V
         1: .line 179
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.path:Ljava/lang/String;
            invokevirtual io.netty.handler.codec.http.cookie.DefaultCookie.setPath:(Ljava/lang/String;)V
         2: .line 180
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.mergeMaxAgeAndExpires:()J
            invokevirtual io.netty.handler.codec.http.cookie.DefaultCookie.setMaxAge:(J)V
         3: .line 181
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.secure:Z
            invokevirtual io.netty.handler.codec.http.cookie.DefaultCookie.setSecure:(Z)V
         4: .line 182
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.httpOnly:Z
            invokevirtual io.netty.handler.codec.http.cookie.DefaultCookie.setHttpOnly:(Z)V
         5: .line 183
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.cookie:Lio/netty/handler/codec/http/cookie/DefaultCookie;
            areturn
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;

  void appendAttribute(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int keyStart
        start local 2 // int keyEnd
        start local 3 // int valueStart
        start local 4 // int valueEnd
         0: .line 200
            iload 2 /* keyEnd */
            iload 1 /* keyStart */
            isub
            istore 5 /* length */
        start local 5 // int length
         1: .line 202
            iload 5 /* length */
            iconst_4
            if_icmpne 4
         2: .line 203
            aload 0 /* this */
            iload 1 /* keyStart */
            iload 3 /* valueStart */
            iload 4 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.parse4:(III)V
         3: .line 204
            goto 12
      StackMap locals: int
      StackMap stack:
         4: iload 5 /* length */
            bipush 6
            if_icmpne 7
         5: .line 205
            aload 0 /* this */
            iload 1 /* keyStart */
            iload 3 /* valueStart */
            iload 4 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.parse6:(III)V
         6: .line 206
            goto 12
      StackMap locals:
      StackMap stack:
         7: iload 5 /* length */
            bipush 7
            if_icmpne 10
         8: .line 207
            aload 0 /* this */
            iload 1 /* keyStart */
            iload 3 /* valueStart */
            iload 4 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.parse7:(III)V
         9: .line 208
            goto 12
      StackMap locals:
      StackMap stack:
        10: iload 5 /* length */
            bipush 8
            if_icmpne 12
        11: .line 209
            aload 0 /* this */
            iload 1 /* keyStart */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.parse8:(I)V
        12: .line 211
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int length
        end local 4 // int valueEnd
        end local 3 // int valueStart
        end local 2 // int keyEnd
        end local 1 // int keyStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0   13     1    keyStart  I
            0   13     2      keyEnd  I
            0   13     3  valueStart  I
            0   13     4    valueEnd  I
            1   13     5      length  I
    MethodParameters:
            Name  Flags
      keyStart    
      keyEnd      
      valueStart  
      valueEnd    

  private void parse4(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int nameStart
        start local 2 // int valueStart
        start local 3 // int valueEnd
         0: .line 214
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "Path"
            iconst_0
            iconst_4
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 2
         1: .line 215
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* valueStart */
            iload 3 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.computeValue:(II)Ljava/lang/String;
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.path:Ljava/lang/String;
         2: .line 217
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int valueEnd
        end local 2 // int valueStart
        end local 1 // int nameStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    3     1   nameStart  I
            0    3     2  valueStart  I
            0    3     3    valueEnd  I
    MethodParameters:
            Name  Flags
      nameStart   
      valueStart  
      valueEnd    

  private void parse6(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int nameStart
        start local 2 // int valueStart
        start local 3 // int valueEnd
         0: .line 220
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "Domain"
            iconst_0
            iconst_5
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 3
         1: .line 221
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* valueStart */
            iload 3 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.computeValue:(II)Ljava/lang/String;
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.domain:Ljava/lang/String;
         2: .line 222
            goto 5
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "Secure"
            iconst_0
            iconst_5
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 5
         4: .line 223
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.secure:Z
         5: .line 225
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int valueEnd
        end local 2 // int valueStart
        end local 1 // int nameStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    6     1   nameStart  I
            0    6     2  valueStart  I
            0    6     3    valueEnd  I
    MethodParameters:
            Name  Flags
      nameStart   
      valueStart  
      valueEnd    

  private void setMaxAge(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // java.lang.String value
         0: .line 229
            aload 0 /* this */
            aload 1 /* value */
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            lconst_0
            invokestatic java.lang.Math.max:(JJ)J
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.maxAge:J
         1: .line 230
            goto 3
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
         2: pop
         3: .line 233
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String value
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    4     1  value  Ljava/lang/String;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.NumberFormatException
    MethodParameters:
       Name  Flags
      value  

  private void parse7(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int nameStart
        start local 2 // int valueStart
        start local 3 // int valueEnd
         0: .line 236
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "Expires"
            iconst_0
            bipush 7
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 4
         1: .line 237
            aload 0 /* this */
            iload 2 /* valueStart */
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresStart:I
         2: .line 238
            aload 0 /* this */
            iload 3 /* valueEnd */
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.expiresEnd:I
         3: .line 239
            goto 6
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "Max-Age"
            iconst_0
            bipush 7
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 6
         5: .line 240
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* valueStart */
            iload 3 /* valueEnd */
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.computeValue:(II)Ljava/lang/String;
            invokevirtual io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.setMaxAge:(Ljava/lang/String;)V
         6: .line 242
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int valueEnd
        end local 2 // int valueStart
        end local 1 // int nameStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    7     1   nameStart  I
            0    7     2  valueStart  I
            0    7     3    valueEnd  I
    MethodParameters:
            Name  Flags
      nameStart   
      valueStart  
      valueEnd    

  private void parse8(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int nameStart
         0: .line 245
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iconst_1
            iload 1 /* nameStart */
            ldc "HTTPOnly"
            iconst_0
            bipush 8
            invokevirtual java.lang.String.regionMatches:(ZILjava/lang/String;II)Z
            ifeq 2
         1: .line 246
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.httpOnly:Z
         2: .line 248
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int nameStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    3     1  nameStart  I
    MethodParameters:
           Name  Flags
      nameStart  

  private static boolean isValueDefined(int, int);
    descriptor: (II)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int valueStart
        start local 1 // int valueEnd
         0: .line 251
            iload 0 /* valueStart */
            iconst_m1
            if_icmpeq 1
            iload 0 /* valueStart */
            iload 1 /* valueEnd */
            if_icmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int valueEnd
        end local 0 // int valueStart
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0  valueStart  I
            0    2     1    valueEnd  I
    MethodParameters:
            Name  Flags
      valueStart  
      valueEnd    

  private java.lang.String computeValue(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
        start local 1 // int valueStart
        start local 2 // int valueEnd
         0: .line 255
            iload 1 /* valueStart */
            iload 2 /* valueEnd */
            invokestatic io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.isValueDefined:(II)Z
            ifeq 1
            aload 0 /* this */
            getfield io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder.header:Ljava/lang/String;
            iload 1 /* valueStart */
            iload 2 /* valueEnd */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 2 // int valueEnd
        end local 1 // int valueStart
        end local 0 // io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/netty/handler/codec/http/cookie/ClientCookieDecoder$CookieBuilder;
            0    3     1  valueStart  I
            0    3     2    valueEnd  I
    MethodParameters:
            Name  Flags
      valueStart  
      valueEnd    
}
SourceFile: "ClientCookieDecoder.java"
NestHost: io.netty.handler.codec.http.cookie.ClientCookieDecoder
InnerClasses:
  private CookieBuilder = io.netty.handler.codec.http.cookie.ClientCookieDecoder$CookieBuilder of io.netty.handler.codec.http.cookie.ClientCookieDecoder