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

cdc.gv.labels.GvStyle Maven / Gradle / Ivy

There is a newer version: 0.100.2
Show newest version
package cdc.gv.labels;

import cdc.gv.support.GvEncodable;

/**
 * Enumeration of possible Table or Cell styles.
 *
 * @author Damien Carbonne
 *
 */
public enum GvStyle implements GvEncodable {
    /** Cells. */
    RADIAL,
    /** Tables and Cells. */
    ROUNDED;

    @Override
    public String encode() {
        return name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy