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:
-
fileSystem = blobstore
-
namePart = new
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ParsedFileName
public ParsedFileName(java.lang.String decoratedName)
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.