public static enum Files.FileNotify extends Enum<Files.FileNotify>
Files.inotify(java.io.File, FileNotify, int) utility method.| Enum Constant and Description |
|---|
CREATE
File was created.
|
DELETE
File was deleted.
|
NONE
Neutral value.
|
| Modifier and Type | Method and Description |
|---|---|
static Files.FileNotify |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Files.FileNotify[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Files.FileNotify NONE
public static final Files.FileNotify DELETE
public static final Files.FileNotify CREATE
public static Files.FileNotify[] values()
for (Files.FileNotify c : Files.FileNotify.values()) System.out.println(c);
public static Files.FileNotify valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.