Notice: Over the next few months, we're reorganizing the App Engine documentation site to make it easier to find content and better align with the rest of Google Cloud products. The same content will be available, but the navigation will now match the rest of the Cloud products. If you have feedback or questions as you navigate the site, click Send Feedback.

ParsedFileName

com.google.appengine.api.files.dev

Class ParsedFileName

  • java.lang.Object
    • com.google.appengine.api.files.dev.ParsedFileName


  • public class ParsedFileName
    extends java.lang.Object
    This class parses a URL-encoded compound file name into its component parts. The parts are fileSystem and namePart. For example the string "/blobstore/new" gets parsed into:
    1. fileSystem = blobstore
    2. namePart = new
    • Constructor Summary

      Constructors 
      Constructor and Description
      ParsedFileName(java.lang.String decoratedName) 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getFileSystem() 
      java.lang.String getFullPath() 
      java.lang.String getNamePart() 
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ParsedFileName

        public ParsedFileName(java.lang.String decoratedName)
    • Method Detail

      • getFileSystem

        public java.lang.String getFileSystem()
        Returns:
        the fileSystem.
      • getNamePart

        public java.lang.String getNamePart()
        Returns:
        the namePart.
      • getFullPath

        public java.lang.String getFullPath()
        Returns:
        the original compound file name.