Package es.situm.sdk.model.calibration
Class CalibrationScans
- java.lang.Object
-
- es.situm.sdk.model.calibration.CalibrationScans
-
public class CalibrationScans extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CalibrationScans(java.lang.String calibrationId, java.util.List<CartesianCoordinate> gt, java.util.List<CartesianCoordinate> wifi, java.util.List<CartesianCoordinate> ble)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CartesianCoordinate>
getBle()
java.lang.String
getCalibrationIdentifier()
java.util.List<CartesianCoordinate>
getGt()
java.util.List<CartesianCoordinate>
getWifi()
boolean
hasBle()
boolean
hasGt()
boolean
hasWifi()
-
-
-
Constructor Detail
-
CalibrationScans
public CalibrationScans(java.lang.String calibrationId, @Nullable java.util.List<CartesianCoordinate> gt, @Nullable java.util.List<CartesianCoordinate> wifi, @Nullable java.util.List<CartesianCoordinate> ble)
-
-
Method Detail
-
getCalibrationIdentifier
public java.lang.String getCalibrationIdentifier()
-
hasGt
public boolean hasGt()
-
hasWifi
public boolean hasWifi()
-
hasBle
public boolean hasBle()
-
getGt
@Nullable public java.util.List<CartesianCoordinate> getGt()
-
getWifi
@Nullable public java.util.List<CartesianCoordinate> getWifi()
-
getBle
@Nullable public java.util.List<CartesianCoordinate> getBle()
-
-