Enum Class IsEnabled

java.lang.Object
java.lang.Enum<IsEnabled>
com.codeupsoft.base.common.enums.IsEnabled
All Implemented Interfaces:
com.baomidou.mybatisplus.annotation.IEnum<String>, BaseEnum<String>, Serializable, Comparable<IsEnabled>, Constable

public enum IsEnabled extends Enum<IsEnabled> implements BaseEnum<String>
启用状态枚举类.
Author:
Liu,Dongdong
  • Enum Constant Details

  • Method Details

    • values

      public static IsEnabled[] 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 IsEnabled 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
    • isDefault

      public boolean isDefault()
      Description copied from interface: BaseEnum
      判断是否为默认值.
      Specified by:
      isDefault in interface BaseEnum<String>
      Returns:
      true表示是默认值,false表示不是默认值