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

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

There is a newer version: 0.5.9
Show newest version
package kz.greetgo.msoffice.xlsx.gen;

public enum Align {

  left("l", "low"), //
  top("t", "low"), //
  right("r", "nextTo"), //
  bottom("b", "low"), //
  center("c", "low");

  private String tag;
  private String tagOY;

  Align(String tag, String tagOY) {
    this.tag = tag;
    this.tagOY = tagOY;
  }

  /**
   * Значение в xml для выравнивания
   */
  String getTag() {
    return tag;
  }

  /**
   * Значение в xml для выравнивания подписей по оси OY
   */
  String getTagOY() {
    return tagOY;
  }

  public String str() {
    return name();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy