public enum NotificationType extends Enum<NotificationType>
| Enum Constant and Description |
|---|
ALERT
The user was alerted as part of an action
|
ANSWER
A question was answered
|
BATCH_COMPLETE
The batch was completed
|
BATCH_PROCESS
The batch is processing
|
BULLETIN
A news item was received from Hoist
|
COMMENT
A comment was added to an object
|
CREATION
An object was created
|
DELETE
An object was deleted
|
FILE
A file was attached to an object
|
MEMBER_ENDED_ADMIN
The user left the space
|
MEMBER_ENDED_USER
The admin ended the users space membership
|
MEMBER_REFERENCE_ADD
The user was added as a reference on an item
|
MEMBER_REFERENCE_REMOVE
The user was removed as a reference on an item
|
MESSAGE
A message was received from a conversation
|
RATING
A rating was added to an object
|
REMINDER
A reminder
|
ROLE_CHANGE
The role of the user was changed on a space
|
RSVP
An item was created on an app with RSVP enabled
|
SPACE_ACCEPT
The user accepted an invitation to join the space
|
SPACE_DECLINE
The user declined an invitation to join the space
|
SPACE_INVITE
The user was invited to join a space
|
UPDATE
An object was updated
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationType |
getByName(String value) |
String |
toString() |
static NotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType ALERT
public static final NotificationType COMMENT
public static final NotificationType FILE
public static final NotificationType MEMBER_REFERENCE_ADD
public static final NotificationType MEMBER_REFERENCE_REMOVE
public static final NotificationType RATING
public static final NotificationType SPACE_INVITE
public static final NotificationType SPACE_ACCEPT
public static final NotificationType SPACE_DECLINE
public static final NotificationType MEMBER_ENDED_USER
public static final NotificationType MEMBER_ENDED_ADMIN
public static final NotificationType ROLE_CHANGE
public static final NotificationType CREATION
public static final NotificationType UPDATE
public static final NotificationType DELETE
public static final NotificationType MESSAGE
public static final NotificationType BULLETIN
public static final NotificationType RSVP
public static final NotificationType ANSWER
public static final NotificationType REMINDER
public static final NotificationType BATCH_PROCESS
public static final NotificationType BATCH_COMPLETE
public static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);
public static NotificationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<NotificationType>public static NotificationType getByName(String value)
Copyright © 2014. All Rights Reserved.