public enum FileChangeType extends java.lang.Enum<FileChangeType>
| Enum Constant and Description |
|---|
Changed
The file got changed.
|
Created
The file got created.
|
Deleted
The file got deleted.
|
| Modifier and Type | Method and Description |
|---|---|
static FileChangeType |
forValue(int value) |
int |
getValue() |
static FileChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileChangeType Created
public static final FileChangeType Changed
public static final FileChangeType Deleted
public static FileChangeType[] values()
for (FileChangeType c : FileChangeType.values()) System.out.println(c);
public static FileChangeType 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 nullpublic int getValue()
public static FileChangeType forValue(int value)