public enum FileDeletionOption extends Enum<FileDeletionOption>
Enum Constant and Description |
---|
ALL
Attempts to delete all files from the printer.
|
CLONEABLE
Will attempt to delete only the file types which are copied at profile/backup creation time.
|
NONE
Will not attempt to delete any files.
|
Modifier and Type | Method and Description |
---|---|
static FileDeletionOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileDeletionOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileDeletionOption ALL
public static final FileDeletionOption CLONEABLE
public static final FileDeletionOption NONE
public static FileDeletionOption[] values()
for (FileDeletionOption c : FileDeletionOption.values()) System.out.println(c);
public static FileDeletionOption 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
© 2016 ZIH Corp. All Rights Reserved.