public class io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions
  super_class: java.lang.Object
{
  public static final boolean DEFAULT_REQUEST_BATCHING_ENABLED;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final boolean DEFAULT_REQUEST_MULTIPART_ENABLED;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
         2: .line 41
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
         3: .line 47
            return
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;

  public void <init>(io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions);
    descriptor: (Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
        start local 1 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions other
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
         2: .line 41
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
         3: .line 55
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
         4: .line 56
            aload 0 /* this */
            aload 1 /* other */
            getfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
         5: .line 57
            return
        end local 1 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions other
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
            0    6     1  other  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
    MethodParameters:
       Name  Flags
      other  

  public void <init>(io.vertx.core.json.JsonObject);
    descriptor: (Lio/vertx/core/json/JsonObject;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 65
            aload 0 /* this */
            invokespecial io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.<init>:()V
         1: .line 66
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandlerOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;)V
         2: .line 67
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public io.vertx.core.json.JsonObject toJson();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
         0: .line 73
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 1 /* json */
        start local 1 // io.vertx.core.json.JsonObject json
         1: .line 74
            aload 0 /* this */
            aload 1 /* json */
            invokestatic io.vertx.ext.web.handler.graphql.GraphQLHandlerOptionsConverter.toJson:(Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;Lio/vertx/core/json/JsonObject;)V
         2: .line 75
            aload 1 /* json */
            areturn
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
            1    3     1  json  Lio/vertx/core/json/JsonObject;

  public boolean isRequestBatchingEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
         0: .line 82
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
            ireturn
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;

  public io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions setRequestBatchingEnabled(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
        start local 1 // boolean requestBatchingEnabled
         0: .line 93
            aload 0 /* this */
            iload 1 /* requestBatchingEnabled */
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestBatchingEnabled:Z
         1: .line 94
            aload 0 /* this */
            areturn
        end local 1 // boolean requestBatchingEnabled
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
            0    2     1  requestBatchingEnabled  Z
    MethodParameters:
                        Name  Flags
      requestBatchingEnabled  

  public boolean isRequestMultipartEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
         0: .line 101
            aload 0 /* this */
            getfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
            ireturn
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;

  public io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions setRequestMultipartEnabled(boolean);
    descriptor: (Z)Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
        start local 1 // boolean requestMultipartEnabled
         0: .line 112
            aload 0 /* this */
            iload 1 /* requestMultipartEnabled */
            putfield io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions.requestMultipartEnabled:Z
         1: .line 113
            aload 0 /* this */
            areturn
        end local 1 // boolean requestMultipartEnabled
        end local 0 // io.vertx.ext.web.handler.graphql.GraphQLHandlerOptions this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lio/vertx/ext/web/handler/graphql/GraphQLHandlerOptions;
            0    2     1  requestMultipartEnabled  Z
    MethodParameters:
                         Name  Flags
      requestMultipartEnabled  
}
SourceFile: "GraphQLHandlerOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)