Package org.mockserver.metrics
Enum Metrics.Name
- java.lang.Object
-
- java.lang.Enum<Metrics.Name>
-
- org.mockserver.metrics.Metrics.Name
-
- All Implemented Interfaces:
Serializable
,Comparable<Metrics.Name>
- Enclosing class:
- Metrics
public static enum Metrics.Name extends Enum<Metrics.Name>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Metrics.Name
valueOf(String name)
Returns the enum constant of this type with the specified name.static Metrics.Name[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPECTATION_NOT_MATCHED_COUNT
public static final Metrics.Name EXPECTATION_NOT_MATCHED_COUNT
-
RESPONSE_EXPECTATION_MATCHED_COUNT
public static final Metrics.Name RESPONSE_EXPECTATION_MATCHED_COUNT
-
FORWARD_EXPECTATION_MATCHED_COUNT
public static final Metrics.Name FORWARD_EXPECTATION_MATCHED_COUNT
-
ACTION_FORWARD_COUNT
public static final Metrics.Name ACTION_FORWARD_COUNT
-
ACTION_FORWARD_TEMPLATE_COUNT
public static final Metrics.Name ACTION_FORWARD_TEMPLATE_COUNT
-
ACTION_FORWARD_CLASS_CALLBACK_COUNT
public static final Metrics.Name ACTION_FORWARD_CLASS_CALLBACK_COUNT
-
ACTION_FORWARD_OBJECT_CALLBACK_COUNT
public static final Metrics.Name ACTION_FORWARD_OBJECT_CALLBACK_COUNT
-
ACTION_FORWARD_REPLACE_COUNT
public static final Metrics.Name ACTION_FORWARD_REPLACE_COUNT
-
ACTION_RESPONSE_COUNT
public static final Metrics.Name ACTION_RESPONSE_COUNT
-
ACTION_RESPONSE_TEMPLATE_COUNT
public static final Metrics.Name ACTION_RESPONSE_TEMPLATE_COUNT
-
ACTION_RESPONSE_CLASS_CALLBACK_COUNT
public static final Metrics.Name ACTION_RESPONSE_CLASS_CALLBACK_COUNT
-
ACTION_RESPONSE_OBJECT_CALLBACK_COUNT
public static final Metrics.Name ACTION_RESPONSE_OBJECT_CALLBACK_COUNT
-
ACTION_ERROR_COUNT
public static final Metrics.Name ACTION_ERROR_COUNT
-
WEBSOCKET_CALLBACK_CLIENT_COUNT
public static final Metrics.Name WEBSOCKET_CALLBACK_CLIENT_COUNT
-
WEBSOCKET_CALLBACK_RESPONSE_HANDLER_COUNT
public static final Metrics.Name WEBSOCKET_CALLBACK_RESPONSE_HANDLER_COUNT
-
WEBSOCKET_CALLBACK_FORWARD_HANDLER_COUNT
public static final Metrics.Name WEBSOCKET_CALLBACK_FORWARD_HANDLER_COUNT
-
-
Method Detail
-
values
public static Metrics.Name[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Metrics.Name c : Metrics.Name.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Metrics.Name valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-