com.applitools.eyes.ScaleMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-java-jersey2x Show documentation
Show all versions of eyes-sdk-java-jersey2x Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes;
import org.imgscalr.Scalr;
/**
* The list of possible scaling methods.
*/
public enum ScaleMethod {
SPEED (Scalr.Method.SPEED),
QUALITY (Scalr.Method.QUALITY),
@SuppressWarnings("unused") ULTRA_QUALITY (Scalr.Method.ULTRA_QUALITY);
private Scalr.Method method;
public static ScaleMethod getDefault() {
return SPEED;
}
ScaleMethod(Scalr.Method method) {
this.method = method;
}
public Scalr.Method getMethod() {
return method;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy