com.applitools.eyes.visualgridclient.model.ScreenOrientation Maven / Gradle / Ivy
package com.applitools.eyes.visualgridclient.model;
import com.fasterxml.jackson.annotation.JsonValue;
public enum ScreenOrientation {
PORTRAIT("portrait"),
LANDSCAPE("landscape");
private String orientation;
ScreenOrientation(String orientation) {
this.orientation = orientation;
}
@JsonValue
public String getOrientation() {
return orientation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy