public class org.springframework.web.servlet.handler.RequestMatchResult
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.handler.RequestMatchResult
  super_class: java.lang.Object
{
  private final org.springframework.web.util.pattern.PathPattern pathPattern;
    descriptor: Lorg/springframework/web/util/pattern/PathPattern;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final org.springframework.http.server.PathContainer lookupPathContainer;
    descriptor: Lorg/springframework/http/server/PathContainer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final java.lang.String pattern;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final java.lang.String lookupPath;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final org.springframework.util.PathMatcher pathMatcher;
    descriptor: Lorg/springframework/util/PathMatcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>(org.springframework.web.util.pattern.PathPattern, org.springframework.http.server.PathContainer);
    descriptor: (Lorg/springframework/web/util/pattern/PathPattern;Lorg/springframework/http/server/PathContainer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
        start local 1 // org.springframework.web.util.pattern.PathPattern pathPattern
        start local 2 // org.springframework.http.server.PathContainer lookupPath
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 1 /* pathPattern */
            ldc "PathPattern is required"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 62
            aload 1 /* pathPattern */
            ldc "PathContainer is required"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         3: .line 64
            aload 0 /* this */
            aconst_null
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pattern:Ljava/lang/String;
         4: .line 65
            aload 0 /* this */
            aconst_null
            putfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPath:Ljava/lang/String;
         5: .line 66
            aload 0 /* this */
            aconst_null
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pathMatcher:Lorg/springframework/util/PathMatcher;
         6: .line 68
            aload 0 /* this */
            aload 1 /* pathPattern */
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pathPattern:Lorg/springframework/web/util/pattern/PathPattern;
         7: .line 69
            aload 0 /* this */
            aload 2 /* lookupPath */
            putfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPathContainer:Lorg/springframework/http/server/PathContainer;
         8: .line 71
            return
        end local 2 // org.springframework.http.server.PathContainer lookupPath
        end local 1 // org.springframework.web.util.pattern.PathPattern pathPattern
        end local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/springframework/web/servlet/handler/RequestMatchResult;
            0    9     1  pathPattern  Lorg/springframework/web/util/pattern/PathPattern;
            0    9     2   lookupPath  Lorg/springframework/http/server/PathContainer;
    MethodParameters:
             Name  Flags
      pathPattern  
      lookupPath   

  public void <init>(java.lang.String, java.lang.String, org.springframework.util.PathMatcher);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lorg/springframework/util/PathMatcher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
        start local 1 // java.lang.String pattern
        start local 2 // java.lang.String lookupPath
        start local 3 // org.springframework.util.PathMatcher pathMatcher
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 80
            aload 1 /* pattern */
            ldc "'matchingPattern' is required"
            invokestatic org.springframework.util.Assert.hasText:(Ljava/lang/String;Ljava/lang/String;)V
         2: .line 81
            aload 2 /* lookupPath */
            ldc "'lookupPath' is required"
            invokestatic org.springframework.util.Assert.hasText:(Ljava/lang/String;Ljava/lang/String;)V
         3: .line 82
            aload 3 /* pathMatcher */
            ldc "PathMatcher is required"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         4: .line 84
            aload 0 /* this */
            aload 1 /* pattern */
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pattern:Ljava/lang/String;
         5: .line 85
            aload 0 /* this */
            aload 2 /* lookupPath */
            putfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPath:Ljava/lang/String;
         6: .line 86
            aload 0 /* this */
            aload 3 /* pathMatcher */
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pathMatcher:Lorg/springframework/util/PathMatcher;
         7: .line 88
            aload 0 /* this */
            aconst_null
            putfield org.springframework.web.servlet.handler.RequestMatchResult.pathPattern:Lorg/springframework/web/util/pattern/PathPattern;
         8: .line 89
            aload 0 /* this */
            aconst_null
            putfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPathContainer:Lorg/springframework/http/server/PathContainer;
         9: .line 90
            return
        end local 3 // org.springframework.util.PathMatcher pathMatcher
        end local 2 // java.lang.String lookupPath
        end local 1 // java.lang.String pattern
        end local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/springframework/web/servlet/handler/RequestMatchResult;
            0   10     1      pattern  Ljava/lang/String;
            0   10     2   lookupPath  Ljava/lang/String;
            0   10     3  pathMatcher  Lorg/springframework/util/PathMatcher;
    MethodParameters:
             Name  Flags
      pattern      
      lookupPath   
      pathMatcher  

  public java.util.Map<java.lang.String, java.lang.String> extractUriTemplateVariables();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
         0: .line 99
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.pathPattern:Lorg/springframework/web/util/pattern/PathPattern;
            ifnull 2
         1: .line 100
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.pathPattern:Lorg/springframework/web/util/pattern/PathPattern;
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPathContainer:Lorg/springframework/http/server/PathContainer;
            invokevirtual org.springframework.web.util.pattern.PathPattern.matchAndExtract:(Lorg/springframework/http/server/PathContainer;)Lorg/springframework/web/util/pattern/PathPattern$PathMatchInfo;
            invokevirtual org.springframework.web.util.pattern.PathPattern$PathMatchInfo.getUriVariables:()Ljava/util/Map;
            goto 3
         2: .line 101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.pathMatcher:Lorg/springframework/util/PathMatcher;
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.pattern:Ljava/lang/String;
            aload 0 /* this */
            getfield org.springframework.web.servlet.handler.RequestMatchResult.lookupPath:Ljava/lang/String;
            invokeinterface org.springframework.util.PathMatcher.extractUriTemplateVariables:(Ljava/lang/String;Ljava/lang/String;)Ljava/util/Map;
         3: .line 99
      StackMap locals:
      StackMap stack: java.util.Map
            areturn
        end local 0 // org.springframework.web.servlet.handler.RequestMatchResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/web/servlet/handler/RequestMatchResult;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
}
SourceFile: "RequestMatchResult.java"
InnerClasses:
  public PathMatchInfo = org.springframework.web.util.pattern.PathPattern$PathMatchInfo of org.springframework.web.util.pattern.PathPattern