io.github.mngsk.devicedetector.device.CarDeviceParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of device-detector Show documentation
Show all versions of device-detector Show documentation
The Universal Device Detection library that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, feed readers, media players, PIMs, ...), operating systems, brands and models.
package io.github.mngsk.devicedetector.device;
import com.fasterxml.jackson.databind.ObjectMapper;
public class CarDeviceParser extends AbstractDeviceParser {
public CarDeviceParser() {
super("regexes/device/car_browsers.yml");
}
public CarDeviceParser(ObjectMapper objectMapper) {
super("regexes/device/car_browsers.yml", objectMapper);
}
}