Package org.sonar.java.checks
Enum AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder
- java.lang.Object
-
- java.lang.Enum<AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder>
-
- org.sonar.java.checks.AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder>
- Enclosing class:
- AbstractHashAlgorithmChecker
public static enum AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder extends Enum<AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncodervalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MD5
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder MD5
-
SHA
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder SHA
-
LDAP
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder LDAP
-
MD4
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder MD4
-
MESSAGE_DIGEST
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder MESSAGE_DIGEST
-
STANDARD
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder STANDARD
-
NO_OP
public static final AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder NO_OP
-
-
Method Detail
-
values
public static AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder c : AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractHashAlgorithmChecker.DeprecatedSpringPasswordEncoder valueOf(String name)
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
-
-