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

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

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

import cdc.gv.support.GvEncodable;

public enum GvTextModifier implements GvEncodable {
    BOLD("b"),
    ITALIC("i"),
    UNDERLINE("u"),
    OVERLINE("o"),
    SUB_SCRIPT("sub"),
    SUPER_SCRIPT("sup"),
    STRIKE_THROUGH("s");

    private final String code;

    private GvTextModifier(String code) {
        this.code = code;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy