All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.ciechanowiec.sling.rocket.asset.image.BitResolution Maven / Gradle / Ivy

There is a newer version: 13.32.0
Show newest version
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