Package org.passay
Enum RuleResultMetadata.CountCategory
- All Implemented Interfaces:
Serializable,Comparable<RuleResultMetadata.CountCategory>
- Enclosing class:
- RuleResultMetadata
Count category.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionallowed characters.digit characters.illegal characters.password length.lowercase characters.Already leaked password.special characters.special ascii characters.special latin characters.special unicode characters.uppercase characters.whitespace characters. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static RuleResultMetadata.CountCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Length
password length. -
LowerCase
lowercase characters. -
UpperCase
uppercase characters. -
Digit
digit characters. -
Special
special characters. -
SpecialAscii
special ascii characters. -
SpecialUnicode
special unicode characters. -
SpecialLatin
special latin characters. -
Whitespace
whitespace characters. -
Allowed
allowed characters. -
Illegal
illegal characters. -
Pwned
Already leaked password.
-
-
Constructor Details
-
CountCategory
private CountCategory()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-