/**@class android.os.StatFs
@extends java.lang.Object

 Retrieve overall information about the space on a filesystem. This is a
 wrapper for Unix statvfs().
*/
var StatFs = {

/**Perform a restat of the file system referenced by this object. This is
 the same as re-constructing the object with the same file system path,
 and the new stat values are available upon return.
*/
restat : function(  ) {},

/**
@deprecated Use {@link #getBlockSizeLong()} instead.
*/
getBlockSize : function(  ) {},

/**The size, in bytes, of a block on the file system. This corresponds to
 the Unix {@code statvfs.f_bsize} field.
*/
getBlockSizeLong : function(  ) {},

/**
@deprecated Use {@link #getBlockCountLong()} instead.
*/
getBlockCount : function(  ) {},

/**The total number of blocks on the file system. This corresponds to the
 Unix {@code statvfs.f_blocks} field.
*/
getBlockCountLong : function(  ) {},

/**
@deprecated Use {@link #getFreeBlocksLong()} instead.
*/
getFreeBlocks : function(  ) {},

/**The total number of blocks that are free on the file system, including
 reserved blocks (that are not available to normal applications). This
 corresponds to the Unix {@code statvfs.f_bfree} field. Most applications
 will want to use {@link #getAvailableBlocks}() instead.
*/
getFreeBlocksLong : function(  ) {},

/**The number of bytes that are free on the file system, including reserved
 blocks (that are not available to normal applications). Most applications
 will want to use {@link #getAvailableBytes}() instead.
*/
getFreeBytes : function(  ) {},

/**
@deprecated Use {@link #getAvailableBlocksLong()} instead.
*/
getAvailableBlocks : function(  ) {},

/**The number of blocks that are free on the file system and available to
 applications. This corresponds to the Unix {@code statvfs.f_bavail} field.
*/
getAvailableBlocksLong : function(  ) {},

/**The number of bytes that are free on the file system and available to
 applications.
*/
getAvailableBytes : function(  ) {},

/**The total number of bytes supported by the file system.
*/
getTotalBytes : function(  ) {},


};