public enum MetricsCategory extends Enum<MetricsCategory>
| Enum Constant and Description |
|---|
APPLICATION |
CONFIGCENTER |
METADATA |
QPS |
REGISTRY |
REQUESTS |
RT |
THREAD_POOL |
| Modifier and Type | Method and Description |
|---|---|
static MetricsCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetricsCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricsCategory RT
public static final MetricsCategory QPS
public static final MetricsCategory REQUESTS
public static final MetricsCategory APPLICATION
public static final MetricsCategory CONFIGCENTER
public static final MetricsCategory REGISTRY
public static final MetricsCategory METADATA
public static final MetricsCategory THREAD_POOL
public static MetricsCategory[] values()
for (MetricsCategory c : MetricsCategory.values()) System.out.println(c);
public static MetricsCategory valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2020 The Apache Software Foundation. All rights reserved.