Package org.wildfly.common.cpu
Enum CacheType
- java.lang.Object
-
- java.lang.Enum<CacheType>
-
- org.wildfly.common.cpu.CacheType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CacheType>
public enum CacheType extends java.lang.Enum<CacheType>
The type of cache.- Author:
- David M. Lloyd
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATAData cache.INSTRUCTIONInstruction cache.UNIFIEDUnified instruction/data cache.UNKNOWNUnknown cache type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanin(CacheType v1)Determine whether this instance is equal to one of the given instances.booleanin(CacheType... values)Determine whether this instance is equal to one of the given instances.booleanin(CacheType v1, CacheType v2)Determine whether this instance is equal to one of the given instances.booleanin(CacheType v1, CacheType v2, CacheType v3)Determine whether this instance is equal to one of the given instances.booleanisData()Determine if this cache line type holds data.static booleanisFull(java.util.EnumSet<CacheType> set)Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.booleanisInstruction()Determine if this cache line type holds instructions.static CacheTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CacheType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static CacheType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CacheType c : CacheType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CacheType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
isInstruction
public boolean isInstruction()
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()
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
public static boolean isFull(java.util.EnumSet<CacheType> set)
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
public boolean in(CacheType v1)
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
public boolean in(CacheType v1, CacheType v2)
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
public boolean in(CacheType v1, CacheType v2, CacheType v3)
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
public boolean in(CacheType... values)
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
-
-