Package es.situm.sdk.location
Enum Class LocationRequest.IndoorProvider
- All Implemented Interfaces:
Serializable,Comparable<LocationRequest.IndoorProvider>,Constable
- Enclosing class:
- LocationRequest
Deprecated.
This Enum is no longer used, the SDK always computes the geolocations in the same way (in the device without continuosly accessing the internet, behaving like the old INPHONE mode).
The indoor provider used to determine how positioning was computed:
- In the cloud: SDK sent sensor data to cloud, cloud answered back with the geolocation
- In phone: everything was computed in the smartphone, no need to send and receive data from the cloud continuously
- Hybrid: cloud was used most of the time, switching to in phone when no data connectivity was available
- Support: Situm debugging purposes only.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the enum constant of this class with the specified name.static LocationRequest.IndoorProvider[]values()Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
HYBRID
Deprecated.INPHONE mode will be used insteadMixes CLOUD and INPHONE location providers. By default it will use CLOUD and will change to INPHONE if no internet connection is available. -
CLOUD
Deprecated.INPHONE mode will be used insteadThe SDK gathers and sends data to the cloud, and receives the geolocation (computed in the cloud) as response. Requires continuous internet connectivity. -
INPHONE
Deprecated.Default. All the positioning processing will be done in the device (no sending data back and forth to the cloud, unlike the CLOUD mode). -
SUPPORT
Deprecated.INPHONE mode will be used insteadActivates support mode, only for Situm internal debugging purposes. This provider should not be used without Situm guidance.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-