Enum Class Message.Type

java.lang.Object
java.lang.Enum<Message.Type>
com.mparticle.sdk.model.Message.Type
All Implemented Interfaces:
Serializable, Comparable<Message.Type>, Constable
Enclosing class:
Message

public static enum Message.Type extends Enum<Message.Type>
Message types.
  • Enum Constant Details

    • MODULE_REGISTRATION_REQUEST

      public static final Message.Type MODULE_REGISTRATION_REQUEST
    • MODULE_REGISTRATION_RESPONSE

      public static final Message.Type MODULE_REGISTRATION_RESPONSE
    • EVENT_PROCESSING_REQUEST

      public static final Message.Type EVENT_PROCESSING_REQUEST
    • EVENT_PROCESSING_RESPONSE

      public static final Message.Type EVENT_PROCESSING_RESPONSE
    • AUDIENCE_SUBSCRIPTION_REQUEST

      public static final Message.Type AUDIENCE_SUBSCRIPTION_REQUEST
    • AUDIENCE_SUBSCRIPTION_RESPONSE

      public static final Message.Type AUDIENCE_SUBSCRIPTION_RESPONSE
    • AUDIENCE_MEMBERSHIP_CHANGE_REQUEST

      public static final Message.Type AUDIENCE_MEMBERSHIP_CHANGE_REQUEST
    • AUDIENCE_MEMBERSHIP_CHANGE_RESPONSE

      public static final Message.Type AUDIENCE_MEMBERSHIP_CHANGE_RESPONSE
    • DSR_PROCESSING_REQUEST

      public static final Message.Type DSR_PROCESSING_REQUEST
    • DSR_PROCESSING_RESPONSE

      public static final Message.Type DSR_PROCESSING_RESPONSE
  • Method Details

    • values

      public static Message.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Message.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Message.Type>