Package org.jvision.sensor
Interface Sensor
- All Known Subinterfaces:
DigitalCameraSensor
public interface Sensor
A sensor represents an identified device that can produce data along modalities.
- Version:
- "1.0.0" b202104211400L
- Author:
- Julien Seinturier - JOrigin - contact@jorigin.org - https://github.com/jorigin/jvision
-
Method Summary
Modifier and TypeMethodDescriptionGet the identifier of the sensor.Get the sensor manufacturer.Get the sensor model.Get the serial number of the sensor.Get the type of the sensor.voidsetIdentifier(String identifier)Set the identifier of the sensor.voidsetSensorManufacturer(String manufacturer)Set the sensor manufacturer.voidsetSensorModel(String model)Set the sensor model.voidsetSensorSerialNumber(String serialNumber)Set the serial number of the sensor.voidsetSensorType(String type)Set the type of the sensor.
-
Method Details
-
getIdentifier
String getIdentifier()Get the identifier of the sensor.- Returns:
- the identifier of the sensor
- See Also:
getIdentifier()
-
setIdentifier
Set the identifier of the sensor.- Parameters:
identifier- the identifier of the sensor- See Also:
getIdentifier()
-
getSensorType
String getSensorType()Get the type of the sensor.- Returns:
- the type of the sensor
- See Also:
setSensorType(String)
-
setSensorType
Set the type of the sensor.- Parameters:
type- the type of the sensor.- See Also:
getSensorType()
-
getSensorModel
String getSensorModel()Get the sensor model.- Returns:
- the sensor model
- See Also:
setSensorModel(String)
-
setSensorModel
Set the sensor model.- Parameters:
model- the sensor model- See Also:
getSensorModel()
-
getSensorSerialNumber
String getSensorSerialNumber()Get the serial number of the sensor.- Returns:
- the serial number of the sensor.
- See Also:
setSensorSerialNumber(String)
-
setSensorSerialNumber
Set the serial number of the sensor.- Parameters:
serialNumber- the serial number of the sensor- See Also:
getSensorSerialNumber()
-
getSensorManufacturer
String getSensorManufacturer()Get the sensor manufacturer.- Returns:
- the sensor manufacturer
- See Also:
setSensorManufacturer(String)
-
setSensorManufacturer
Set the sensor manufacturer.- Parameters:
manufacturer- the sensor manufacturer- See Also:
getSensorManufacturer()
-