Serializable, Comparable<DiffConfig.RenameDetectionType>public static enum DiffConfig.RenameDetectionType extends Enum<DiffConfig.RenameDetectionType>
diff.renames.| Enum Constant | Description |
|---|---|
COPY |
Copies should be detected too.
|
FALSE |
Rename detection is disabled.
|
TRUE |
Rename detection is enabled.
|
| Modifier and Type | Method | Description |
|---|---|---|
static DiffConfig.RenameDetectionType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static DiffConfig.RenameDetectionType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiffConfig.RenameDetectionType FALSE
public static final DiffConfig.RenameDetectionType TRUE
public static final DiffConfig.RenameDetectionType COPY
public static DiffConfig.RenameDetectionType[] values()
for (DiffConfig.RenameDetectionType c : DiffConfig.RenameDetectionType.values()) System.out.println(c);
public static DiffConfig.RenameDetectionType 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 © 2018. All rights reserved.