public class io.vertx.ext.web.api.validation.impl.BooleanTypeValidator extends io.vertx.ext.web.api.validation.impl.SingleValueParameterTypeValidator<java.lang.Boolean>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.web.api.validation.impl.BooleanTypeValidator
  super_class: io.vertx.ext.web.api.validation.impl.SingleValueParameterTypeValidator
{
  public void <init>(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.validation.impl.BooleanTypeValidator this
        start local 1 // java.lang.Boolean defaultValue
         0: .line 12
            aload 0 /* this */
            aload 1 /* defaultValue */
            invokespecial io.vertx.ext.web.api.validation.impl.SingleValueParameterTypeValidator.<init>:(Ljava/lang/Object;)V
         1: .line 13
            return
        end local 1 // java.lang.Boolean defaultValue
        end local 0 // io.vertx.ext.web.api.validation.impl.BooleanTypeValidator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/ext/web/api/validation/impl/BooleanTypeValidator;
            0    2     1  defaultValue  Ljava/lang/Boolean;
    MethodParameters:
              Name  Flags
      defaultValue  

  public io.vertx.ext.web.api.RequestParameter isValidSingleParam(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/ext/web/api/RequestParameter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.web.api.validation.impl.BooleanTypeValidator this
        start local 1 // java.lang.String value
         0: .line 17
            aload 1 /* value */
            ldc "true"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 1
            aload 1 /* value */
            ldc "t"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 1
            aload 1 /* value */
            ldc "1"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 2
         1: .line 18
      StackMap locals:
      StackMap stack:
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokestatic io.vertx.ext.web.api.RequestParameter.create:(Ljava/lang/Object;)Lio/vertx/ext/web/api/RequestParameter;
            areturn
         2: .line 19
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            ldc "false"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 3
            aload 1 /* value */
            ldc "f"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 3
            aload 1 /* value */
            ldc "0"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 20
      StackMap locals:
      StackMap stack:
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokestatic io.vertx.ext.web.api.RequestParameter.create:(Ljava/lang/Object;)Lio/vertx/ext/web/api/RequestParameter;
            areturn
         4: .line 22
      StackMap locals:
      StackMap stack:
            aconst_null
            invokestatic io.vertx.ext.web.api.validation.ValidationException$ValidationExceptionFactory.generateNotMatchValidationException:(Ljava/lang/String;)Lio/vertx/ext/web/api/validation/ValidationException;
            athrow
        end local 1 // java.lang.String value
        end local 0 // io.vertx.ext.web.api.validation.impl.BooleanTypeValidator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/ext/web/api/validation/impl/BooleanTypeValidator;
            0    5     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  
}
Signature: Lio/vertx/ext/web/api/validation/impl/SingleValueParameterTypeValidator<Ljava/lang/Boolean;>;
SourceFile: "BooleanTypeValidator.java"
InnerClasses:
  public ValidationExceptionFactory = io.vertx.ext.web.api.validation.ValidationException$ValidationExceptionFactory of io.vertx.ext.web.api.validation.ValidationException