Enum CacheType

java.lang.Object
java.lang.Enum<CacheType>
org.wildfly.common.cpu.CacheType
All Implemented Interfaces:
Serializable, Comparable<CacheType>, java.lang.constant.Constable

@Deprecated(forRemoval=true) public enum CacheType extends Enum<CacheType>
Deprecated, for removal: This API element is subject to removal in a future version.
Use CacheType instead.
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 Constants
    Enum Constant
    Description
    Deprecated, 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 Type
    Method
    Description
    boolean
    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.
    boolean
    in(CacheType... values)
    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.
    boolean
    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.
    boolean
    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.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Determine if this cache line type holds data.
    static boolean
    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.
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    Determine if this cache line type holds instructions.
    static CacheType
    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.
    static CacheType[]
    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.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • UNKNOWN

      public static final CacheType UNKNOWN
      Deprecated, for removal: This API element is subject to removal in a future version.
      Unknown cache type.
    • DATA

      public static final CacheType DATA
      Deprecated, for removal: This API element is subject to removal in a future version.
      Data cache.
    • INSTRUCTION

      public static final CacheType INSTRUCTION
      Deprecated, for removal: This API element is subject to removal in a future version.
      Instruction cache.
    • UNIFIED

      public static final CacheType UNIFIED
      Deprecated, for removal: This API element is subject to removal in a future version.
      Unified instruction/data cache.
  • Method Details

    • values

      public 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.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CacheType valueOf(String name)
      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 name
      NullPointerException - 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:
      true if the cache line holds instructions, false if 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:
      true if the cache line holds data, false if it does not or it cannot be determined
    • isFull

      public static boolean isFull(EnumSet<CacheType> set)
      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:
      true if the set is full, false otherwise
    • in

      public boolean in(CacheType v1)
      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:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(CacheType v1, CacheType v2)
      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
      v2 - the second instance
      Returns:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(CacheType v1, CacheType v2, CacheType v3)
      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
      v2 - the second instance
      v3 - the third instance
      Returns:
      true if one of the instances matches this one, false otherwise
    • in

      public boolean in(CacheType... values)
      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:
      true if one of the instances matches this one, false otherwise