public enum AuthenticationTypeTO extends Enum<AuthenticationTypeTO>
| Enum Constant and Description |
|---|
APP_OTP |
CHIP_OTP |
EMAIL |
PHOTO_OTP |
PUSH_OTP |
SMS_OTP |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationTypeTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationTypeTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationTypeTO SMS_OTP
public static final AuthenticationTypeTO CHIP_OTP
public static final AuthenticationTypeTO PHOTO_OTP
public static final AuthenticationTypeTO PUSH_OTP
public static final AuthenticationTypeTO EMAIL
public static final AuthenticationTypeTO APP_OTP
public static AuthenticationTypeTO[] values()
for (AuthenticationTypeTO c : AuthenticationTypeTO.values()) System.out.println(c);
public static AuthenticationTypeTO 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 © 2020. All rights reserved.