public static enum LoginDetails.CaptchaState extends Enum<LoginDetails.CaptchaState>
Modifier and Type | Method and Description |
---|---|
static LoginDetails.CaptchaState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginDetails.CaptchaState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginDetails.CaptchaState PASSED
public static final LoginDetails.CaptchaState FAILED
public static final LoginDetails.CaptchaState NOT_SHOWN
public static LoginDetails.CaptchaState[] values()
for (LoginDetails.CaptchaState c : LoginDetails.CaptchaState.values()) System.out.println(c);
public static LoginDetails.CaptchaState 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 © 2003–2021 Atlassian. All rights reserved.