Enum Class EnumMap.Masking

java.lang.Object
java.lang.Enum<EnumMap.Masking>
org.miaixz.bus.core.lang.EnumMap.Masking
All Implemented Interfaces:
Serializable, Comparable<EnumMap.Masking>, Constable
Enclosing interface:
EnumMap<E extends EnumMap<E>>

public static enum EnumMap.Masking extends Enum<EnumMap.Masking>
脱敏类型
  • Enum Constant Details

    • USER_ID

      public static final EnumMap.Masking USER_ID
      用户id
    • CHINESE_NAME

      public static final EnumMap.Masking CHINESE_NAME
      中文名
    • ID_CARD

      public static final EnumMap.Masking ID_CARD
      身份证号
    • FIXED_PHONE

      public static final EnumMap.Masking FIXED_PHONE
      座机号
    • MOBILE_PHONE

      public static final EnumMap.Masking MOBILE_PHONE
      手机号
    • ADDRESS

      public static final EnumMap.Masking ADDRESS
      地址
    • EMAIL

      public static final EnumMap.Masking EMAIL
      电子邮件
    • PASSWORD

      public static final EnumMap.Masking PASSWORD
      密码
    • CAR_LICENSE

      public static final EnumMap.Masking CAR_LICENSE
      中国大陆车牌,包含普通车辆、新能源车辆
    • BANK_CARD

      public static final EnumMap.Masking BANK_CARD
      银行卡
    • IPV4

      public static final EnumMap.Masking IPV4
      IPv4地址
    • IPV6

      public static final EnumMap.Masking IPV6
      IPv6地址
    • FIRST_MASK

      public static final EnumMap.Masking FIRST_MASK
      定义了一个first_mask的规则,只显示第一个字符。
    • CLEAR_TO_NULL

      public static final EnumMap.Masking CLEAR_TO_NULL
      清空为null
    • CLEAR_TO_EMPTY

      public static final EnumMap.Masking CLEAR_TO_EMPTY
      清空为""
  • Method Details

    • values

      public static EnumMap.Masking[] 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 EnumMap.Masking 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