public enum ToolType extends Enum<ToolType>
Enum Constant and Description |
---|
AR |
AS |
ASM |
ASMPP |
ASPP |
CC |
CPP |
CUDA |
CUDAPP |
CXX |
CXXPP |
HIP |
HIPPP |
LD |
RANLIB |
Modifier and Type | Field and Description |
---|---|
String |
flagsKey
Buck config key used to specify tool flags.
|
String |
key
Buck config key used to specify tool path.
|
Modifier and Type | Method and Description |
---|---|
static ToolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolType AR
public static final ToolType AS
public static final ToolType ASM
public static final ToolType ASMPP
public static final ToolType ASPP
public static final ToolType CC
public static final ToolType CPP
public static final ToolType CUDA
public static final ToolType CUDAPP
public static final ToolType CXX
public static final ToolType CXXPP
public static final ToolType HIP
public static final ToolType HIPPP
public static final ToolType LD
public static final ToolType RANLIB
public final String key
public final String flagsKey
public static ToolType[] values()
for (ToolType c : ToolType.values()) System.out.println(c);
public static ToolType 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