public enum TfaPinType extends Enum<TfaPinType>
| Modifier and Type | Class and Description |
|---|---|
static class |
TfaPinType.Adapter |
| Enum Constant and Description |
|---|
ALPHA |
ALPHANUMERIC |
HEX |
NUMERIC |
| Modifier and Type | Method and Description |
|---|---|
static TfaPinType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static TfaPinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TfaPinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TfaPinType NUMERIC
public static final TfaPinType ALPHA
public static final TfaPinType HEX
public static final TfaPinType ALPHANUMERIC
public static TfaPinType[] values()
for (TfaPinType c : TfaPinType.values()) System.out.println(c);
public static TfaPinType 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 nullpublic String getValue()
public String toString()
toString in class Enum<TfaPinType>public static TfaPinType fromValue(String value)
Copyright © 2022. All rights reserved.