public static enum SecureInputBuilderV2.OkButtonBehavior extends java.lang.Enum<SecureInputBuilderV2.OkButtonBehavior>
Enum Constant and Description |
---|
ALWAYS_ENABLED
Button is visible and enabled by default.
|
AUTOMATICALLY_ENABLED
Button is visible and grayed out by default.
|
CUSTOM
Button is visible and enabled by default.
|
NONE
Button does not exist.
|
NONE_DISABLED
OK button does not exist.
|
Modifier and Type | Method and Description |
---|---|
static SecureInputBuilderV2.OkButtonBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecureInputBuilderV2.OkButtonBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecureInputBuilderV2.OkButtonBehavior NONE
public static final SecureInputBuilderV2.OkButtonBehavior AUTOMATICALLY_ENABLED
public static final SecureInputBuilderV2.OkButtonBehavior ALWAYS_ENABLED
public static final SecureInputBuilderV2.OkButtonBehavior CUSTOM
SecurePinpadListenerV2.onOkButtonPressed()
callback.
If minimum text length != maximum text length then runtime exception is thrown during
opening the UIpublic static final SecureInputBuilderV2.OkButtonBehavior NONE_DISABLED
public static SecureInputBuilderV2.OkButtonBehavior[] values()
for (SecureInputBuilderV2.OkButtonBehavior c : SecureInputBuilderV2.OkButtonBehavior.values()) System.out.println(c);
public static SecureInputBuilderV2.OkButtonBehavior valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null