|
ddiff Version 1.0.0 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Analyzer.Option>
com.ehsbe.ddiff.Analyzer.Option
public static enum Analyzer.Option extends Enum<Analyzer.Option>
Options, which have an influence, how directories are scanned and the output gets formatted.
Enum Constant and Description |
---|
COMPACT
dont show the content of missing directories |
EXCLUDE_HIDDEN
ignore hidden dir entries |
FILE_CONTENT
compare the name of file entries as well as their content. |
FOLLOW_SYMLINKS
follow symlinks |
ONE_DIFF_WILDCARD
if the diff between to dirs is just one single entry, list the the entry on the missing side, a '-' as marker and "dir/**" on the other side |
PARSEABLE
produce parsable output by ommiting header and padding with spaces |
SHOW_IDENTICAL
list identical entries as well, i.e. not just the diffs |
SYMLINK_CONTENT
compare the name of symlink entries as well as their content. |
Modifier and Type | Method and Description |
---|---|
static Analyzer.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Analyzer.Option[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Analyzer.Option COMPACT
public static final Analyzer.Option SHOW_IDENTICAL
public static final Analyzer.Option ONE_DIFF_WILDCARD
public static final Analyzer.Option PARSEABLE
public static final Analyzer.Option FILE_CONTENT
public static final Analyzer.Option SYMLINK_CONTENT
public static final Analyzer.Option EXCLUDE_HIDDEN
public static final Analyzer.Option FOLLOW_SYMLINKS
Method Detail |
---|
public static Analyzer.Option[] values()
for (Analyzer.Option c : Analyzer.Option.values()) System.out.println(c);
public static Analyzer.Option 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
|
ddiff Version 1.0.0 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |