public final enum

MIMEType

extends Enum<E extends Enum<E>>
package org.andengine.util.mime;

/**
 * (c) 2010 Nicolas Gramlich 
 * (c) 2011 Zynga Inc.
 * 
 * @author Nicolas Gramlich
 * @since 14:58:20 - 10.01.2011
 */
public enum MIMEType {
	// ===========================================================
	// Elements
	// ===========================================================

	JPEG("image/jpeg"),
	GIF("image/gif"),
	PNG("image/png");

	// ===========================================================
	// Constants
	// ===========================================================

	// ===========================================================
	// Fields
	// ===========================================================
	
	private final String mTypeString;

	// ===========================================================
	// Constructors
	// ===========================================================

	private MIMEType(final String pTypeString) {
		this.mTypeString = pTypeString;
	}

	// ===========================================================
	// Getter & Setter
	// ===========================================================

	public String getTypeString() {
		return this.mTypeString;
	}

	// ===========================================================
	// Methods for/from SuperClass/Interfaces
	// ===========================================================

	// ===========================================================
	// Methods
	// ===========================================================

	// ===========================================================
	// Inner and Anonymous Classes
	// ===========================================================
}