public static enum CxxPreprocessables.IncludeType extends Enum<CxxPreprocessables.IncludeType>
Enum Constant and Description |
---|
LOCAL
Headers should be included with `-I`.
|
RAW
Headers are not added by buck
|
SYSTEM
Headers should be included with `-isystem`.
|
Modifier and Type | Method and Description |
---|---|
abstract Iterable<String> |
includeArgs(Preprocessor pp,
Iterable<String> includeRoots) |
static CxxPreprocessables.IncludeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CxxPreprocessables.IncludeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CxxPreprocessables.IncludeType LOCAL
public static final CxxPreprocessables.IncludeType SYSTEM
public static final CxxPreprocessables.IncludeType RAW
public static CxxPreprocessables.IncludeType[] values()
for (CxxPreprocessables.IncludeType c : CxxPreprocessables.IncludeType.values()) System.out.println(c);
public static CxxPreprocessables.IncludeType 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 nullpublic abstract Iterable<String> includeArgs(Preprocessor pp, Iterable<String> includeRoots)