Enum NotificationType

    • Enum Constant Detail

      • ALERT

        public static final NotificationType ALERT
        The user was alerted as part of an action
      • COMMENT

        public static final NotificationType COMMENT
        A comment was added to an object
      • FILE

        public static final NotificationType FILE
        A file was attached to an object
      • MEMBER_REFERENCE_ADD

        public static final NotificationType MEMBER_REFERENCE_ADD
        The user was added as a reference on an item
      • MEMBER_REFERENCE_REMOVE

        public static final NotificationType MEMBER_REFERENCE_REMOVE
        The user was removed as a reference on an item
      • RATING

        public static final NotificationType RATING
        A rating was added to an object
      • SPACE_INVITE

        public static final NotificationType SPACE_INVITE
        The user was invited to join a space
      • SPACE_ACCEPT

        public static final NotificationType SPACE_ACCEPT
        The user accepted an invitation to join the space
      • SPACE_DECLINE

        public static final NotificationType SPACE_DECLINE
        The user declined an invitation to join the space
      • MEMBER_ENDED_USER

        public static final NotificationType MEMBER_ENDED_USER
        The admin ended the users space membership
      • MEMBER_ENDED_ADMIN

        public static final NotificationType MEMBER_ENDED_ADMIN
        The user left the space
      • ROLE_CHANGE

        public static final NotificationType ROLE_CHANGE
        The role of the user was changed on a space
      • MESSAGE

        public static final NotificationType MESSAGE
        A message was received from a conversation
      • BULLETIN

        public static final NotificationType BULLETIN
        A news item was received from Hoist
      • RSVP

        public static final NotificationType RSVP
        An item was created on an app with RSVP enabled
      • BATCH_PROCESS

        public static final NotificationType BATCH_PROCESS
        The batch is processing
      • BATCH_COMPLETE

        public static final NotificationType BATCH_COMPLETE
        The batch was completed
    • Method Detail

      • values

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

        public static NotificationType 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