|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FileSystemEvent>
com.springsource.util.io.FileSystemEvent
public enum FileSystemEvent
Describes a monitorable event on a file system object.
Concurrent Semantics
Enum Constant Summary | |
---|---|
CREATED
Signals that a new file system object was created. |
|
DELETED
Signals that a file system object was deleted. |
|
INITIAL
Signals the initial observation of a file system object. |
|
MODIFIED
Signals that a file system object was modified. |
Method Summary | |
---|---|
static FileSystemEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FileSystemEvent[] |
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 FileSystemEvent INITIAL
public static final FileSystemEvent CREATED
public static final FileSystemEvent DELETED
public static final FileSystemEvent MODIFIED
Method Detail |
---|
public static FileSystemEvent[] values()
for (FileSystemEvent c : FileSystemEvent.values()) System.out.println(c);
public static FileSystemEvent 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 |