Package com.pubnub.api.enums
Enum PNOperationType
- java.lang.Object
-
- java.lang.Enum<PNOperationType>
-
- com.pubnub.api.enums.PNOperationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PNOperationType>
public enum PNOperationType extends java.lang.Enum<PNOperationType>
Created by Max on 4/7/16.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PNOperationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PNOperationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PNSubscribeOperation
public static final PNOperationType PNSubscribeOperation
-
PNUnsubscribeOperation
public static final PNOperationType PNUnsubscribeOperation
-
PNPublishOperation
public static final PNOperationType PNPublishOperation
-
PNSignalOperation
public static final PNOperationType PNSignalOperation
-
PNHistoryOperation
public static final PNOperationType PNHistoryOperation
-
PNFetchMessagesOperation
public static final PNOperationType PNFetchMessagesOperation
-
PNDeleteMessagesOperation
public static final PNOperationType PNDeleteMessagesOperation
-
PNMessageCountOperation
public static final PNOperationType PNMessageCountOperation
-
PNWhereNowOperation
public static final PNOperationType PNWhereNowOperation
-
PNHeartbeatOperation
public static final PNOperationType PNHeartbeatOperation
-
PNSetStateOperation
public static final PNOperationType PNSetStateOperation
-
PNAddChannelsToGroupOperation
public static final PNOperationType PNAddChannelsToGroupOperation
-
PNRemoveChannelsFromGroupOperation
public static final PNOperationType PNRemoveChannelsFromGroupOperation
-
PNChannelGroupsOperation
public static final PNOperationType PNChannelGroupsOperation
-
PNRemoveGroupOperation
public static final PNOperationType PNRemoveGroupOperation
-
PNChannelsForGroupOperation
public static final PNOperationType PNChannelsForGroupOperation
-
PNPushNotificationEnabledChannelsOperation
public static final PNOperationType PNPushNotificationEnabledChannelsOperation
-
PNAddPushNotificationsOnChannelsOperation
public static final PNOperationType PNAddPushNotificationsOnChannelsOperation
-
PNRemovePushNotificationsFromChannelsOperation
public static final PNOperationType PNRemovePushNotificationsFromChannelsOperation
-
PNRemoveAllPushNotificationsOperation
public static final PNOperationType PNRemoveAllPushNotificationsOperation
-
PNTimeOperation
public static final PNOperationType PNTimeOperation
-
PNHereNowOperation
public static final PNOperationType PNHereNowOperation
-
PNGetState
public static final PNOperationType PNGetState
-
PNAccessManagerAudit
public static final PNOperationType PNAccessManagerAudit
-
PNAccessManagerGrant
public static final PNOperationType PNAccessManagerGrant
-
PNSetUuidMetadataOperation
public static final PNOperationType PNSetUuidMetadataOperation
-
PNGetUuidMetadataOperation
public static final PNOperationType PNGetUuidMetadataOperation
-
PNGetAllUuidMetadataOperation
public static final PNOperationType PNGetAllUuidMetadataOperation
-
PNRemoveUuidMetadataOperation
public static final PNOperationType PNRemoveUuidMetadataOperation
-
PNSetChannelMetadataOperation
public static final PNOperationType PNSetChannelMetadataOperation
-
PNGetChannelMetadataOperation
public static final PNOperationType PNGetChannelMetadataOperation
-
PNGetAllChannelsMetadataOperation
public static final PNOperationType PNGetAllChannelsMetadataOperation
-
PNRemoveChannelMetadataOperation
public static final PNOperationType PNRemoveChannelMetadataOperation
-
PNSetMembershipsOperation
public static final PNOperationType PNSetMembershipsOperation
-
PNGetMembershipsOperation
public static final PNOperationType PNGetMembershipsOperation
-
PNRemoveMembershipsOperation
public static final PNOperationType PNRemoveMembershipsOperation
-
PNManageMembershipsOperation
public static final PNOperationType PNManageMembershipsOperation
-
PNSetChannelMembersOperation
public static final PNOperationType PNSetChannelMembersOperation
-
PNGetChannelMembersOperation
public static final PNOperationType PNGetChannelMembersOperation
-
PNRemoveChannelMembersOperation
public static final PNOperationType PNRemoveChannelMembersOperation
-
PNManageChannelMembersOperation
public static final PNOperationType PNManageChannelMembersOperation
-
PNAccessManagerGrantToken
public static final PNOperationType PNAccessManagerGrantToken
-
PNAccessManagerRevokeToken
public static final PNOperationType PNAccessManagerRevokeToken
-
PNAddMessageAction
public static final PNOperationType PNAddMessageAction
-
PNGetMessageActions
public static final PNOperationType PNGetMessageActions
-
PNDeleteMessageAction
public static final PNOperationType PNDeleteMessageAction
-
PNFileAction
public static final PNOperationType PNFileAction
-
-
Method Detail
-
values
public static PNOperationType[] 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 (PNOperationType c : PNOperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PNOperationType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-