/**@class android.media.MediaFile
@extends java.lang.Object

 MediaScanner helper class.
 <p>
 This heavily relies upon extension to MIME type mappings which are maintained
 in {@link MimeUtils}, to ensure consistency across the OS.
 <p>
 When adding a new file type, first add the MIME type mapping to
 {@link MimeUtils}, and then add the MTP format mapping here.

 @hide
*/
var MediaFile = {

/**
@deprecated file types no longer exist
*/
isAudioFileType : function(  ) {},

/**
@deprecated file types no longer exist
*/
isVideoFileType : function(  ) {},

/**
@deprecated file types no longer exist
*/
isImageFileType : function(  ) {},

/**
@deprecated file types no longer exist
*/
isPlayListFileType : function(  ) {},

/**
@deprecated file types no longer exist
*/
isDrmFileType : function(  ) {},

/**
@deprecated file types no longer exist
*/
getFileType : function(  ) {},

/**
*/
isExifMimeType : function(  ) {},

/**
*/
isAudioMimeType : function(  ) {},

/**
*/
isVideoMimeType : function(  ) {},

/**
*/
isImageMimeType : function(  ) {},

/**
*/
isPlayListMimeType : function(  ) {},

/**
*/
isDrmMimeType : function(  ) {},

/**
*/
getFileTitle : function(  ) {},

/**
*/
getFileExtension : function(  ) {},

/**
@deprecated file types no longer exist
*/
getFileTypeForMimeType : function(  ) {},

/**Find the best MIME type for the given item. Prefers mappings from file
 extensions, since they're more accurate than format codes.
*/
getMimeType : function(  ) {},

/**
*/
getMimeTypeForFile : function(  ) {},

/**
*/
getMimeTypeForFormatCode : function(  ) {},

/**Find the best MTP format code mapping for the given item. Prefers
 mappings from MIME types, since they're more accurate than file
 extensions.
*/
getFormatCode : function(  ) {},

/**
*/
getFormatCodeForFile : function(  ) {},

/**
*/
getFormatCodeForMimeType : function(  ) {},


};