com.vladsch.flexmark.util.html.CellAlignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-html Show documentation
Show all versions of flexmark-util-html Show documentation
flexmark-java html utility classes
The newest version!
package com.vladsch.flexmark.util.html;
public enum CellAlignment {
NONE,
LEFT,
CENTER,
RIGHT;
public static CellAlignment getAlignment(String alignment) {
for (CellAlignment cellAlignment : values()) {
if (cellAlignment.name().equalsIgnoreCase(alignment)) {
return cellAlignment;
}
}
return NONE;
}
}