public class org.springframework.web.util.pattern.PathPatternParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.util.pattern.PathPatternParser
  super_class: java.lang.Object
{
  private boolean matchOptionalTrailingSeparator;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean caseSensitive;
    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.web.util.pattern.PathPatternParser this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            iconst_1
            putfield org.springframework.web.util.pattern.PathPatternParser.matchOptionalTrailingSeparator:Z
         2: .line 37
            aload 0 /* this */
            iconst_1
            putfield org.springframework.web.util.pattern.PathPatternParser.caseSensitive:Z
         3: .line 33
            return
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/springframework/web/util/pattern/PathPatternParser;

  public void setMatchOptionalTrailingSeparator(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
        start local 1 // boolean matchOptionalTrailingSeparator
         0: .line 52
            aload 0 /* this */
            iload 1 /* matchOptionalTrailingSeparator */
            putfield org.springframework.web.util.pattern.PathPatternParser.matchOptionalTrailingSeparator:Z
         1: .line 53
            return
        end local 1 // boolean matchOptionalTrailingSeparator
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    2     0                            this  Lorg/springframework/web/util/pattern/PathPatternParser;
            0    2     1  matchOptionalTrailingSeparator  Z
    MethodParameters:
                                Name  Flags
      matchOptionalTrailingSeparator  

  public boolean isMatchOptionalTrailingSeparator();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
         0: .line 59
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.PathPatternParser.matchOptionalTrailingSeparator:Z
            ireturn
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/util/pattern/PathPatternParser;

  public void setCaseSensitive(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
        start local 1 // boolean caseSensitive
         0: .line 67
            aload 0 /* this */
            iload 1 /* caseSensitive */
            putfield org.springframework.web.util.pattern.PathPatternParser.caseSensitive:Z
         1: .line 68
            return
        end local 1 // boolean caseSensitive
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/springframework/web/util/pattern/PathPatternParser;
            0    2     1  caseSensitive  Z
    MethodParameters:
               Name  Flags
      caseSensitive  

  public boolean isCaseSensitive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
         0: .line 74
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.PathPatternParser.caseSensitive:Z
            ireturn
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/util/pattern/PathPatternParser;

  char getSeparator();
    descriptor: ()C
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
         0: .line 85
            bipush 47
            ireturn
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/util/pattern/PathPatternParser;

  public org.springframework.web.util.pattern.PathPattern parse(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/web/util/pattern/PathPattern;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.util.pattern.PathPatternParser this
        start local 1 // java.lang.String pathPattern
         0: .line 100
            new org.springframework.web.util.pattern.InternalPathPatternParser
            dup
            aload 0 /* this */
            invokespecial org.springframework.web.util.pattern.InternalPathPatternParser.<init>:(Lorg/springframework/web/util/pattern/PathPatternParser;)V
            aload 1 /* pathPattern */
            invokevirtual org.springframework.web.util.pattern.InternalPathPatternParser.parse:(Ljava/lang/String;)Lorg/springframework/web/util/pattern/PathPattern;
            areturn
        end local 1 // java.lang.String pathPattern
        end local 0 // org.springframework.web.util.pattern.PathPatternParser this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/springframework/web/util/pattern/PathPatternParser;
            0    1     1  pathPattern  Ljava/lang/String;
    Exceptions:
      throws org.springframework.web.util.pattern.PatternParseException
    MethodParameters:
             Name  Flags
      pathPattern  
}
SourceFile: "PathPatternParser.java"