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

com.testfabrik.webmate.javasdk.devices.DevicePropertyName Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.devices;

import com.fasterxml.jackson.annotation.JsonValue;

public enum DevicePropertyName {
    Console("automation.available"),
    Resolution("console.resolution"),
    ChangeResolution("console.changeResolution"),
    SlotId("webmate.slotId"),
    ProviderType("webmate.providerType"),
    Locale("os.locale"),
    Model("machine.model"),
    Platform("machine.platform"),
    ManufacturerName("machine.manufacturer");

    public final String property;

    DevicePropertyName(String property) {
        this.property = property;
    }

    @JsonValue
    public String toValue() {
        return this.property;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy