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

net.n2oapp.framework.autotest.BadgeShape Maven / Gradle / Ivy

The newest version!
package net.n2oapp.framework.autotest;

public enum BadgeShape {
    CIRCLE("circle"),
    ROUNDED("rounded"),
    SQUARE("square");

    private final String shape;

    BadgeShape(String shape) {
        this.shape = shape;
    }

    public String name(String prefix) {
        return prefix + shape;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy