Package org.wildfly.common.cpu
Enum CacheType
- All Implemented Interfaces:
Serializable,Comparable<CacheType>,java.lang.constant.Constable
Deprecated, for removal: This API element is subject to removal in a future version.
The type of cache.
- Author:
- David M. Lloyd
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Data cache.Deprecated, for removal: This API element is subject to removal in a future version.Instruction cache.Deprecated, for removal: This API element is subject to removal in a future version.Unified instruction/data cache.Deprecated, for removal: This API element is subject to removal in a future version.Unknown cache type. -
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.booleanDeprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.booleanDeprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.booleanDeprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.booleanisData()Deprecated, for removal: This API element is subject to removal in a future version.Determine if this cache line type holds data.static booleanDeprecated, for removal: This API element is subject to removal in a future version.Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.booleanDeprecated, for removal: This API element is subject to removal in a future version.Determine if this cache line type holds instructions.static CacheTypeDeprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name.static CacheType[]values()Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Deprecated, for removal: This API element is subject to removal in a future version.Unknown cache type. -
DATA
Deprecated, for removal: This API element is subject to removal in a future version.Data cache. -
INSTRUCTION
Deprecated, for removal: This API element is subject to removal in a future version.Instruction cache. -
UNIFIED
Deprecated, for removal: This API element is subject to removal in a future version.Unified instruction/data cache.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isInstruction
public boolean isInstruction()Deprecated, for removal: This API element is subject to removal in a future version.Determine if this cache line type holds instructions.- Returns:
trueif the cache line holds instructions,falseif it does not or it cannot be determined
-
isData
public boolean isData()Deprecated, for removal: This API element is subject to removal in a future version.Determine if this cache line type holds data.- Returns:
trueif the cache line holds data,falseif it does not or it cannot be determined
-
isFull
Deprecated, for removal: This API element is subject to removal in a future version.Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set- the set- Returns:
trueif the set is full,falseotherwise
-
in
Deprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Deprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Deprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instancev3- the third instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Deprecated, for removal: This API element is subject to removal in a future version.Determine whether this instance is equal to one of the given instances.- Parameters:
values- the possible values- Returns:
trueif one of the instances matches this one,falseotherwise
-
CacheTypeinstead.