public class org.springframework.boot.web.server.Http2
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.boot.web.server.Http2
  super_class: java.lang.Object
{
  private boolean enabled;
    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 // org.springframework.boot.web.server.Http2 this
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            iconst_0
            putfield org.springframework.boot.web.server.Http2.enabled:Z
         2: .line 25
            return
        end local 0 // org.springframework.boot.web.server.Http2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/boot/web/server/Http2;

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.boot.web.server.Http2 this
         0: .line 34
            aload 0 /* this */
            getfield org.springframework.boot.web.server.Http2.enabled:Z
            ireturn
        end local 0 // org.springframework.boot.web.server.Http2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/web/server/Http2;

  public void setEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.web.server.Http2 this
        start local 1 // boolean enabled
         0: .line 38
            aload 0 /* this */
            iload 1 /* enabled */
            putfield org.springframework.boot.web.server.Http2.enabled:Z
         1: .line 39
            return
        end local 1 // boolean enabled
        end local 0 // org.springframework.boot.web.server.Http2 this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/boot/web/server/Http2;
            0    2     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  
}
SourceFile: "Http2.java"