public enum DependencyTrackingMode extends Enum<DependencyTrackingMode>
Enum Constant and Description |
---|
MAKEFILE
MAKEFILE corresponds to `gcc -MD -MF depfile ...` on *nix
|
NONE
Some compilers - like ml64 - do not produce information about included files
|
SHOW_HEADERS
SHOW_HEADERS corresponds to `clang/gcc -H ...` on *nix
|
SHOW_INCLUDES
SHOW_INCLUDES corresponds to `cl.exe /showIncludes ...` on windows
|
Modifier and Type | Method and Description |
---|---|
static DependencyTrackingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependencyTrackingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyTrackingMode MAKEFILE
public static final DependencyTrackingMode SHOW_HEADERS
public static final DependencyTrackingMode SHOW_INCLUDES
public static final DependencyTrackingMode NONE
public static DependencyTrackingMode[] values()
for (DependencyTrackingMode c : DependencyTrackingMode.values()) System.out.println(c);
public static DependencyTrackingMode 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