public enum MaskSensitiveData extends java.lang.Enum<MaskSensitiveData>
Enum Constant and Description |
---|
AUTHENTICATION_CODE |
IDENTIFIER |
PASS_CODE |
PASSWORD |
RANDOM_PASS_CODE |
SECRET_NUMBER |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getRegEx() |
static MaskSensitiveData |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaskSensitiveData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaskSensitiveData PASSWORD
public static final MaskSensitiveData PASS_CODE
public static final MaskSensitiveData AUTHENTICATION_CODE
public static final MaskSensitiveData IDENTIFIER
public static final MaskSensitiveData SECRET_NUMBER
public static final MaskSensitiveData RANDOM_PASS_CODE
public static MaskSensitiveData[] values()
for (MaskSensitiveData c : MaskSensitiveData.values()) System.out.println(c);
public static MaskSensitiveData valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getRegEx()