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

kz.greetgo.msoffice.xlsx.gen.BorderStyle Maven / Gradle / Ivy

There is a newer version: 0.5.9
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy