public final class org.apache.http.params.HttpParamConfig
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.http.params.HttpParamConfig
  super_class: java.lang.Object
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.params.HttpParamConfig this
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            return
        end local 0 // org.apache.http.params.HttpParamConfig this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/params/HttpParamConfig;

  public static org.apache.http.config.SocketConfig getSocketConfig(org.apache.http.params.HttpParams);
    descriptor: (Lorg/apache/http/params/HttpParams;)Lorg/apache/http/config/SocketConfig;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.http.params.HttpParams params
         0: .line 49
            invokestatic org.apache.http.config.SocketConfig.custom:()Lorg/apache/http/config/SocketConfig$Builder;
         1: .line 50
            aload 0 /* params */
            ldc "http.socket.timeout"
            iconst_0
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            invokevirtual org.apache.http.config.SocketConfig$Builder.setSoTimeout:(I)Lorg/apache/http/config/SocketConfig$Builder;
         2: .line 51
            aload 0 /* params */
            ldc "http.socket.reuseaddr"
            iconst_0
            invokeinterface org.apache.http.params.HttpParams.getBooleanParameter:(Ljava/lang/String;Z)Z
            invokevirtual org.apache.http.config.SocketConfig$Builder.setSoReuseAddress:(Z)Lorg/apache/http/config/SocketConfig$Builder;
         3: .line 52
            aload 0 /* params */
            ldc "http.socket.keepalive"
            iconst_0
            invokeinterface org.apache.http.params.HttpParams.getBooleanParameter:(Ljava/lang/String;Z)Z
            invokevirtual org.apache.http.config.SocketConfig$Builder.setSoKeepAlive:(Z)Lorg/apache/http/config/SocketConfig$Builder;
         4: .line 53
            aload 0 /* params */
            ldc "http.socket.linger"
            iconst_m1
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            invokevirtual org.apache.http.config.SocketConfig$Builder.setSoLinger:(I)Lorg/apache/http/config/SocketConfig$Builder;
         5: .line 54
            aload 0 /* params */
            ldc "http.tcp.nodelay"
            iconst_1
            invokeinterface org.apache.http.params.HttpParams.getBooleanParameter:(Ljava/lang/String;Z)Z
            invokevirtual org.apache.http.config.SocketConfig$Builder.setTcpNoDelay:(Z)Lorg/apache/http/config/SocketConfig$Builder;
         6: .line 55
            invokevirtual org.apache.http.config.SocketConfig$Builder.build:()Lorg/apache/http/config/SocketConfig;
         7: .line 49
            areturn
        end local 0 // org.apache.http.params.HttpParams params
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0  params  Lorg/apache/http/params/HttpParams;
    MethodParameters:
        Name  Flags
      params  final

  public static org.apache.http.config.MessageConstraints getMessageConstraints(org.apache.http.params.HttpParams);
    descriptor: (Lorg/apache/http/params/HttpParams;)Lorg/apache/http/config/MessageConstraints;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.http.params.HttpParams params
         0: .line 59
            invokestatic org.apache.http.config.MessageConstraints.custom:()Lorg/apache/http/config/MessageConstraints$Builder;
         1: .line 60
            aload 0 /* params */
            ldc "http.connection.max-header-count"
            iconst_m1
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            invokevirtual org.apache.http.config.MessageConstraints$Builder.setMaxHeaderCount:(I)Lorg/apache/http/config/MessageConstraints$Builder;
         2: .line 61
            aload 0 /* params */
            ldc "http.connection.max-line-length"
            iconst_m1
            invokeinterface org.apache.http.params.HttpParams.getIntParameter:(Ljava/lang/String;I)I
            invokevirtual org.apache.http.config.MessageConstraints$Builder.setMaxLineLength:(I)Lorg/apache/http/config/MessageConstraints$Builder;
         3: .line 62
            invokevirtual org.apache.http.config.MessageConstraints$Builder.build:()Lorg/apache/http/config/MessageConstraints;
         4: .line 59
            areturn
        end local 0 // org.apache.http.params.HttpParams params
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  params  Lorg/apache/http/params/HttpParams;
    MethodParameters:
        Name  Flags
      params  final

  public static org.apache.http.config.ConnectionConfig getConnectionConfig(org.apache.http.params.HttpParams);
    descriptor: (Lorg/apache/http/params/HttpParams;)Lorg/apache/http/config/ConnectionConfig;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.http.params.HttpParams params
         0: .line 66
            aload 0 /* params */
            invokestatic org.apache.http.params.HttpParamConfig.getMessageConstraints:(Lorg/apache/http/params/HttpParams;)Lorg/apache/http/config/MessageConstraints;
            astore 1 /* messageConstraints */
        start local 1 // org.apache.http.config.MessageConstraints messageConstraints
         1: .line 67
            aload 0 /* params */
            ldc "http.protocol.element-charset"
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* csname */
        start local 2 // java.lang.String csname
         2: .line 68
            invokestatic org.apache.http.config.ConnectionConfig.custom:()Lorg/apache/http/config/ConnectionConfig$Builder;
         3: .line 69
            aload 2 /* csname */
            ifnull 4
            aload 2 /* csname */
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            goto 5
      StackMap locals: org.apache.http.params.HttpParams org.apache.http.config.MessageConstraints java.lang.String
      StackMap stack: org.apache.http.config.ConnectionConfig$Builder
         4: aconst_null
      StackMap locals: org.apache.http.params.HttpParams org.apache.http.config.MessageConstraints java.lang.String
      StackMap stack: org.apache.http.config.ConnectionConfig$Builder java.nio.charset.Charset
         5: invokevirtual org.apache.http.config.ConnectionConfig$Builder.setCharset:(Ljava/nio/charset/Charset;)Lorg/apache/http/config/ConnectionConfig$Builder;
         6: .line 71
            aload 0 /* params */
            ldc "http.malformed.input.action"
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
         7: .line 70
            checkcast java.nio.charset.CodingErrorAction
            invokevirtual org.apache.http.config.ConnectionConfig$Builder.setMalformedInputAction:(Ljava/nio/charset/CodingErrorAction;)Lorg/apache/http/config/ConnectionConfig$Builder;
         8: .line 73
            aload 0 /* params */
            ldc "http.unmappable.input.action"
            invokeinterface org.apache.http.params.HttpParams.getParameter:(Ljava/lang/String;)Ljava/lang/Object;
         9: .line 72
            checkcast java.nio.charset.CodingErrorAction
            invokevirtual org.apache.http.config.ConnectionConfig$Builder.setMalformedInputAction:(Ljava/nio/charset/CodingErrorAction;)Lorg/apache/http/config/ConnectionConfig$Builder;
        10: .line 74
            aload 1 /* messageConstraints */
            invokevirtual org.apache.http.config.ConnectionConfig$Builder.setMessageConstraints:(Lorg/apache/http/config/MessageConstraints;)Lorg/apache/http/config/ConnectionConfig$Builder;
        11: .line 75
            invokevirtual org.apache.http.config.ConnectionConfig$Builder.build:()Lorg/apache/http/config/ConnectionConfig;
        12: .line 68
            areturn
        end local 2 // java.lang.String csname
        end local 1 // org.apache.http.config.MessageConstraints messageConstraints
        end local 0 // org.apache.http.params.HttpParams params
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   13     0              params  Lorg/apache/http/params/HttpParams;
            1   13     1  messageConstraints  Lorg/apache/http/config/MessageConstraints;
            2   13     2              csname  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      params  final
}
SourceFile: "HttpParamConfig.java"
InnerClasses:
  public Builder = org.apache.http.config.ConnectionConfig$Builder of org.apache.http.config.ConnectionConfig
  public Builder = org.apache.http.config.MessageConstraints$Builder of org.apache.http.config.MessageConstraints
  public Builder = org.apache.http.config.SocketConfig$Builder of org.apache.http.config.SocketConfig
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()