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

cdc.perfs.ui.Rendering Maven / Gradle / Ivy

There is a newer version: 0.52.0
Show newest version
package cdc.perfs.ui;

/**
 * Enumeration of possible UI rendering hints.
 *
 * @author Damien Carbonne
 *
 */
public enum Rendering {
    FASTEST("Fastest"),
    BEST("Best");

    private final String label;

    private Rendering(String label) {
        this.label = label;
    }

    public String getLabel() {
        return label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy