public enum AdmExtracterStrategyOptions extends Enum<AdmExtracterStrategyOptions>
Enum Constant and Description |
---|
backup
Do a back-up of the files That have already been extracted and do a new
extract
|
reprocess
Override the last extracted files
|
skip
Does not re extract the Adm files if they've already been extracted
|
Modifier and Type | Method and Description |
---|---|
static AdmExtracterStrategyOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdmExtracterStrategyOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdmExtracterStrategyOptions skip
public static final AdmExtracterStrategyOptions backup
public static final AdmExtracterStrategyOptions reprocess
public static AdmExtracterStrategyOptions[] values()
for (AdmExtracterStrategyOptions c : AdmExtracterStrategyOptions.values()) System.out.println(c);
public static AdmExtracterStrategyOptions 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 © 2015. All rights reserved.