public enum CaptchaType extends Enum<CaptchaType>
| Enum Constant and Description |
|---|
LETTER_NUM
字母数字
|
MATH_ADD
数学加法
|
| Modifier and Type | Method and Description |
|---|---|
static CaptchaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaptchaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptchaType LETTER_NUM
public static final CaptchaType MATH_ADD
public static CaptchaType[] values()
for (CaptchaType c : CaptchaType.values()) System.out.println(c);
public static CaptchaType 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 © 2021. All rights reserved.