public enum FileDeletionOption extends Enum<FileDeletionOption>
| Enum Constant and Description | 
|---|
| ALLAttempts to delete all files from the printer. | 
| CLONEABLEWill attempt to delete only the file types which are copied at profile/backup creation time. | 
| NONEWill 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
				© 2015 ZIH Corp. All Rights Reserved.