public enum EFileIOOperation extends Enum<EFileIOOperation>
Enum Constant and Description |
---|
COPY_DIR_RECURSIVE |
COPY_FILE |
CREATE_DIR |
CREATE_DIR_RECURSIVE |
DELETE_DIR |
DELETE_DIR_RECURSIVE |
DELETE_FILE |
RENAME_DIR |
RENAME_FILE |
Modifier and Type | Method and Description |
---|---|
int |
getParamCount() |
static EFileIOOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EFileIOOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFileIOOperation COPY_DIR_RECURSIVE
public static final EFileIOOperation COPY_FILE
public static final EFileIOOperation CREATE_DIR
public static final EFileIOOperation CREATE_DIR_RECURSIVE
public static final EFileIOOperation DELETE_DIR
public static final EFileIOOperation DELETE_DIR_RECURSIVE
public static final EFileIOOperation DELETE_FILE
public static final EFileIOOperation RENAME_DIR
public static final EFileIOOperation RENAME_FILE
public static EFileIOOperation[] values()
for (EFileIOOperation c : EFileIOOperation.values()) System.out.println(c);
public static EFileIOOperation 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 null@Nonnegative public int getParamCount()
Copyright © 2014–2019 Philip Helger. All rights reserved.