Uses of Enum
com.eatthepath.pushy.apns.PushType
Packages that use PushType
Package
Description
Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).
Contains classes for working with APNs tokens and payloads.
-
Uses of PushType in com.eatthepath.pushy.apns
Methods in com.eatthepath.pushy.apns that return PushTypeModifier and TypeMethodDescriptionstatic PushType
PushType.getFromHeaderValue
(CharSequence headerValue) ApnsPushNotification.getPushType()
Returns the display type this push notification.static PushType
Returns the enum constant of this type with the specified name.static PushType[]
PushType.values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of PushType in com.eatthepath.pushy.apns.util
Methods in com.eatthepath.pushy.apns.util that return PushTypeModifier and TypeMethodDescriptionSimpleApnsPushNotification.getPushType()
Returns the display type this push notification.Constructors in com.eatthepath.pushy.apns.util with parameters of type PushTypeModifierConstructorDescriptionSimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, and push notification type.SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType, String collapseId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, push notification type, and "collapse identifier."SimpleApnsPushNotification
(String token, String topic, String payload, Instant invalidationTime, DeliveryPriority priority, PushType pushType, String collapseId, UUID apnsId) Constructs a new push notification with the given token, topic, payload, delivery expiration time, delivery priority, "collapse identifier," and unique push notification identifier.