public static enum FileAnalyzer.Genre extends java.lang.Enum<FileAnalyzer.Genre>
Modifier and Type | Method and Description |
---|---|
static FileAnalyzer.Genre |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileAnalyzer.Genre[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileAnalyzer.Genre PLAIN
public static final FileAnalyzer.Genre XREFABLE
public static final FileAnalyzer.Genre IMAGE
public static final FileAnalyzer.Genre DATA
public static final FileAnalyzer.Genre HTML
public static FileAnalyzer.Genre[] values()
for (FileAnalyzer.Genre c : FileAnalyzer.Genre.values()) System.out.println(c);
public static FileAnalyzer.Genre 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