< prev index next >

src/java.management/share/classes/sun/management/counter/Counter.java

Print this page




  46      * Returns the Variability for this performance counter
  47      */
  48     public Variability getVariability();
  49 
  50     /**
  51      * Returns true if this performance counter is a vector
  52      */
  53     public boolean isVector();
  54 
  55     /**
  56      * Returns the length of the vector
  57      */
  58     public int getVectorLength();
  59 
  60     /**
  61      * Returns an Object that encapsulates the data value of this counter
  62      */
  63     public Object getValue();
  64 
  65     /**
  66      * Returns <tt>true</tt> if this counter is an internal counter.
  67      */
  68     public boolean isInternal();
  69 
  70     /**
  71      * Return the flags associated with the counter.
  72      */
  73     public int getFlags();
  74 }


  46      * Returns the Variability for this performance counter
  47      */
  48     public Variability getVariability();
  49 
  50     /**
  51      * Returns true if this performance counter is a vector
  52      */
  53     public boolean isVector();
  54 
  55     /**
  56      * Returns the length of the vector
  57      */
  58     public int getVectorLength();
  59 
  60     /**
  61      * Returns an Object that encapsulates the data value of this counter
  62      */
  63     public Object getValue();
  64 
  65     /**
  66      * Returns {@code true} if this counter is an internal counter.
  67      */
  68     public boolean isInternal();
  69 
  70     /**
  71      * Return the flags associated with the counter.
  72      */
  73     public int getFlags();
  74 }
< prev index next >