Interface IStatElement<V>

All Superinterfaces:
Serializable
All Known Implementing Classes:
StatElement

public interface IStatElement<V> extends Serializable
IAuxiliaryCacheStats will hold these IStatElements.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the data, ex. for hit count you would get a value for some number.
    Get the name of the stat element, ex.
    void
    setData(V data)
    Set the data for this element.
    void
     
  • Method Details

    • getName

      Get the name of the stat element, ex. HitCount

      Returns:
      the stat element name
    • setName

      void setName(String name)
      Parameters:
      name -
    • getData

      Get the data, ex. for hit count you would get a value for some number.

      Returns:
      data
    • setData

      void setData(V data)
      Set the data for this element.

      Parameters:
      data -