Enum Class LogTyp

java.lang.Object
java.lang.Enum<LogTyp>
de.presti.ree6.logger.events.LogTyp
All Implemented Interfaces:
Serializable, Comparable<LogTyp>, Constable

public enum LogTyp extends Enum<LogTyp>
The used Log-Types.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    LogTyp for the Logs which are fired when channel data gets changed.
    LogTyp for not yet implemented Logs.
    LogTyp for the Logs which are fired when User role related data changes.
    LogTyp for the Logs which are fired when a Message gets deleted.
    LogTyp for the Logs which are fired when a User changes their Nickname.
    LogTyp for the Logs which are fired when a Role gets changed.
    LogTyp for the Logs which are fired when a User gets invited to a Guild
    LogTyp for the Logs which are fired when a User joins a Guild.
    LogTyp for the Logs which are fired when a User leaves a Guild.
    LogTyp for the Logs which are fired when a User gets banned.
    LogTyp for the Logs which are fired when a User gets unbanned.
    LogTyp for the Logs which are fired when a User joins a Voice-channel.
    LogTyp for the Logs which are fired when a User leaves a Voice-channel.
    LogTyp for the Logs which are fired when a User moves between Voice channels.
  • Method Summary

    Modifier and Type
    Method
    Description
    static LogTyp
    Returns the enum constant of this class with the specified name.
    static LogTyp[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SERVER_JOIN

      public static final LogTyp SERVER_JOIN
      LogTyp for the Logs which are fired when a User joins a Guild.
    • SERVER_LEAVE

      public static final LogTyp SERVER_LEAVE
      LogTyp for the Logs which are fired when a User leaves a Guild.
    • SERVER_INVITE

      public static final LogTyp SERVER_INVITE
      LogTyp for the Logs which are fired when a User gets invited to a Guild
    • VC_JOIN

      public static final LogTyp VC_JOIN
      LogTyp for the Logs which are fired when a User joins a Voice-channel.
    • VC_MOVE

      public static final LogTyp VC_MOVE
      LogTyp for the Logs which are fired when a User moves between Voice channels.
    • VC_LEAVE

      public static final LogTyp VC_LEAVE
      LogTyp for the Logs which are fired when a User leaves a Voice-channel.
    • NICKNAME_CHANGE

      public static final LogTyp NICKNAME_CHANGE
      LogTyp for the Logs which are fired when a User changes their Nickname.
    • ROLEDATA_CHANGE

      public static final LogTyp ROLEDATA_CHANGE
      LogTyp for the Logs which are fired when a Role gets changed.
    • MEMBERROLE_CHANGE

      public static final LogTyp MEMBERROLE_CHANGE
      LogTyp for the Logs which are fired when User role related data changes.
    • CHANNELDATA_CHANGE

      public static final LogTyp CHANNELDATA_CHANGE
      LogTyp for the Logs which are fired when channel data gets changed.
    • USER_BAN

      public static final LogTyp USER_BAN
      LogTyp for the Logs which are fired when a User gets banned.
    • USER_UNBAN

      public static final LogTyp USER_UNBAN
      LogTyp for the Logs which are fired when a User gets unbanned.
    • MESSAGE_DELETE

      public static final LogTyp MESSAGE_DELETE
      LogTyp for the Logs which are fired when a Message gets deleted.
    • ELSE

      public static final LogTyp ELSE
      LogTyp for not yet implemented Logs.
  • Method Details

    • values

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