Enum Metrics.Name

    • 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 name
        NullPointerException - if the argument is null