Enum Class EventMode

java.lang.Object
java.lang.Enum<EventMode>
com.linecorp.bot.model.event.EventMode
All Implemented Interfaces:
Serializable, Comparable<EventMode>, Constable

public enum EventMode extends Enum<EventMode>
Channel state.
  • Enum Constant Details

    • ACTIVE

      public static final EventMode ACTIVE
      active: The channel is active. You can send a reply message or push message from the bot server that received this webhook event active.
    • STANDBY

      public static final EventMode STANDBY
      (under development): The channel is waiting. The bot server that received this webhook event shouldn't send any messages.
    • UNKNOWN

      public static final EventMode UNKNOWN
  • Method Details

    • values

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