public interface org.springframework.http.server.PathContainer
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.springframework.http.server.PathContainer
  super_class: java.lang.Object
{
  public abstract java.lang.String value();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.util.List<org.springframework.http.server.PathContainer$Element> elements();
    descriptor: ()Ljava/util/List;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/List<Lorg/springframework/http/server/PathContainer$Element;>;

  public org.springframework.http.server.PathContainer subPath(int);
    descriptor: (I)Lorg/springframework/http/server/PathContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.http.server.PathContainer this
        start local 1 // int index
         0: .line 53
            aload 0 /* this */
            iload 1 /* index */
            aload 0 /* this */
            invokeinterface org.springframework.http.server.PathContainer.elements:()Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokeinterface org.springframework.http.server.PathContainer.subPath:(II)Lorg/springframework/http/server/PathContainer;
            areturn
        end local 1 // int index
        end local 0 // org.springframework.http.server.PathContainer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/http/server/PathContainer;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public org.springframework.http.server.PathContainer subPath(int, int);
    descriptor: (II)Lorg/springframework/http/server/PathContainer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.http.server.PathContainer this
        start local 1 // int startIndex
        start local 2 // int endIndex
         0: .line 64
            aload 0 /* this */
            iload 1 /* startIndex */
            iload 2 /* endIndex */
            invokestatic org.springframework.http.server.DefaultPathContainer.subPath:(Lorg/springframework/http/server/PathContainer;II)Lorg/springframework/http/server/PathContainer;
            areturn
        end local 2 // int endIndex
        end local 1 // int startIndex
        end local 0 // org.springframework.http.server.PathContainer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/springframework/http/server/PathContainer;
            0    1     1  startIndex  I
            0    1     2    endIndex  I
    MethodParameters:
            Name  Flags
      startIndex  
      endIndex    

  public static org.springframework.http.server.PathContainer parsePath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/http/server/PathContainer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String path
         0: .line 75
            aload 0 /* path */
            getstatic org.springframework.http.server.PathContainer$Options.HTTP_PATH:Lorg/springframework/http/server/PathContainer$Options;
            invokestatic org.springframework.http.server.DefaultPathContainer.createFromUrlPath:(Ljava/lang/String;Lorg/springframework/http/server/PathContainer$Options;)Lorg/springframework/http/server/PathContainer;
            areturn
        end local 0 // java.lang.String path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  path  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      path  

  public static org.springframework.http.server.PathContainer parsePath(java.lang.String, org.springframework.http.server.PathContainer$Options);
    descriptor: (Ljava/lang/String;Lorg/springframework/http/server/PathContainer$Options;)Lorg/springframework/http/server/PathContainer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.String path
        start local 1 // org.springframework.http.server.PathContainer$Options options
         0: .line 87
            aload 0 /* path */
            aload 1 /* options */
            invokestatic org.springframework.http.server.DefaultPathContainer.createFromUrlPath:(Ljava/lang/String;Lorg/springframework/http/server/PathContainer$Options;)Lorg/springframework/http/server/PathContainer;
            areturn
        end local 1 // org.springframework.http.server.PathContainer$Options options
        end local 0 // java.lang.String path
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     path  Ljava/lang/String;
            0    1     1  options  Lorg/springframework/http/server/PathContainer$Options;
    MethodParameters:
         Name  Flags
      path     
      options  
}
SourceFile: "PathContainer.java"
NestMembers:
  org.springframework.http.server.PathContainer$Element  org.springframework.http.server.PathContainer$Options  org.springframework.http.server.PathContainer$PathSegment  org.springframework.http.server.PathContainer$Separator
InnerClasses:
  public abstract Element = org.springframework.http.server.PathContainer$Element of org.springframework.http.server.PathContainer
  public Options = org.springframework.http.server.PathContainer$Options of org.springframework.http.server.PathContainer
  public abstract PathSegment = org.springframework.http.server.PathContainer$PathSegment of org.springframework.http.server.PathContainer
  public abstract Separator = org.springframework.http.server.PathContainer$Separator of org.springframework.http.server.PathContainer