public static enum Randoms.CharType extends java.lang.Enum<Randoms.CharType>
字符类型.
| Enum Constant and Description |
|---|
LOWER_CASE
lowerCase 小写字母
|
NUMBER_CASE
numberCase 数字
|
UPPER_CASE
upperCase 大写字母
|
| Modifier and Type | Method and Description |
|---|---|
static Randoms.CharType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Randoms.CharType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Randoms.CharType LOWER_CASE
public static final Randoms.CharType UPPER_CASE
public static final Randoms.CharType NUMBER_CASE
public static Randoms.CharType[] values()
for (Randoms.CharType c : Randoms.CharType.values()) System.out.println(c);
public static Randoms.CharType 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 null