Enum Class AuditLogType

java.lang.Object
java.lang.Enum<AuditLogType>
com.soulfiremc.server.database.AuditLogType
All Implemented Interfaces:
Serializable, Comparable<AuditLogType>, Constable

public enum AuditLogType extends Enum<AuditLogType>
  • Enum Constant Details

    • EXECUTE_COMMAND

      public static final AuditLogType EXECUTE_COMMAND
    • START_SESSION

      public static final AuditLogType START_SESSION
    • PAUSE_SESSION

      public static final AuditLogType PAUSE_SESSION
    • RESUME_SESSION

      public static final AuditLogType RESUME_SESSION
    • STOP_SESSION

      public static final AuditLogType STOP_SESSION
  • Method Details

    • values

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