public static enum Analyzer.Option extends Enum<Analyzer.Option>
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.
|
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
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 nullCreated by Jens Elkner