public static enum CxxToolProvider.Type extends Enum<CxxToolProvider.Type>
Enum Constant and Description |
---|
CLANG |
CLANG_CL |
CLANG_WINDOWS |
GCC |
WINDOWS |
WINDOWS_ML64 |
Modifier and Type | Method and Description |
---|---|
static CxxToolProvider.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CxxToolProvider.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CxxToolProvider.Type CLANG
public static final CxxToolProvider.Type CLANG_CL
public static final CxxToolProvider.Type CLANG_WINDOWS
public static final CxxToolProvider.Type GCC
public static final CxxToolProvider.Type WINDOWS
public static final CxxToolProvider.Type WINDOWS_ML64
public static CxxToolProvider.Type[] values()
for (CxxToolProvider.Type c : CxxToolProvider.Type.values()) System.out.println(c);
public static CxxToolProvider.Type 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