Uses of Class
com.eatthepath.pushy.apns.PushType
| Package | Description |
|---|---|
| com.eatthepath.pushy.apns |
Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).
|
| com.eatthepath.pushy.apns.util |
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 PushType Modifier and Type Method Description static PushTypePushType. getFromHeaderValue(CharSequence headerValue)PushTypeApnsPushNotification. getPushType()Returns the display type this push notification.static PushTypePushType. valueOf(String name)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 PushType Modifier and Type Method Description PushTypeSimpleApnsPushNotification. getPushType()Returns the display type this push notification.Constructors in com.eatthepath.pushy.apns.util with parameters of type PushType Constructor Description SimpleApnsPushNotification(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.