Enum Class ActionType

java.lang.Object
java.lang.Enum<ActionType>
com.mewna.catnip.entity.guild.audit.ActionType
All Implemented Interfaces:
Serializable, Comparable<ActionType>, Constable

public enum ActionType extends Enum<ActionType>
Since:
10/07/18
Author:
SamOphis
  • Enum Constant Details

    • GUILD_UPDATE

      public static final ActionType GUILD_UPDATE
    • CHANNEL_CREATE

      public static final ActionType CHANNEL_CREATE
    • CHANNEL_UPDATE

      public static final ActionType CHANNEL_UPDATE
    • CHANNEL_DELETE

      public static final ActionType CHANNEL_DELETE
    • CHANNEL_OVERWRITE_CREATE

      public static final ActionType CHANNEL_OVERWRITE_CREATE
    • CHANNEL_OVERWRITE_UPDATE

      public static final ActionType CHANNEL_OVERWRITE_UPDATE
    • CHANNEL_OVERWRITE_DELETE

      public static final ActionType CHANNEL_OVERWRITE_DELETE
    • MEMBER_KICK

      public static final ActionType MEMBER_KICK
    • MEMBER_PRUNE

      public static final ActionType MEMBER_PRUNE
    • MEMBER_BAN_ADD

      public static final ActionType MEMBER_BAN_ADD
    • MEMBER_BAN_REMOVE

      public static final ActionType MEMBER_BAN_REMOVE
    • MEMBER_UPDATE

      public static final ActionType MEMBER_UPDATE
    • MEMBER_ROLE_UPDATE

      public static final ActionType MEMBER_ROLE_UPDATE
    • MEMBER_MOVE

      public static final ActionType MEMBER_MOVE
    • MEMBER_DISCONNECT

      public static final ActionType MEMBER_DISCONNECT
    • BOT_ADD

      public static final ActionType BOT_ADD
    • ROLE_CREATE

      public static final ActionType ROLE_CREATE
    • ROLE_UPDATE

      public static final ActionType ROLE_UPDATE
    • ROLE_DELETE

      public static final ActionType ROLE_DELETE
    • INVITE_CREATE

      public static final ActionType INVITE_CREATE
    • INVITE_UPDATE

      public static final ActionType INVITE_UPDATE
    • INVITE_DELETE

      public static final ActionType INVITE_DELETE
    • WEBHOOK_CREATE

      public static final ActionType WEBHOOK_CREATE
    • WEBHOOK_UPDATE

      public static final ActionType WEBHOOK_UPDATE
    • WEBHOOK_DELETE

      public static final ActionType WEBHOOK_DELETE
    • EMOJI_CREATE

      public static final ActionType EMOJI_CREATE
    • EMOJI_UPDATE

      public static final ActionType EMOJI_UPDATE
    • EMOJI_DELETE

      public static final ActionType EMOJI_DELETE
    • MESSAGE_DELETE

      public static final ActionType MESSAGE_DELETE
    • MESSAGE_BULK_DELETE

      public static final ActionType MESSAGE_BULK_DELETE
    • MESSAGE_PIN

      public static final ActionType MESSAGE_PIN
    • MESSAGE_UNPIN

      public static final ActionType MESSAGE_UNPIN
    • INTEGRATION_CREATE

      public static final ActionType INTEGRATION_CREATE
    • INTEGRATION_UPDATE

      public static final ActionType INTEGRATION_UPDATE
    • INTEGRATION_DELETE

      public static final ActionType INTEGRATION_DELETE
  • Method Details

    • values

      public static ActionType[] 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 ActionType 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
    • byKey

      @Nonnull @CheckReturnValue public static ActionType byKey(int value)
    • value

      public int value()