public final enum

TimeoutSleep

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

Class Overview

The TimeoutSleep enumeration defines the possible value for 2nd display sleep timeout.

Summary

Enum Values
TimeoutSleep  NEVER_SLEEP   
TimeoutSleep  SLEEP_10_MIN   
TimeoutSleep  SLEEP_15_MIN   
TimeoutSleep  SLEEP_15_SEC   
TimeoutSleep  SLEEP_1_MIN   
TimeoutSleep  SLEEP_20_MIN   
TimeoutSleep  SLEEP_2_MIN   
TimeoutSleep  SLEEP_30_MIN   
TimeoutSleep  SLEEP_30_SEC   
TimeoutSleep  SLEEP_3_MIN   
TimeoutSleep  SLEEP_4_MIN   
TimeoutSleep  SLEEP_5_MIN   
Public Methods
static TimeoutSleep fromInt(int n)
Retrieves the corresponding TimeoutSleep value, from a valid integer.
int toInt()
Converts a TimeoutSleep to its integer corresponding value.
static TimeoutSleep valueOf(String name)
final static TimeoutSleep[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final TimeoutSleep NEVER_SLEEP

Added in revision 24

public static final TimeoutSleep SLEEP_10_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_15_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_15_SEC

Added in revision 24

public static final TimeoutSleep SLEEP_1_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_20_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_2_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_30_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_30_SEC

Added in revision 24

public static final TimeoutSleep SLEEP_3_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_4_MIN

Added in revision 24

public static final TimeoutSleep SLEEP_5_MIN

Added in revision 24

Public Methods

public static TimeoutSleep fromInt (int n)

Added in revision 24

Retrieves the corresponding TimeoutSleep value, from a valid integer.

Parameters
n int
Returns
  • TimeoutSleep the corresponding one. Returns NEVER_SLEEP when the input is not included in the enum set.

public int toInt ()

Added in revision 24

Converts a TimeoutSleep to its integer corresponding value.

Returns
  • int

public static TimeoutSleep valueOf (String name)

Added in revision 24

public static final TimeoutSleep[] values ()

Added in revision 24