|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileType>
org.deepfs.fsml.FileType
public enum FileType
Available file types.
Enum Constant Summary | |
---|---|
ARCHIVE
Archive resource (e.g. |
|
AUDIO
Audio resource (e.g. |
|
BINARY
Binary resource. |
|
CALENDAR
Calendar resource (e.g. |
|
CONTACT
Contact resource (e.g. |
|
DOCUMENT
Document resource (e.g. |
|
MAP
Map resource (e.g. |
|
MESSAGE
Message resource (e.g. email). |
|
PICTURE
Picture resource (e.g. |
|
PRESENTATION
Presentation resource (e.g. |
|
SCRIPT
Script. |
|
SOURCE_CODE
Source code. |
|
TEXT
Text(-based) resource (e.g. plain text file). |
|
UNKNOWN_TYPE
Unknown resource type. |
|
VIDEO
Video resource (e.g. |
|
WEBSITE
Website. |
|
XML
XML(-based) resource. |
Method Summary | |
---|---|
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 |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FileType ARCHIVE
public static final FileType AUDIO
public static final FileType BINARY
public static final FileType CALENDAR
public static final FileType CONTACT
public static final FileType DOCUMENT
public static final FileType MAP
public static final FileType MESSAGE
public static final FileType PICTURE
public static final FileType PRESENTATION
public static final FileType SCRIPT
public static final FileType SOURCE_CODE
public static final FileType TEXT
public static final FileType UNKNOWN_TYPE
public static final FileType VIDEO
public static final FileType WEBSITE
public static final FileType XML
Method Detail |
---|
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<FileType>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |