public static enum AMD64.CPUFeature extends Enum<AMD64.CPUFeature>
Enum Constant and Description |
---|
AES |
AMD_3DNOW_PREFETCH |
AVX |
AVX2 |
BMI1 |
ERMS |
LZCNT |
POPCNT |
SSE |
SSE2 |
SSE3 |
SSE4_1 |
SSE4_2 |
SSE4a |
SSSE3 |
Modifier and Type | Method and Description |
---|---|
static AMD64.CPUFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMD64.CPUFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMD64.CPUFeature SSE
public static final AMD64.CPUFeature SSE2
public static final AMD64.CPUFeature SSE3
public static final AMD64.CPUFeature SSE4a
public static final AMD64.CPUFeature SSE4_1
public static final AMD64.CPUFeature SSE4_2
public static final AMD64.CPUFeature SSSE3
public static final AMD64.CPUFeature POPCNT
public static final AMD64.CPUFeature LZCNT
public static final AMD64.CPUFeature AVX
public static final AMD64.CPUFeature AVX2
public static final AMD64.CPUFeature ERMS
public static final AMD64.CPUFeature AMD_3DNOW_PREFETCH
public static final AMD64.CPUFeature AES
public static final AMD64.CPUFeature BMI1
public static AMD64.CPUFeature[] values()
for (AMD64.CPUFeature c : AMD64.CPUFeature.values()) System.out.println(c);
public static AMD64.CPUFeature 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