com.applitools.eyes.selenium.positioning.ImageRotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java3-jboss Show documentation
Show all versions of eyes-selenium-java3-jboss Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium.positioning;
/**
* Encapsulates rotation data for images.
*/
public class ImageRotation {
private final int rotation;
/**
*
* @param rotation The degrees by which to rotate.
*/
public ImageRotation(int rotation) {
this.rotation = rotation;
}
/**
*
* @return The degrees by which to rotate.
*/
public int getRotation() {
return rotation;
}
}