Uses of Class
de.unikassel.android.sdcframework.devices.facade.SensorDeviceIdentifier

Packages that use SensorDeviceIdentifier
de.unikassel.android.sdcframework.data Does contain the classes and interfaces covering the data sample part as well as the service configuration data classes. 
de.unikassel.android.sdcframework.devices Does contain the sensor device specific classes, like the sensor devices, the device manager and the device factory. 
de.unikassel.android.sdcframework.devices.facade Provides the interfaces for the device package. 
de.unikassel.android.sdcframework.preferences Provides the classes to manage preferences, service configurations values and defaults. 
de.unikassel.android.sdcframework.preferences.facade Provides the interfaces for the preference package. 
 

Uses of SensorDeviceIdentifier in de.unikassel.android.sdcframework.data
 

Constructors in de.unikassel.android.sdcframework.data with parameters of type SensorDeviceIdentifier
Sample(SensorDeviceIdentifier id)
          Constructor
Sample(SensorDeviceIdentifier id, long timeStamp, int priority, boolean timeSynced)
          Constructor
 

Uses of SensorDeviceIdentifier in de.unikassel.android.sdcframework.devices
 

Fields in de.unikassel.android.sdcframework.devices declared as SensorDeviceIdentifier
private  SensorDeviceIdentifier AbstractSensorDevice.deviceIdentifier
          The sensor device deviceIdentifier
 

Fields in de.unikassel.android.sdcframework.devices with type parameters of type SensorDeviceIdentifier
private  Map<SensorDeviceIdentifier,SensorDevice> SensorDeviceManagerImpl.mapDevices
          The sensor device map
private  Vector<SensorDeviceIdentifier> SensorDeviceAvailabilityTester.vecSensorDevices
          Vector to store the detected sensor devices
 

Methods in de.unikassel.android.sdcframework.devices that return SensorDeviceIdentifier
 SensorDeviceIdentifier AbstractSensorDevice.getDeviceIdentifier()
           
 

Methods in de.unikassel.android.sdcframework.devices that return types with arguments of type SensorDeviceIdentifier
 List<SensorDeviceIdentifier> SensorDeviceAvailabilityTester.getAvailableSensorDevices()
          Getter for available Sensor devices
private  Map<SensorDeviceIdentifier,SensorDevice> SensorDeviceManagerImpl.getMapDevices()
          Getter for the devices map
private  Vector<SensorDeviceIdentifier> SensorDeviceAvailabilityTester.getVecSensorDevices()
          Getter for the vecSensorDevices
 

Methods in de.unikassel.android.sdcframework.devices with parameters of type SensorDeviceIdentifier
 Sample SampleFactory.createSample(TimeInformation timeInfo, SensorDeviceIdentifier id, int priority, SampleData data)
          Method to create a sample from available information
 SensorDevice SensorDeviceFactoryImpl.createSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
           
private  SensorDevice SensorDeviceFactoryImpl.doCreateSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
          Internal device creation method
private  SensorDeviceScanner SensorDeviceFactoryImpl.doCreateSensorDeviceScanner(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
          Internal sensor device scanner creation method
private  SensorDeviceConfiguration SensorDeviceManagerImpl.getConfiguration(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
          Does determine the current device configuration
private  boolean SensorDeviceAvailabilityTester.isDeviceAvailable(SensorDeviceIdentifier identifier, Context applicationContext)
          Test method for availability of a specific sensor device
protected  void AbstractSensorDevice.setDeviceIdentifier(SensorDeviceIdentifier deviceIdentifier)
          Setter for the device identifier
 

Method parameters in de.unikassel.android.sdcframework.devices with type arguments of type SensorDeviceIdentifier
 void SensorDeviceAvailabilityTester.configure(Set<SensorDeviceIdentifier> configuredDevices, Context applicationContext)
          Method to inject the sensor devices from service configuration
private  void SensorDeviceAvailabilityTester.detectAvailableSensorDevices(Set<SensorDeviceIdentifier> configuredDevices, Context applicationContext)
          Does detect available sensor devices
private  void SensorDeviceManagerImpl.setMapDevices(Map<SensorDeviceIdentifier,SensorDevice> mapDevices)
          Setter for the devices map
private  void SensorDeviceAvailabilityTester.setVecSensorDevices(Vector<SensorDeviceIdentifier> vecSensorDevices)
          Setter for the vecSensorDevices
 

Constructors in de.unikassel.android.sdcframework.devices with parameters of type SensorDeviceIdentifier
AbstractAndroidSensorDevice(SensorDeviceIdentifier deviceId, int androidSensorType, Context context, int sensorDelay)
          Constructor
AbstractLocationDevice(Context context, SensorDeviceIdentifier id, String provider)
          Constructor
AbstractSensorDevice(SensorDeviceIdentifier deviceId)
          Constructor for devices with an Android sub type
SamplingCausingAndroidSensorDevice(SensorDeviceIdentifier deviceId, int androidSensorType, Context context, int sensorDelay)
          Constructor
ScannerStateAwareSensorDevice(SensorDeviceIdentifier deviceId)
          Constructor
SystemBroadcastReceivingDevice(SensorDeviceIdentifier deviceId)
          Constructor
SystemBroadcastReceivingDevice(SensorDeviceIdentifier deviceId, Context applicationContext)
          Constructor
VirtualSensorDevice(SensorDeviceIdentifier deviceId)
          Constructor
 

Uses of SensorDeviceIdentifier in de.unikassel.android.sdcframework.devices.facade
 

Methods in de.unikassel.android.sdcframework.devices.facade that return SensorDeviceIdentifier
 SensorDeviceIdentifier SensorDevice.getDeviceIdentifier()
          Getter for the sensors device identifier
static SensorDeviceIdentifier SensorDeviceIdentifier.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SensorDeviceIdentifier[] SensorDeviceIdentifier.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.unikassel.android.sdcframework.devices.facade with parameters of type SensorDeviceIdentifier
 SensorDevice SensorDeviceFactory.createSensorDevice(SensorDeviceIdentifier deviceIdentifier, Context appContext)
          Sensor device creation
 

Uses of SensorDeviceIdentifier in de.unikassel.android.sdcframework.preferences
 

Fields in de.unikassel.android.sdcframework.preferences declared as SensorDeviceIdentifier
private  SensorDeviceIdentifier SensorDevicePreferencesImpl.deviceID
          The device identifier
private  SensorDeviceIdentifier SensorDeviceConfigurationChangeEventImpl.identifier
          The device identifier
 

Fields in de.unikassel.android.sdcframework.preferences with type parameters of type SensorDeviceIdentifier
private  Map<SensorDeviceIdentifier,SensorDeviceConfiguration> SDCConfigurationManager.mapDeviceDefaults
          The map with available device defaults
private  Map<SensorDeviceIdentifier,SensorDevicePreferences> DevicePreferencesCollectionImpl.mapPreferences
          the contained sub devices of the sensor composition
 

Methods in de.unikassel.android.sdcframework.preferences that return SensorDeviceIdentifier
 SensorDeviceIdentifier SensorDeviceConfigurationChangeEventImpl.getDeviceIdentifier()
           
 SensorDeviceIdentifier SensorDevicePreferencesImpl.getDeviceIdentifier()
           
 

Methods in de.unikassel.android.sdcframework.preferences that return types with arguments of type SensorDeviceIdentifier
 Set<SensorDeviceIdentifier> SDCConfigurationManager.getListDevices()
          Getter for the configured sensor devices
private  Map<SensorDeviceIdentifier,SensorDevicePreferences> DevicePreferencesCollectionImpl.getPreferencesMap()
          Getter for the the preferences map
 

Methods in de.unikassel.android.sdcframework.preferences with parameters of type SensorDeviceIdentifier
 SensorDeviceConfiguration ApplicationPreferenceManagerImpl.getDeviceConfiguration(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
           
 SensorDevicePreferences DevicePreferencesCollectionImpl.getPreferencesForDevice(SensorDeviceIdentifier deviceIdentifier)
           
 SensorDevicePreferences ApplicationPreferenceManagerImpl.getPreferencesForDevice(SensorDeviceIdentifier deviceIdentifier)
           
private  void SensorDevicePreferencesImpl.setDeviceIdentifier(SensorDeviceIdentifier identifier)
          Setter for the device identifier
 

Method parameters in de.unikassel.android.sdcframework.preferences with type arguments of type SensorDeviceIdentifier
private  void DevicePreferencesCollectionImpl.setPreferencesMap(Map<SensorDeviceIdentifier,SensorDevicePreferences> mapPreferences)
          Setter for the preferences map
 

Constructors in de.unikassel.android.sdcframework.preferences with parameters of type SensorDeviceIdentifier
SensorDeviceConfigurationChangeEventImpl(SensorDeviceConfiguration configuration, SensorDeviceIdentifier identifier)
          Constructor
SensorDevicePreferencesImpl(SensorDeviceIdentifier deviceID)
          Constructor
 

Uses of SensorDeviceIdentifier in de.unikassel.android.sdcframework.preferences.facade
 

Methods in de.unikassel.android.sdcframework.preferences.facade that return SensorDeviceIdentifier
 SensorDeviceIdentifier SensorDeviceConfigurationChangeEvent.getDeviceIdentifier()
          Getter for the sensor device identifier this update is for
 SensorDeviceIdentifier SensorDevicePreferences.getDeviceIdentifier()
          Getter for the device identifier
 

Methods in de.unikassel.android.sdcframework.preferences.facade with parameters of type SensorDeviceIdentifier
 SensorDeviceConfiguration ApplicationPreferenceManager.getDeviceConfiguration(SensorDeviceIdentifier deviceIdentifier, Context applicationContext)
          Access to device configurations created from current device preferences
 SensorDevicePreferences DevicePreferencesCollection.getPreferencesForDevice(SensorDeviceIdentifier deviceIdentifier)
          Getter for specific device preferences
 SensorDevicePreferences ApplicationPreferenceManager.getPreferencesForDevice(SensorDeviceIdentifier deviceIdentifier)
          Getter for specific device preferences