public static final enum

AdvancedKeyboard.PersistenceType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.datalogic.device.input.AdvancedKeyboard.PersistenceType

Class Overview

Enumerative representing the persistence type of the installed keyboard configuration.

Summary

Enum Values
AdvancedKeyboard.PersistenceType  ENTERPRISE_RESET_PERSISTENT  The keyboard configuration is persistent to enterprise reset. 
AdvancedKeyboard.PersistenceType  FACTORY_RESET_PERSISTENT  The keyboard configuration is persistent to factory reset. 
AdvancedKeyboard.PersistenceType  REBOOT_PERSISTENT  The keyboard configuration is persistent to device reboots. 
Public Methods
static AdvancedKeyboard.PersistenceType fromInt(int value)
Retrieves the corresponding PersistenceType value from a valid integer.
int toInt()
Converts the PersistenceType to its integer corresponding value.
static AdvancedKeyboard.PersistenceType valueOf(String name)
final static PersistenceType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AdvancedKeyboard.PersistenceType ENTERPRISE_RESET_PERSISTENT

Added in revision 22

The keyboard configuration is persistent to enterprise reset. Only a factory reset can remove this configuration.

public static final AdvancedKeyboard.PersistenceType FACTORY_RESET_PERSISTENT

Added in revision 22

The keyboard configuration is persistent to factory reset. This is the case of the default keyboard configuration.

public static final AdvancedKeyboard.PersistenceType REBOOT_PERSISTENT

Added in revision 22

The keyboard configuration is persistent to device reboots. Any type of data reset (enterprise or factory) will remove this configuration.

Public Methods

public static AdvancedKeyboard.PersistenceType fromInt (int value)

Added in revision 22

Retrieves the corresponding PersistenceType value from a valid integer.

Parameters
value Integer to use as input in the conversion.
Returns
  • The corresponding persistence type.

public int toInt ()

Added in revision 22

Converts the PersistenceType to its integer corresponding value.

Returns
  • Integer value of this persistence type.

public static AdvancedKeyboard.PersistenceType valueOf (String name)

Added in revision 22

public static final PersistenceType[] values ()

Added in revision 22