Enum Class UserStatus

java.lang.Object
java.lang.Enum<UserStatus>
com.elitesland.ystdms.sys.app.enums.UserStatus
All Implemented Interfaces:
Serializable, Comparable<UserStatus>, Constable

public enum UserStatus extends Enum<UserStatus>
用户状态枚举
Since:
2026-01-06
  • Enum Constant Details

    • NORMAL

      public static final UserStatus NORMAL
      正常
    • DISABLED

      public static final UserStatus DISABLED
      禁用
    • LOCKED

      public static final UserStatus LOCKED
      锁定
    • EXPIRED

      public static final UserStatus EXPIRED
      过期
  • Method Details

    • values

      public static UserStatus[] 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 UserStatus 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
    • fromCode

      public static UserStatus fromCode(String code)
      根据code获取枚举