com.groupdocs.conversion.domain
Enum FileType

java.lang.Object
  extended by java.lang.Enum<FileType>
      extended by com.groupdocs.conversion.domain.FileType
All Implemented Interfaces:
Serializable, Comparable<FileType>

public enum FileType
extends Enum<FileType>

Supported file types

Author:
Alex Bobkov

Enum Constant Summary
BMP
           
CSV
           
DIRECTORY
           
DOC
           
DOCM
           
DOCX
           
DOT
           
DOTM
           
DOTX
           
EML
           
EMLX
           
EPUB
           
GIF
           
HTM
           
HTML
           
ICO
           
JPEG
           
JPG
           
MHT
           
MHTML
           
MPP
           
MPT
           
MSG
           
ODS
           
ODT
           
OST
           
OTT
           
PCL
           
PDF
           
PNG
           
PPT
           
PPTX
           
PROJECT
           
PST
           
RTF
           
TIF
           
TIFF
           
TNEF
           
TXT
           
UML
           
UNKNOWN
           
VDW
           
VDX
           
VSD
           
VSDM
           
VSDX
           
VSS
           
VST
           
VSX
           
VTX
           
XHTML
           
XLS
           
XLSB
           
XLSM
           
XLSX
           
XLTM
           
XLTX
           
XML
           
XPS
           
 
Method Summary
static FileType getValue(String key)
           
 String toString()
           
static FileType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FileType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DOC

public static final FileType DOC

DOCX

public static final FileType DOCX

DOT

public static final FileType DOT

DOCM

public static final FileType DOCM

DOTM

public static final FileType DOTM

DOTX

public static final FileType DOTX

TXT

public static final FileType TXT

ODT

public static final FileType ODT

OTT

public static final FileType OTT

RTF

public static final FileType RTF

XML

public static final FileType XML

HTML

public static final FileType HTML

HTM

public static final FileType HTM

XHTML

public static final FileType XHTML

MHTML

public static final FileType MHTML

CSV

public static final FileType CSV

PDF

public static final FileType PDF

PCL

public static final FileType PCL

XPS

public static final FileType XPS

EPUB

public static final FileType EPUB

PPT

public static final FileType PPT

PPTX

public static final FileType PPTX

XLS

public static final FileType XLS

XLSX

public static final FileType XLSX

XLSM

public static final FileType XLSM

XLTX

public static final FileType XLTX

XLTM

public static final FileType XLTM

XLSB

public static final FileType XLSB

ODS

public static final FileType ODS

PNG

public static final FileType PNG

JPG

public static final FileType JPG

GIF

public static final FileType GIF

JPEG

public static final FileType JPEG

BMP

public static final FileType BMP

TIFF

public static final FileType TIFF

TIF

public static final FileType TIF

ICO

public static final FileType ICO

MSG

public static final FileType MSG

MHT

public static final FileType MHT

EML

public static final FileType EML

OST

public static final FileType OST

PST

public static final FileType PST

EMLX

public static final FileType EMLX

TNEF

public static final FileType TNEF

VSD

public static final FileType VSD

VSS

public static final FileType VSS

VTX

public static final FileType VTX

VDX

public static final FileType VDX

VDW

public static final FileType VDW

VST

public static final FileType VST

VSX

public static final FileType VSX

VSDX

public static final FileType VSDX

VSDM

public static final FileType VSDM

UML

public static final FileType UML

PROJECT

public static final FileType PROJECT

MPP

public static final FileType MPP

MPT

public static final FileType MPT

DIRECTORY

public static final FileType DIRECTORY

UNKNOWN

public static final FileType UNKNOWN
Method Detail

values

public static FileType[] 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 (FileType c : FileType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FileType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<FileType>

getValue

public static FileType getValue(String key)


Copyright © 2014. All rights reserved.