Home
last modified time | relevance | path

Searched refs:NotificationActionType (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationActionUtils.java83 public enum NotificationActionType { enum in NotificationActionUtils
110 private static final Map<String, NotificationActionType> sPersistedMapping;
122 final NotificationActionType[] values = values();
123 final ImmutableMap.Builder<String, NotificationActionType> mapBuilder =
124 new ImmutableMap.Builder<String, NotificationActionType>();
133 private NotificationActionType(final String persistedValue, final boolean isDestructive, in NotificationActionType() method in NotificationActionUtils.NotificationActionType
144 private NotificationActionType(final String persistedValue, final boolean isDestructive, in NotificationActionType() method in NotificationActionUtils.NotificationActionType
156 public static NotificationActionType getActionType(final String persistedValue) { in getActionType()
204 final List<NotificationActionType> sortedActions = in addNotificationActions()
207 for (final NotificationActionType notificationAction : sortedActions) { in addNotificationActions()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/preferences/
DFolderPreferences.java29 import com.android.mail.utils.NotificationActionUtils.NotificationActionType;
256 final NotificationActionType destructiveActionType = in getNotificationActions()
258 NotificationActionType.ARCHIVE_REMOVE_LABEL : NotificationActionType.DELETE; in getNotificationActions()
263 ? NotificationActionType.REPLY_ALL.getPersistedValue() in getNotificationActions()
264 : NotificationActionType.REPLY.getPersistedValue(); in getNotificationActions()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationCursor.java53 import com.android.mail.utils.NotificationActionUtils.NotificationActionType;
2430 == NotificationActionType.DELETE; in handleNotificationActions()