Enum PushNotificationsType
- java.lang.Object
-
- java.lang.Enum<PushNotificationsType>
-
- com.blackberry.workspaces.sdk.api.enums.PushNotificationsType
-
- All Implemented Interfaces:
Serializable
,Comparable<PushNotificationsType>
public enum PushNotificationsType extends Enum<PushNotificationsType>
Created by sbenhayun on 3/13/2017.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PushNotificationsType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PushNotificationsType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENTS_MENTIONED
public static final PushNotificationsType COMMENTS_MENTIONED
-
COMMENTS_REPLIED
public static final PushNotificationsType COMMENTS_REPLIED
-
SHARED_WORKSPACE
public static final PushNotificationsType SHARED_WORKSPACE
-
SHARED_FOLDER
public static final PushNotificationsType SHARED_FOLDER
-
RECEIVED_FILE
public static final PushNotificationsType RECEIVED_FILE
-
SHARED_ANNOTATIONS
public static final PushNotificationsType SHARED_ANNOTATIONS
-
READ_CONFIRMATION
public static final PushNotificationsType READ_CONFIRMATION
-
READ_CONFIRMATION_MULTI
public static final PushNotificationsType READ_CONFIRMATION_MULTI
-
RECEIVED_FILE_MULTI
public static final PushNotificationsType RECEIVED_FILE_MULTI
-
SHARED_FILE
public static final PushNotificationsType SHARED_FILE
-
SHARED_FILE_MULTI
public static final PushNotificationsType SHARED_FILE_MULTI
-
SEND_WORKSPACE_MESSAGE
public static final PushNotificationsType SEND_WORKSPACE_MESSAGE
-
SEND_DOCUMENT_MESSAGE
public static final PushNotificationsType SEND_DOCUMENT_MESSAGE
-
SEND_FOLDER_MESSAGE
public static final PushNotificationsType SEND_FOLDER_MESSAGE
-
UNLOCKED_DOCUMENT_BY_TIMEOUT
public static final PushNotificationsType UNLOCKED_DOCUMENT_BY_TIMEOUT
-
UNLOCKED_DOCUMENT_BY_ANOTHER_USER
public static final PushNotificationsType UNLOCKED_DOCUMENT_BY_ANOTHER_USER
-
SHARED_FILE_WITH_READ_CONFIRMATION
public static final PushNotificationsType SHARED_FILE_WITH_READ_CONFIRMATION
-
SHARED_FILE_MULTI_WITH_READ_CONFIRMATION
public static final PushNotificationsType SHARED_FILE_MULTI_WITH_READ_CONFIRMATION
-
UPDATE_FILE
public static final PushNotificationsType UPDATE_FILE
-
UPDATE_FILE_WITH_READ_CONFIRMATION
public static final PushNotificationsType UPDATE_FILE_WITH_READ_CONFIRMATION
-
RECEIVED_FILE_WITH_READ_CONFIRMATION
public static final PushNotificationsType RECEIVED_FILE_WITH_READ_CONFIRMATION
-
RECEIVED_FILE_MULTI_WITH_READ_CONFIRMATION
public static final PushNotificationsType RECEIVED_FILE_MULTI_WITH_READ_CONFIRMATION
-
COMMENT_PERMISSION_REQUEST
public static final PushNotificationsType COMMENT_PERMISSION_REQUEST
-
EXTENSION_PERMISSION_REQUEST
public static final PushNotificationsType EXTENSION_PERMISSION_REQUEST
-
VIEW_PERMISSION_REQUEST
public static final PushNotificationsType VIEW_PERMISSION_REQUEST
-
PERMISSION_RESPONSE_APPROVED
public static final PushNotificationsType PERMISSION_RESPONSE_APPROVED
-
PERMISSION_RESPONSE_DENIED
public static final PushNotificationsType PERMISSION_RESPONSE_DENIED
-
-
Method Detail
-
values
public static PushNotificationsType[] 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 (PushNotificationsType c : PushNotificationsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PushNotificationsType 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 nameNullPointerException
- if the argument is null
-
-