public static enum DeleteOrphanFiles.PrefixMismatchMode extends java.lang.Enum<DeleteOrphanFiles.PrefixMismatchMode>
| Modifier and Type | Method and Description | 
|---|---|
| static DeleteOrphanFiles.PrefixMismatchMode | fromString(java.lang.String modeAsString) | 
| static DeleteOrphanFiles.PrefixMismatchMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static DeleteOrphanFiles.PrefixMismatchMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DeleteOrphanFiles.PrefixMismatchMode ERROR
public static final DeleteOrphanFiles.PrefixMismatchMode IGNORE
public static final DeleteOrphanFiles.PrefixMismatchMode DELETE
public static DeleteOrphanFiles.PrefixMismatchMode[] values()
for (DeleteOrphanFiles.PrefixMismatchMode c : DeleteOrphanFiles.PrefixMismatchMode.values()) System.out.println(c);
public static DeleteOrphanFiles.PrefixMismatchMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DeleteOrphanFiles.PrefixMismatchMode fromString(java.lang.String modeAsString)