SupportedFileFormat.java :  » Music » yoyoplayer » com » hadeslee » audiotag » audio » Java Open Source

Java Open Source » Music » yoyoplayer 
yoyoplayer » com » hadeslee » audiotag » audio » SupportedFileFormat.java
package com.hadeslee.audiotag.audio;

/**
 * Files formats currently supported by Library
 */
public enum SupportedFileFormat
{
    OGG("ogg"),
    MP3("mp3"),
    FLAC("flac"),
    MP4("mp4"),
    M4A("m4a"),
    M4P("m4p");

    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.