Enum Alarm.Type

    • Enum Constant Detail

      • GNOCCHI_AGGREGATION_BY_METRICS_THRESHOLD

        public static final Alarm.Type GNOCCHI_AGGREGATION_BY_METRICS_THRESHOLD
      • COMPOSITE

        public static final Alarm.Type COMPOSITE
      • GNOCCHI_RESOURCES_THRESHOLD

        public static final Alarm.Type GNOCCHI_RESOURCES_THRESHOLD
      • GNOCCHI_AGGREGATION_BY_RESOURCES_THRESHOLD

        public static final Alarm.Type GNOCCHI_AGGREGATION_BY_RESOURCES_THRESHOLD
      • THRESHOLD

        public static final Alarm.Type THRESHOLD
      • COMBINATION

        public static final Alarm.Type COMBINATION
      • UNRECOGNIZED

        public static final Alarm.Type UNRECOGNIZED
    • Method Detail

      • values

        public static Alarm.Type[] 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 (Alarm.Type c : Alarm.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Alarm.Type 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
      • value

        public String value()