kz.greetgo.msoffice.xlsx.gen.Align 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;
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();
}
}