SupportedFileFormat.java :  » Mp3 » needletagger » org » jaudiotagger » audio » Android Open Source

Android Open Source » Mp3 » needletagger 
needletagger » org » jaudiotagger » audio » SupportedFileFormat.java
package org.jaudiotagger.audio;

/**
 * Files formats currently supported by Library
 */
public enum SupportedFileFormat
{
    OGG("ogg"),
    MP3("mp3"),
    FLAC("flac"),
    MP4("mp4"),
    M4A("m4a"),
    M4P("m4p"),
    WMA("wma"),
    WAV("wav"),
    RA("ra"),
    RM("rm"),
    M4B("m4b");

    private String filesuffix;

    SupportedFileFormat(String filesuffix)
    {
        this.filesuffix = filesuffix;
    }

    public String getFilesuffix()
    {
        return filesuffix;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.