Enum Class ChatMessageType

java.lang.Object
java.lang.Enum<ChatMessageType>
com.microsoft.graph.models.ChatMessageType
All Implemented Interfaces:
Serializable, Comparable<ChatMessageType>, Constable

public enum ChatMessageType extends Enum<ChatMessageType>
The Enum Chat Message Type.
  • Enum Constant Details

    • MESSAGE

      public static final ChatMessageType MESSAGE
      message
    • CHAT_EVENT

      public static final ChatMessageType CHAT_EVENT
      chat Event
    • TYPING

      public static final ChatMessageType TYPING
      typing
    • UNKNOWN_FUTURE_VALUE

      public static final ChatMessageType UNKNOWN_FUTURE_VALUE
      unknown Future Value
    • SYSTEM_EVENT_MESSAGE

      public static final ChatMessageType SYSTEM_EVENT_MESSAGE
      system Event Message
    • UNEXPECTED_VALUE

      public static final ChatMessageType UNEXPECTED_VALUE
      For ChatMessageType values that were not expected from the service
  • Method Details

    • values

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