public class io.vertx.rabbitmq.QueueOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.rabbitmq.QueueOptions
  super_class: java.lang.Object
{
  private static final int DEFAULT_QUEUE_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483647

  private static final boolean DEFAULT_AUTO_ACK;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final boolean DEFAULT_KEEP_MOST_RECENT;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

  private int maxInternalQueueSize;
    descriptor: I
    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.rabbitmq.QueueOptions this
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 17
            aload 0 /* this */
            iconst_1
            putfield io.vertx.rabbitmq.QueueOptions.autoAck:Z
         2: .line 18
            aload 0 /* this */
            iconst_0
            putfield io.vertx.rabbitmq.QueueOptions.keepMostRecent:Z
         3: .line 19
            aload 0 /* this */
            ldc 2147483647
            putfield io.vertx.rabbitmq.QueueOptions.maxInternalQueueSize:I
         4: .line 23
            return
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/rabbitmq/QueueOptions;

  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.rabbitmq.QueueOptions this
        start local 1 // io.vertx.core.json.JsonObject json
         0: .line 26
            aload 0 /* this */
            invokespecial io.vertx.rabbitmq.QueueOptions.<init>:()V
         1: .line 27
            aload 1 /* json */
            aload 0 /* this */
            invokestatic io.vertx.rabbitmq.QueueOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/rabbitmq/QueueOptions;)V
         2: .line 28
            return
        end local 1 // io.vertx.core.json.JsonObject json
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/rabbitmq/QueueOptions;
            0    3     1  json  Lio/vertx/core/json/JsonObject;
    MethodParameters:
      Name  Flags
      json  

  public io.vertx.rabbitmq.QueueOptions setAutoAck(boolean);
    descriptor: (Z)Lio/vertx/rabbitmq/QueueOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rabbitmq.QueueOptions this
        start local 1 // boolean autoAck
         0: .line 36
            aload 0 /* this */
            iload 1 /* autoAck */
            putfield io.vertx.rabbitmq.QueueOptions.autoAck:Z
         1: .line 37
            aload 0 /* this */
            areturn
        end local 1 // boolean autoAck
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/rabbitmq/QueueOptions;
            0    2     1  autoAck  Z
    MethodParameters:
         Name  Flags
      autoAck  

  public io.vertx.rabbitmq.QueueOptions setKeepMostRecent(boolean);
    descriptor: (Z)Lio/vertx/rabbitmq/QueueOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rabbitmq.QueueOptions this
        start local 1 // boolean keepMostRecent
         0: .line 45
            aload 0 /* this */
            iload 1 /* keepMostRecent */
            putfield io.vertx.rabbitmq.QueueOptions.keepMostRecent:Z
         1: .line 46
            aload 0 /* this */
            areturn
        end local 1 // boolean keepMostRecent
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/vertx/rabbitmq/QueueOptions;
            0    2     1  keepMostRecent  Z
    MethodParameters:
                Name  Flags
      keepMostRecent  

  public io.vertx.rabbitmq.QueueOptions setMaxInternalQueueSize(int);
    descriptor: (I)Lio/vertx/rabbitmq/QueueOptions;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.rabbitmq.QueueOptions this
        start local 1 // int maxInternalQueueSize
         0: .line 54
            aload 0 /* this */
            iload 1 /* maxInternalQueueSize */
            putfield io.vertx.rabbitmq.QueueOptions.maxInternalQueueSize:I
         1: .line 55
            aload 0 /* this */
            areturn
        end local 1 // int maxInternalQueueSize
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lio/vertx/rabbitmq/QueueOptions;
            0    2     1  maxInternalQueueSize  I
    MethodParameters:
                      Name  Flags
      maxInternalQueueSize  

  public boolean isAutoAck();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.QueueOptions this
         0: .line 64
            aload 0 /* this */
            getfield io.vertx.rabbitmq.QueueOptions.autoAck:Z
            ireturn
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/QueueOptions;

  public int maxInternalQueueSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.QueueOptions this
         0: .line 71
            aload 0 /* this */
            getfield io.vertx.rabbitmq.QueueOptions.maxInternalQueueSize:I
            ireturn
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/QueueOptions;

  public boolean isKeepMostRecent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.rabbitmq.QueueOptions this
         0: .line 79
            aload 0 /* this */
            getfield io.vertx.rabbitmq.QueueOptions.keepMostRecent:Z
            ireturn
        end local 0 // io.vertx.rabbitmq.QueueOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/rabbitmq/QueueOptions;
}
SourceFile: "QueueOptions.java"
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.DataObject(generateConverter = true)