All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.malinskiy.marathon.device.DeviceFeature.kt Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package com.malinskiy.marathon.device

import com.fasterxml.jackson.annotation.JsonCreator

enum class DeviceFeature {
    VIDEO,
    SCREENSHOT;

    companion object {
        @JvmStatic
        @JsonCreator
        fun fromString(key: String?): DeviceFeature? {
            return key?.let {
                DeviceFeature.valueOf(it.toUpperCase())
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy