public static enum FileChange.Type extends java.lang.Enum<FileChange.Type>
FileChange.getChangeType()| Enum Constant and Description |
|---|
ADDED
The file or directory was added.
|
BUFFER_MODIFIED
The buffer for a file has been modified in memory.
|
MODIFIED
The file or directory was modified.
|
REMOVED
The file or directory was removed.
|
| Modifier and Type | Method and Description |
|---|---|
static FileChange.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileChange.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final FileChange.Type ADDED
public static final FileChange.Type REMOVED
public static final FileChange.Type MODIFIED
public static final FileChange.Type BUFFER_MODIFIED
public static FileChange.Type[] values()
for (FileChange.Type c : FileChange.Type.values())
System.out.println(c);
public static FileChange.Type 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