public enum LexFileType extends java.lang.Enum<LexFileType>
LexURIFile.
Used as the return value for the call to
LexURIFile.getType()
| Enum Constant and Description |
|---|
DATABASE |
FILESYSTEM |
NONE |
PIPE |
QUEUE |
| Modifier and Type | Method and Description |
|---|---|
static LexFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LexFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LexFileType DATABASE
public static final LexFileType FILESYSTEM
public static final LexFileType PIPE
public static final LexFileType QUEUE
public static final LexFileType NONE
public static LexFileType[] values()
for (LexFileType c : LexFileType.values()) System.out.println(c);
public static LexFileType 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