class org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction extends org.springframework.web.servlet.function.RouterFunctions$AbstractRouterFunction<org.springframework.web.servlet.function.ServerResponse>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction
  super_class: org.springframework.web.servlet.function.RouterFunctions$AbstractRouterFunction
{
  private final java.util.List<org.springframework.web.servlet.function.RouterFunction<org.springframework.web.servlet.function.ServerResponse>> routerFunctions;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/springframework/web/servlet/function/RouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;>;

  public void <init>(java.util.List<org.springframework.web.servlet.function.RouterFunction<org.springframework.web.servlet.function.ServerResponse>>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
        start local 1 // java.util.List routerFunctions
         0: .line 384
            aload 0 /* this */
            invokespecial org.springframework.web.servlet.function.RouterFunctions$AbstractRouterFunction.<init>:()V
         1: .line 385
            aload 1 /* routerFunctions */
            ldc "RouterFunctions must not be empty"
            invokestatic org.springframework.util.Assert.notEmpty:(Ljava/util/Collection;Ljava/lang/String;)V
         2: .line 386
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 1 /* routerFunctions */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            putfield org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction.routerFunctions:Ljava/util/List;
         3: .line 387
            return
        end local 1 // java.util.List routerFunctions
        end local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/springframework/web/servlet/function/RouterFunctionBuilder$BuiltRouterFunction;
            0    4     1  routerFunctions  Ljava/util/List<Lorg/springframework/web/servlet/function/RouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;>;
    Signature: (Ljava/util/List<Lorg/springframework/web/servlet/function/RouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;>;)V
    MethodParameters:
                 Name  Flags
      routerFunctions  

  public java.util.Optional<org.springframework.web.servlet.function.HandlerFunction<org.springframework.web.servlet.function.ServerResponse>> route(org.springframework.web.servlet.function.ServerRequest);
    descriptor: (Lorg/springframework/web/servlet/function/ServerRequest;)Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
        start local 1 // org.springframework.web.servlet.function.ServerRequest request
         0: .line 391
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction.routerFunctions:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction org.springframework.web.servlet.function.ServerRequest top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.web.servlet.function.RouterFunction
            astore 2 /* routerFunction */
        start local 2 // org.springframework.web.servlet.function.RouterFunction routerFunction
         2: .line 392
            aload 2 /* routerFunction */
            aload 1 /* request */
            invokeinterface org.springframework.web.servlet.function.RouterFunction.route:(Lorg/springframework/web/servlet/function/ServerRequest;)Ljava/util/Optional;
            astore 4 /* result */
        start local 4 // java.util.Optional result
         3: .line 393
            aload 4 /* result */
            invokevirtual java.util.Optional.isPresent:()Z
            ifeq 5
         4: .line 394
            aload 4 /* result */
            areturn
        end local 4 // java.util.Optional result
        end local 2 // org.springframework.web.servlet.function.RouterFunction routerFunction
         5: .line 391
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         6: .line 397
            invokestatic java.util.Optional.empty:()Ljava/util/Optional;
            areturn
        end local 1 // org.springframework.web.servlet.function.ServerRequest request
        end local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/springframework/web/servlet/function/RouterFunctionBuilder$BuiltRouterFunction;
            0    7     1         request  Lorg/springframework/web/servlet/function/ServerRequest;
            2    5     2  routerFunction  Lorg/springframework/web/servlet/function/RouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;
            3    5     4          result  Ljava/util/Optional<Lorg/springframework/web/servlet/function/HandlerFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;>;
    Signature: (Lorg/springframework/web/servlet/function/ServerRequest;)Ljava/util/Optional<Lorg/springframework/web/servlet/function/HandlerFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;>;
    MethodParameters:
         Name  Flags
      request  

  public void accept(org.springframework.web.servlet.function.RouterFunctions$Visitor);
    descriptor: (Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
        start local 1 // org.springframework.web.servlet.function.RouterFunctions$Visitor visitor
         0: .line 402
            aload 0 /* this */
            getfield org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction.routerFunctions:Ljava/util/List;
            aload 1 /* visitor */
            invokedynamic accept(Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;)Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  org/springframework/web/servlet/function/RouterFunctionBuilder$BuiltRouterFunction.lambda$0(Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;Lorg/springframework/web/servlet/function/RouterFunction;)V (6)
                  (Lorg/springframework/web/servlet/function/RouterFunction;)V
            invokeinterface java.util.List.forEach:(Ljava/util/function/Consumer;)V
         1: .line 403
            return
        end local 1 // org.springframework.web.servlet.function.RouterFunctions$Visitor visitor
        end local 0 // org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/springframework/web/servlet/function/RouterFunctionBuilder$BuiltRouterFunction;
            0    2     1  visitor  Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;
    MethodParameters:
         Name  Flags
      visitor  

  private static void lambda$0(org.springframework.web.servlet.function.RouterFunctions$Visitor, org.springframework.web.servlet.function.RouterFunction);
    descriptor: (Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;Lorg/springframework/web/servlet/function/RouterFunction;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // org.springframework.web.servlet.function.RouterFunction routerFunction
         0: .line 402
            aload 1 /* routerFunction */
            aload 0
            invokeinterface org.springframework.web.servlet.function.RouterFunction.accept:(Lorg/springframework/web/servlet/function/RouterFunctions$Visitor;)V
            return
        end local 1 // org.springframework.web.servlet.function.RouterFunction routerFunction
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     1  routerFunction  Lorg/springframework/web/servlet/function/RouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;
}
Signature: Lorg/springframework/web/servlet/function/RouterFunctions$AbstractRouterFunction<Lorg/springframework/web/servlet/function/ServerResponse;>;
SourceFile: "RouterFunctionBuilder.java"
NestHost: org.springframework.web.servlet.function.RouterFunctionBuilder
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  private BuiltRouterFunction = org.springframework.web.servlet.function.RouterFunctionBuilder$BuiltRouterFunction of org.springframework.web.servlet.function.RouterFunctionBuilder
  abstract AbstractRouterFunction = org.springframework.web.servlet.function.RouterFunctions$AbstractRouterFunction of org.springframework.web.servlet.function.RouterFunctions
  public abstract Visitor = org.springframework.web.servlet.function.RouterFunctions$Visitor of org.springframework.web.servlet.function.RouterFunctions