Project

General

Profile

Download (674 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.common.media;
10

    
11

    
12

    
13
/**
14
 * @author a.kohlbecker
15
 \* @since 27.11.2009
16
 *
17
 */
18
public enum MimeType {
19
	TIFF ("image/tiff"),
20
	JPEG ("image/jpeg"),
21
	IMAGE ("image"),
22
	UNKNOWN ("unknown"), 
23
	PNG ("image/png");
24
		
25
	private final String mimeType;
26
	
27
	MimeType(String mimeType){
28
		this.mimeType = mimeType;
29
	}
30
	public String getMimeType(){
31
		return mimeType;
32
	}
33
}
(4-4/4)