Enum ElementAlignment
- java.lang.Object
-
- java.lang.Enum<ElementAlignment>
-
- com.vladsch.flexmark.util.format.options.ElementAlignment
-
- All Implemented Interfaces:
Serializable,Comparable<ElementAlignment>
public enum ElementAlignment extends Enum<ElementAlignment>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEFT_ALIGNNONERIGHT_ALIGN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisLeft()booleanisNoChange()booleanisRight()static ElementAlignmentvalueOf(String name)Returns the enum constant of this type with the specified name.static ElementAlignment[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ElementAlignment NONE
-
LEFT_ALIGN
public static final ElementAlignment LEFT_ALIGN
-
RIGHT_ALIGN
public static final ElementAlignment RIGHT_ALIGN
-
-
Method Detail
-
values
public static ElementAlignment[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ElementAlignment c : ElementAlignment.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElementAlignment valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isNoChange
public boolean isNoChange()
-
isRight
public boolean isRight()
-
isLeft
public boolean isLeft()
-
-