public final enum

WifiNoInternetExpected

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

Class Overview

The WifiNoInternetExpected enumeration defines the behaviour when the current connection doesn't have an Internet connection.

Summary

Enum Values
WifiNoInternetExpected  DONT_RECONNECT  Don't reconnect and show a notification to the user. 
WifiNoInternetExpected  RECONNECT_QUIET  Reconnect and don't show a notification to the user. 
WifiNoInternetExpected  RECONNECT_VERBOSE  Reconnect but show a notification to the user. 
Public Methods
static WifiNoInternetExpected fromInt(int n)
Retrieves the corresponding WifiNoInternetExpected value, from a valid integer.
int toInt()
Converts the WifiNoInternetExpected to its integer corresponding value.
static WifiNoInternetExpected valueOf(String name)
final static WifiNoInternetExpected[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final WifiNoInternetExpected DONT_RECONNECT

Added in revision 33

Don't reconnect and show a notification to the user.

public static final WifiNoInternetExpected RECONNECT_QUIET

Added in revision 33

Reconnect and don't show a notification to the user.

public static final WifiNoInternetExpected RECONNECT_VERBOSE

Added in revision 33

Reconnect but show a notification to the user.

Public Methods

public static WifiNoInternetExpected fromInt (int n)

Added in revision 33

Retrieves the corresponding WifiNoInternetExpected value, from a valid integer.

Parameters
n int
Returns
  • WifiNoInternetExpected the corresponding one.

public int toInt ()

Added in revision 33

Converts the WifiNoInternetExpected to its integer corresponding value.

Returns
  • int

public static WifiNoInternetExpected valueOf (String name)

Added in revision 33

public static final WifiNoInternetExpected[] values ()

Added in revision 33