public enum StandardDeleteOption extends Enum<StandardDeleteOption> implements DeleteOption
Enum Constant and Description |
---|
NON_EMPTY_DIRECTORIES |
Modifier and Type | Method and Description |
---|---|
static StandardDeleteOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardDeleteOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardDeleteOption NON_EMPTY_DIRECTORIES
public static StandardDeleteOption[] values()
for (StandardDeleteOption c : StandardDeleteOption.values()) System.out.println(c);
public static StandardDeleteOption 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 © 2012–2019 JBoss by Red Hat. All rights reserved.