public final enum

PersistenceType

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

Class Overview

Enumerative representing the persistence type.

Summary

Enum Values
PersistenceType  ENTERPRISE_RESET_PERSISTENT  The object is persistent to enterprise reset. 
PersistenceType  FACTORY_RESET_PERSISTENT  The object is persistent to factory reset. 
PersistenceType  REBOOT_PERSISTENT  The object is persistent to device reboots. 
Public Methods
static PersistenceType fromInt(int value)
Retrieves the corresponding PersistenceType value from a valid integer.
int toInt()
Converts the PersistenceType to its integer corresponding value.
String toString()
static 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 PersistenceType ENTERPRISE_RESET_PERSISTENT

Added in revision 32

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

public static final PersistenceType FACTORY_RESET_PERSISTENT

Added in revision 32

The object is persistent to factory reset.

public static final PersistenceType REBOOT_PERSISTENT

Added in revision 32

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

Public Methods

public static PersistenceType fromInt (int value)

Added in revision 32

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 32

Converts the PersistenceType to its integer corresponding value.

Returns
  • Integer value of this persistence type.

public String toString ()

public static PersistenceType valueOf (String name)

Added in revision 32

public static final PersistenceType[] values ()

Added in revision 32