public static enum CheckStrength.LEVEL extends Enum<CheckStrength.LEVEL>
Enum Constant and Description |
---|
EASY |
EXTREMELY_STRONG |
MIDIUM |
STRONG |
VERY_STRONG |
Modifier and Type | Method and Description |
---|---|
static CheckStrength.LEVEL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckStrength.LEVEL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckStrength.LEVEL EASY
public static final CheckStrength.LEVEL MIDIUM
public static final CheckStrength.LEVEL STRONG
public static final CheckStrength.LEVEL VERY_STRONG
public static final CheckStrength.LEVEL EXTREMELY_STRONG
public static CheckStrength.LEVEL[] values()
for (CheckStrength.LEVEL c : CheckStrength.LEVEL.values()) System.out.println(c);
public static CheckStrength.LEVEL valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.