com.google.appengine.api.files
Class FileStat
- java.lang.Object
-
- com.google.appengine.api.files.FileStat
-
Deprecated.
@Deprecated public final class FileStat extends java.lang.ObjectAFileStatcontains information about a single file.
-
-
Constructor Summary
Constructors Constructor and Description FileStat()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)Deprecated.java.lang.LonggetCtime()Deprecated.This field is never set under current implementation.java.lang.StringgetFilename()Deprecated.java.lang.LonggetLength()Deprecated.java.lang.LonggetMtime()Deprecated.This field is never set under current implementation.inthashCode()Deprecated.booleanisFinalized()Deprecated.voidsetCtime(long ctime)Deprecated.voidsetFilename(java.lang.String filename)Deprecated.voidsetFinalized(boolean finalized)Deprecated.voidsetLength(long length)Deprecated.voidsetMtime(long mtime)Deprecated.java.lang.StringtoString()Deprecated.
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
setFilename
public void setFilename(java.lang.String filename)
Deprecated.- Parameters:
filename- the uploaded filename of the file.
-
setFinalized
public void setFinalized(boolean finalized)
Deprecated.- Parameters:
finalized- whether the file is finalized.
-
setLength
public void setLength(long length)
Deprecated.- Parameters:
length- the number of bytes of the file.
-
setCtime
public void setCtime(long ctime)
Deprecated.- Parameters:
ctime- creation time.
-
setMtime
public void setMtime(long mtime)
Deprecated.- Parameters:
mtime- modification time.
-
getFilename
public java.lang.String getFilename()
Deprecated.- Returns:
- the filename.
-
isFinalized
public boolean isFinalized()
Deprecated.- Returns:
- whether or not the file is finalized
-
getLength
public java.lang.Long getLength()
Deprecated.- Returns:
- the length.
nullif not set.
-
getCtime
public java.lang.Long getCtime()
Deprecated.This field is never set under current implementation.- Returns:
- the ctime.
nullif not set.
-
getMtime
public java.lang.Long getMtime()
Deprecated.This field is never set under current implementation.- Returns:
- the mtime.
nullif not set.
-
-