public interface io.vertx.amqp.AmqpMessage
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.amqp.AmqpMessage
  super_class: java.lang.Object
{
  public static io.vertx.amqp.AmqpMessageBuilder create();
    descriptor: ()Lio/vertx/amqp/AmqpMessageBuilder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 47
            new io.vertx.amqp.impl.AmqpMessageBuilderImpl
            dup
            invokespecial io.vertx.amqp.impl.AmqpMessageBuilderImpl.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static io.vertx.amqp.AmqpMessageBuilder create(io.vertx.amqp.AmqpMessage);
    descriptor: (Lio/vertx/amqp/AmqpMessage;)Lio/vertx/amqp/AmqpMessageBuilder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.amqp.AmqpMessage existing
         0: .line 57
            new io.vertx.amqp.impl.AmqpMessageBuilderImpl
            dup
            aload 0 /* existing */
            invokespecial io.vertx.amqp.impl.AmqpMessageBuilderImpl.<init>:(Lio/vertx/amqp/AmqpMessage;)V
            areturn
        end local 0 // io.vertx.amqp.AmqpMessage existing
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  existing  Lio/vertx/amqp/AmqpMessage;
    MethodParameters:
          Name  Flags
      existing  

  public static io.vertx.amqp.AmqpMessageBuilder create(org.apache.qpid.proton.message.Message);
    descriptor: (Lorg/apache/qpid/proton/message/Message;)Lio/vertx/amqp/AmqpMessageBuilder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.qpid.proton.message.Message existing
         0: .line 68
            new io.vertx.amqp.impl.AmqpMessageBuilderImpl
            dup
            aload 0 /* existing */
            invokespecial io.vertx.amqp.impl.AmqpMessageBuilderImpl.<init>:(Lorg/apache/qpid/proton/message/Message;)V
            areturn
        end local 0 // org.apache.qpid.proton.message.Message existing
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  existing  Lorg/apache/qpid/proton/message/Message;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()
    MethodParameters:
          Name  Flags
      existing  

  public abstract boolean isDurable();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isFirstAcquirer();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int priority();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int deliveryCount();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long ttl();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String id();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String address();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String replyTo();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String correlationId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isBodyNull();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean bodyAsBoolean();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract byte bodyAsByte();
    descriptor: ()B
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract short bodyAsShort();
    descriptor: ()S
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int bodyAsInteger();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long bodyAsLong();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract float bodyAsFloat();
    descriptor: ()F
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double bodyAsDouble();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract char bodyAsChar();
    descriptor: ()C
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.time.Instant bodyAsTimestamp();
    descriptor: ()Ljava/time/Instant;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})

  public abstract java.util.UUID bodyAsUUID();
    descriptor: ()Ljava/util/UUID;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore(value = {"permitted-type"})

  public abstract io.vertx.core.buffer.Buffer bodyAsBinary();
    descriptor: ()Lio/vertx/core/buffer/Buffer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String bodyAsString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String bodyAsSymbol();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract <T> java.util.List<T> bodyAsList();
    descriptor: ()Ljava/util/List;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <T:Ljava/lang/Object;>()Ljava/util/List<TT;>;

  public abstract <K, V> java.util.Map<K, V> bodyAsMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>()Ljava/util/Map<TK;TV;>;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()

  public abstract io.vertx.core.json.JsonObject bodyAsJsonObject();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.json.JsonArray bodyAsJsonArray();
    descriptor: ()Lio/vertx/core/json/JsonArray;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String subject();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String contentType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String contentEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long expiryTime();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long creationTime();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String groupId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.String replyToGroupId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long groupSequence();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.core.json.JsonObject applicationProperties();
    descriptor: ()Lio/vertx/core/json/JsonObject;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract org.apache.qpid.proton.message.Message unwrap();
    descriptor: ()Lorg/apache/qpid/proton/message/Message;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.GenIgnore()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        io.vertx.codegen.annotations.GenIgnore()

  public abstract io.vertx.amqp.AmqpMessage accepted();
    descriptor: ()Lio/vertx/amqp/AmqpMessage;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.amqp.AmqpMessage rejected();
    descriptor: ()Lio/vertx/amqp/AmqpMessage;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.amqp.AmqpMessage released();
    descriptor: ()Lio/vertx/amqp/AmqpMessage;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()

  public abstract io.vertx.amqp.AmqpMessage modified(boolean, boolean);
    descriptor: (ZZ)Lio/vertx/amqp/AmqpMessage;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
                   Name  Flags
      deliveryFailed     
      undeliverableHere  
}
SourceFile: "AmqpMessage.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()