public static enum FileType.BUILDIN extends java.lang.Enum<FileType.BUILDIN>
Enum Constant and Description |
---|
ARCHIVE
Binary file type for archives such as zip and tar.gz.
|
BINARY
Ancestor of all binary file types.
|
DOCUMENT
File type for binary documents such as PDF, odf and docx.
|
FILE
The supertype of all file types.
|
SGML
SGML file types such as html.
|
SOURCE
Source code text files.
|
TABLE
Tabular text data such as tab and csv.
|
TEXT
Ancestor of all text file types.
|
XML
XML base type.
|
Modifier and Type | Method and Description |
---|---|
static FileType.BUILDIN |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileType.BUILDIN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileType.BUILDIN FILE
public static final FileType.BUILDIN BINARY
public static final FileType.BUILDIN ARCHIVE
public static final FileType.BUILDIN DOCUMENT
public static final FileType.BUILDIN TEXT
public static final FileType.BUILDIN SOURCE
public static final FileType.BUILDIN TABLE
public static final FileType.BUILDIN SGML
public static final FileType.BUILDIN XML
public static FileType.BUILDIN[] values()
for (FileType.BUILDIN c : FileType.BUILDIN.values()) System.out.println(c);
public static FileType.BUILDIN valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null