public enum MetricsType extends Enum<MetricsType>
Enum Constant and Description |
---|
DATAGRAM_SOCKET
Datagram socket metrics.
|
EVENT_BUS
Event bus metrics.
|
HTTP_CLIENT
Http client metrics.
|
HTTP_SERVER
Http server metrics.
|
NAMED_POOLS
Named pools metrics.
|
NET_CLIENT
Net client metrics.
|
NET_SERVER
Net server metrics.
|
VERTICLES
Verticle 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 final MetricsType VERTICLES
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 © 2018. All rights reserved.