(int deviceType, int deviceId)
| 158 | public final int deviceId; |
| 159 | |
| 160 | public Device(int deviceType, int deviceId) { |
| 161 | this.deviceType = deviceType; |
| 162 | this.deviceId = deviceId; |
| 163 | } |
| 164 | |
| 165 | public Device(String deviceType, int deviceId) { |
| 166 | this(DEVICE_NAME_TO_TYPE.get(deviceType), deviceId); |