FileDocCategorySizeDatePackage
SupportedFileFormat.javaAPI DocJaudiotagger 2.0.4530Wed Mar 30 16:11:54 BST 2011org.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;
    }
}