Enum NotificationMethod

  • All Implemented Interfaces:
    Serializable, Comparable<NotificationMethod>

    public enum NotificationMethod
    extends Enum<NotificationMethod>
    Type representing the notification method for an event subscription. Currently only SMTP is supported by the API In the future support for SNMP notifications may be added.
    • Enum Constant Detail

      • SMTP

        public static final NotificationMethod SMTP
        Notification by e-mail. Event-subscriptions with SMTP notification method will contain an email address in the address field.
      • SNMP

        public static final NotificationMethod SNMP
        Notification by SNMP. Event-subscriptions with SNMP notification method will contain an SNMP address in the address field.
    • Method Detail

      • values

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

        public static NotificationMethod 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()