Inherits com.gallagher.security.mobileaccess.StringValueConvertible.
|
| VERY_LOW =(-5) |
| Adjusts the observed path loss for nearby readers by -5 dBm.
|
|
| LOW =(-2.5) |
| Adjusts the observed path loss for nearby readers by -2.5 dBm.
|
|
| NORMAL =(0) |
| Adjusts the observed path loss for nearby readers by 0 dBm.
|
|
◆ BluetoothConnectionSensitivity()
com.gallagher.security.mobileaccess.BluetoothConnectionSensitivity.BluetoothConnectionSensitivity |
( |
double |
x | ) |
|
◆ from()
30 {
31 for(BluetoothConnectionSensitivity m : BluetoothConnectionSensitivity.values()){
32 if(m.mValue == value){
33 return m;
34 }
35 }
36
37 return null;
38 }
◆ getValue()
double com.gallagher.security.mobileaccess.BluetoothConnectionSensitivity.getValue |
( |
| ) |
|
25 {
26 return mValue;
27 }
◆ stringValue()
String com.gallagher.security.mobileaccess.BluetoothConnectionSensitivity.stringValue |
( |
| ) |
|
- Returns
- a programmatic string representation of this object. This value is NOT localised and is stable, so you can make logical decisions based on it's value
Implements com.gallagher.security.mobileaccess.StringValueConvertible.
42 {
43 switch (this) {
45 return "veryLow";
47 return "low";
49 return "normal";
50 default:
51 throw new FatalError("Impossible value for BluetoothConnectionSensitivity enum");
52 }
53 }
NORMAL
Adjusts the observed path loss for nearby readers by 0 dBm.
Definition: BluetoothConnectionSensitivity.java:17
LOW
Adjusts the observed path loss for nearby readers by -2.5 dBm.
Definition: BluetoothConnectionSensitivity.java:14
VERY_LOW
Adjusts the observed path loss for nearby readers by -5 dBm.
Definition: BluetoothConnectionSensitivity.java:11
The documentation for this enum was generated from the following file:
- BluetoothConnectionSensitivity.java