com.vladsch.flexmark.util.format.TextAlignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-format Show documentation
Show all versions of flexmark-util-format Show documentation
flexmark-java format utility classes
The newest version!
package com.vladsch.flexmark.util.format;
public enum TextAlignment {
LEFT,
CENTER,
RIGHT,
JUSTIFIED;
public static TextAlignment getAlignment(String alignment) {
for (TextAlignment cellAlignment : values()) {
if (cellAlignment.name().equalsIgnoreCase(alignment)) {
return cellAlignment;
}
}
return LEFT;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy