|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileUtil.Location>
quickfix.FileUtil.Location
public static enum FileUtil.Location
Enum Constant Summary | |
---|---|
CLASS_RESOURCE
Load a class resource |
|
CLASSLOADER_RESOURCE
Load a resource from the classpath |
|
CONTEXT_RESOURCE
|
|
FILESYSTEM
Load from the filesystem. |
|
URL
Load a resource identified by an URI |
Method Summary | |
---|---|
static FileUtil.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FileUtil.Location[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FileUtil.Location FILESYSTEM
public static final FileUtil.Location CONTEXT_RESOURCE
public static final FileUtil.Location CLASS_RESOURCE
public static final FileUtil.Location CLASSLOADER_RESOURCE
public static final FileUtil.Location URL
Method Detail |
---|
public static FileUtil.Location[] values()
for (FileUtil.Location c : FileUtil.Location.values()) System.out.println(c);
public static FileUtil.Location 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |