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

com.vladsch.flexmark.util.format.TextAlignment Maven / Gradle / Ivy

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