public enum Complexity extends java.lang.Enum<Complexity>
| Enum Constant and Description |
|---|
AlphaNumeric
Enumeration : AlphaNumeric
|
Any3UpperLowerCaseNumericSpecialCharacters
Enumeration : Any3UpperLowerCaseNumericSpecialCharacters
|
NoRestriction
Enumeration : NoRestriction
|
SpecialCharacters
Enumeration : SpecialCharacters
|
UpperLowerCaseNumeric
Enumeration : UpperLowerCaseNumeric
|
UpperLowerCaseNumericSpecialCharacters
Enumeration : UpperLowerCaseNumericSpecialCharacters
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.Map<java.lang.String,java.lang.String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Complexity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Complexity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Complexity NoRestriction
public static final Complexity AlphaNumeric
public static final Complexity SpecialCharacters
public static final Complexity UpperLowerCaseNumeric
public static final Complexity UpperLowerCaseNumericSpecialCharacters
public static final Complexity Any3UpperLowerCaseNumericSpecialCharacters
public static java.util.Map<java.lang.String,java.lang.String> valuesToEnums
public static Complexity[] values()
for (Complexity c : Complexity.values()) System.out.println(c);
public static Complexity 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 toString()
toString in class java.lang.Enum<Complexity>Copyright © 2020. All Rights Reserved.