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

com.vladsch.flexmark.util.format.options.ElementAlignment Maven / Gradle / Ivy

The newest version!
package com.vladsch.flexmark.util.format.options;

public enum ElementAlignment {
  NONE,
  LEFT_ALIGN,
  RIGHT_ALIGN,
  ;

  public boolean isNoChange() {
    return this == NONE;
  }

  public boolean isRight() {
    return this == RIGHT_ALIGN;
  }

  public boolean isLeft() {
    return this == LEFT_ALIGN;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy