class org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate implements org.springframework.web.servlet.function.RequestPredicate
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate
  super_class: java.lang.Object
{
  private final java.util.Set<org.springframework.http.HttpMethod> httpMethods;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/springframework/http/HttpMethod;>;

  public void <init>(org.springframework.http.HttpMethod);
    descriptor: (Lorg/springframework/http/HttpMethod;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
        start local 1 // org.springframework.http.HttpMethod httpMethod
         0: .line 435
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 436
            aload 1 /* httpMethod */
            ldc "HttpMethod must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 437
            aload 0 /* this */
            aload 1 /* httpMethod */
            invokestatic java.util.EnumSet.of:(Ljava/lang/Enum;)Ljava/util/EnumSet;
            putfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
         3: .line 438
            return
        end local 1 // org.springframework.http.HttpMethod httpMethod
        end local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/springframework/web/servlet/function/RequestPredicates$HttpMethodPredicate;
            0    4     1  httpMethod  Lorg/springframework/http/HttpMethod;
    MethodParameters:
            Name  Flags
      httpMethod  

  public void <init>(org.springframework.http.HttpMethod[]);
    descriptor: ([Lorg/springframework/http/HttpMethod;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
        start local 1 // org.springframework.http.HttpMethod[] httpMethods
         0: .line 440
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 441
            aload 1 /* httpMethods */
            ldc "HttpMethods must not be empty"
            invokestatic org.springframework.util.Assert.notEmpty:([Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 442
            aload 0 /* this */
            aload 1 /* httpMethods */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic java.util.EnumSet.copyOf:(Ljava/util/Collection;)Ljava/util/EnumSet;
            putfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
         3: .line 443
            return
        end local 1 // org.springframework.http.HttpMethod[] httpMethods
        end local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/web/servlet/function/RequestPredicates$HttpMethodPredicate;
            0    4     1  httpMethods  [Lorg/springframework/http/HttpMethod;
    MethodParameters:
             Name  Flags
      httpMethods  

  public boolean test(org.springframework.web.servlet.function.ServerRequest);
    descriptor: (Lorg/springframework/web/servlet/function/ServerRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
        start local 1 // org.springframework.web.servlet.function.ServerRequest request
         0: .line 447
            aload 1 /* request */
            invokestatic org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.method:(Lorg/springframework/web/servlet/function/ServerRequest;)Lorg/springframework/http/HttpMethod;
            astore 2 /* method */
        start local 2 // org.springframework.http.HttpMethod method
         1: .line 448
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            aload 2 /* method */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            istore 3 /* match */
        start local 3 // boolean match
         2: .line 449
            ldc "Method"
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            aload 2 /* method */
            iload 3 /* match */
            invokestatic org.springframework.web.servlet.function.RequestPredicates.traceMatch:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Z)V
         3: .line 450
            iload 3 /* match */
            ireturn
        end local 3 // boolean match
        end local 2 // org.springframework.http.HttpMethod method
        end local 1 // org.springframework.web.servlet.function.ServerRequest request
        end local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/springframework/web/servlet/function/RequestPredicates$HttpMethodPredicate;
            0    4     1  request  Lorg/springframework/web/servlet/function/ServerRequest;
            1    4     2   method  Lorg/springframework/http/HttpMethod;
            2    4     3    match  Z
    MethodParameters:
         Name  Flags
      request  

  private static org.springframework.http.HttpMethod method(org.springframework.web.servlet.function.ServerRequest);
    descriptor: (Lorg/springframework/web/servlet/function/ServerRequest;)Lorg/springframework/http/HttpMethod;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
         0: .line 455
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method servletRequest() from the type ServerRequest refers to the missing type HttpServletRequest\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()
    MethodParameters:
         Name  Flags
      request  

  public void accept(org.springframework.web.servlet.function.RequestPredicates$Visitor);
    descriptor: (Lorg/springframework/web/servlet/function/RequestPredicates$Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
        start local 1 // org.springframework.web.servlet.function.RequestPredicates$Visitor visitor
         0: .line 467
            aload 1 /* visitor */
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            invokeinterface org.springframework.web.servlet.function.RequestPredicates$Visitor.method:(Ljava/util/Set;)V
         1: .line 468
            return
        end local 1 // org.springframework.web.servlet.function.RequestPredicates$Visitor visitor
        end local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/function/RequestPredicates$HttpMethodPredicate;
            0    2     1  visitor  Lorg/springframework/web/servlet/function/RequestPredicates$Visitor;
    MethodParameters:
         Name  Flags
      visitor  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
         0: .line 472
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            iconst_1
            if_icmpne 2
         1: .line 473
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.http.HttpMethod
            invokevirtual org.springframework.http.HttpMethod.toString:()Ljava/lang/String;
            areturn
         2: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate.httpMethods:Ljava/util/Set;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/web/servlet/function/RequestPredicates$HttpMethodPredicate;
}
SourceFile: "RequestPredicates.java"
NestHost: org.springframework.web.servlet.function.RequestPredicates
InnerClasses:
  private HttpMethodPredicate = org.springframework.web.servlet.function.RequestPredicates$HttpMethodPredicate of org.springframework.web.servlet.function.RequestPredicates
  public abstract Visitor = org.springframework.web.servlet.function.RequestPredicates$Visitor of org.springframework.web.servlet.function.RequestPredicates