Package com.zello.sdk

Enum Class ContactType

java.lang.Object
java.lang.Enum<ContactType>
com.zello.sdk.ContactType
All Implemented Interfaces:
Serializable, Comparable<ContactType>, Constable

public enum ContactType extends Enum<ContactType>
The ContactType enum represents the type of Contact.
  • Enum Constant Details

    • USER

      public static final ContactType USER
      Contact is a single user.
    • CHANNEL

      public static final ContactType CHANNEL
      Contact is a channel.
    • GROUP

      public static final ContactType GROUP
      Contact is a group.
    • GATEWAY

      public static final ContactType GATEWAY
      Contact is a gateway.
    • CONVERSATION

      public static final ContactType CONVERSATION
      Contact is a conversation.
  • Method Details

    • values

      public static ContactType[] 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 ContactType 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