eu.ciechanowiec.sling.rocket.asset.image.BitResolution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sling.rocket.commons Show documentation
Show all versions of sling.rocket.commons Show documentation
Common utilities used by Sling Rocket
package eu.ciechanowiec.sling.rocket.asset.image;
import lombok.AccessLevel;
import lombok.Getter;
enum BitResolution {
MIN_64(64),
AVG_128(128),
MAX_256(256),
DEFAULT(256);
@Getter(AccessLevel.PACKAGE)
private final int value;
BitResolution(int value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy