public final enum

MetricType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.springframework.jmx.support.MetricType

Class Overview

Represents how the measurement values of a ManagedMetric will change over time

Summary

Enum Values
MetricType  COUNTER  The measurement values will always increase  
MetricType  GAUGE  The measurement values may go up or down over time  
Public Methods
static MetricType valueOf(String name)
final static MetricType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final MetricType COUNTER

The measurement values will always increase

public static final MetricType GAUGE

The measurement values may go up or down over time

Public Methods

public static MetricType valueOf (String name)

public static final MetricType[] values ()