public static enum CBRandom.StringType extends java.lang.Enum<CBRandom.StringType>
| Enum Constant and Description |
|---|
LOWERCASE |
LOWERCASE_UPPERCASE |
NUM |
NUM_LOWERCASE |
NUM_LOWERCASE_UPPERCASE |
NUM_UPPERCASE |
UPPERCASE |
| Modifier and Type | Method and Description |
|---|---|
static CBRandom.StringType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CBRandom.StringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CBRandom.StringType NUM
public static final CBRandom.StringType LOWERCASE
public static final CBRandom.StringType UPPERCASE
public static final CBRandom.StringType NUM_LOWERCASE
public static final CBRandom.StringType NUM_UPPERCASE
public static final CBRandom.StringType LOWERCASE_UPPERCASE
public static final CBRandom.StringType NUM_LOWERCASE_UPPERCASE
public static CBRandom.StringType[] values()
for (CBRandom.StringType c : CBRandom.StringType.values()) System.out.println(c);
public static CBRandom.StringType 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