
objects.PlatformType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mobile-opencv-image-recognition-library Show documentation
Show all versions of mobile-opencv-image-recognition-library Show documentation
Library for image recognition that can be used in mobile testing with for example Appium
The newest version!
package objects;
public enum PlatformType {
ANDROID("Android"),
IOS("iOS");
PlatformType(String platformName){
this.platformName=platformName;
}
public String getPlatformName(){
return this.platformName;
}
private String platformName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy