public static enum DirWatcher.Event extends java.lang.Enum<DirWatcher.Event>
| Modifier and Type | Method and Description |
|---|---|
static DirWatcher.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirWatcher.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirWatcher.Event CREATED
public static final DirWatcher.Event DELETED
public static final DirWatcher.Event MODIFIED
public static DirWatcher.Event[] values()
for (DirWatcher.Event c : DirWatcher.Event.values()) System.out.println(c);
public static DirWatcher.Event 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 nullCopyright © 2003-2013 Jodd Team