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