public enum AuthCodeStatus extends Enum<AuthCodeStatus>
| Enum Constant and Description |
|---|
DONE |
EXPIRED |
FAILED |
INITIATED |
SENT |
VALIDATED |
| Modifier and Type | Method and Description |
|---|---|
static AuthCodeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthCodeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthCodeStatus INITIATED
public static final AuthCodeStatus SENT
public static final AuthCodeStatus VALIDATED
public static final AuthCodeStatus FAILED
public static final AuthCodeStatus EXPIRED
public static final AuthCodeStatus DONE
public static AuthCodeStatus[] values()
for (AuthCodeStatus c : AuthCodeStatus.values()) System.out.println(c);
public static AuthCodeStatus 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 © 2019. All rights reserved.