public enum MetricsType extends Enum<MetricsType>
Enum Constant and Description |
---|
DATAGRAM_SOCKET
Type for datagram socket metrics
|
EVENT_BUS
Type for event bus metrics
|
HTTP_CLIENT
Type for http client metrics
|
HTTP_SERVER
Type for http server metrics
|
NAMED_POOLS
Named pools metrics
|
NET_CLIENT
Type for net client metrics
|
NET_SERVER
Type for net server metrics
|
Modifier and Type | Method and Description |
---|---|
static MetricsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetricsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricsType NET_SERVER
public static final MetricsType NET_CLIENT
public static final MetricsType HTTP_SERVER
public static final MetricsType HTTP_CLIENT
public static final MetricsType DATAGRAM_SOCKET
public static final MetricsType EVENT_BUS
public static final MetricsType NAMED_POOLS
public static MetricsType[] values()
for (MetricsType c : MetricsType.values()) System.out.println(c);
public static MetricsType 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 © 2016. All rights reserved.