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

com.appium.entities.MobilePlatform Maven / Gradle / Ivy

There is a newer version: 14.0.4
Show newest version
package com.appium.entities;

/**
 * Created by saikrisv on 2016/11/16.
 */
public enum MobilePlatform {

    IOS("IOS"),
    ANDROID("ANDROID");

    public final String platformName;
    MobilePlatform(String platformName) {
        this.platformName = platformName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy