public enum FileOperationType extends java.lang.Enum<FileOperationType>
| Modifier and Type | Method and Description |
|---|---|
static FileOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileOperationType CREATE
public static final FileOperationType UPDATE
public static final FileOperationType RENAME
public static final FileOperationType DELETE
public static FileOperationType[] values()
for (FileOperationType c : FileOperationType.values()) System.out.println(c);
public static FileOperationType 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