Enum MIME
- java.lang.Object
- 
- java.lang.Enum<MIME>
- 
- com.saperion.connector.renditions.mime.MIME
 
 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMime()static MIMEvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MIME[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
APP_WORDpublic static final MIME APP_WORD 
 - 
APP_VND_WORDpublic static final MIME APP_VND_WORD 
 - 
APP_VND_WORDMpublic static final MIME APP_VND_WORDM 
 - 
APP_RTFpublic static final MIME APP_RTF 
 - 
APP_PPTpublic static final MIME APP_PPT 
 - 
APP_VND_PPTpublic static final MIME APP_VND_PPT 
 - 
APP_VND_PPTXpublic static final MIME APP_VND_PPTX 
 - 
APP_VND_XLSpublic static final MIME APP_VND_XLS 
 - 
APP_XLSpublic static final MIME APP_XLS 
 - 
APP_VND_XLSXpublic static final MIME APP_VND_XLSX 
 - 
TEXT_RTFpublic static final MIME TEXT_RTF 
 - 
APP_VND_OPEN_OFFICE_TEXTpublic static final MIME APP_VND_OPEN_OFFICE_TEXT 
 - 
APP_VND_OPEN_OFFICE_TEXT_TEMPLATEpublic static final MIME APP_VND_OPEN_OFFICE_TEXT_TEMPLATE 
 - 
APP_PDFpublic static final MIME APP_PDF 
 - 
APP_EMLpublic static final MIME APP_EML 
 - 
APP_OUTLOOKpublic static final MIME APP_OUTLOOK 
 - 
APP_VND_OUTLOOKpublic static final MIME APP_VND_OUTLOOK 
 - 
APP_VISIOpublic static final MIME APP_VISIO 
 - 
APP_VND_VISIOpublic static final MIME APP_VND_VISIO 
 - 
TEXT_PLAINpublic static final MIME TEXT_PLAIN 
 - 
IMAGE_TIFFpublic static final MIME IMAGE_TIFF 
 - 
IMAGE_GIFpublic static final MIME IMAGE_GIF 
 - 
IMAGE_BMPpublic static final MIME IMAGE_BMP 
 - 
IMAGE_PNGpublic static final MIME IMAGE_PNG 
 - 
IMAGE_JPEGpublic static final MIME IMAGE_JPEG 
 - 
TEXT_CSVpublic static final MIME TEXT_CSV 
 
- 
 - 
Method Detail- 
valuespublic static MIME[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MIME c : MIME.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static MIME valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getMimepublic java.lang.String getMime() 
 
- 
 
-