kz.greetgo.msoffice.xlsx.gen.BorderStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.msoffice Show documentation
Show all versions of greetgo.msoffice Show documentation
greetgo library to generate or parse MS Office files
package kz.greetgo.msoffice.xlsx.gen;
/**
* Стил бордюра
*
* @author pompei
*/
public enum BorderStyle {
hair, dotted, dashDotDot, dashDot, dashed, thin, mediumDashDotDot, slantDashDot, mediumDashDot,
mediumDashed, medium, thick, _double;
public String str() {
if (name().startsWith("_")) return name().substring(1);
return name();
}
}