Enum LineAlign
- java.lang.Object
-
- java.lang.Enum<LineAlign>
-
- io.codeworth.panelmatic.componentbehavior.LineAlign
-
- All Implemented Interfaces:
Serializable,Comparable<LineAlign>
public enum LineAlign extends Enum<LineAlign>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LineAlignvalueOf(String name)Returns the enum constant of this type with the specified name.static LineAlign[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final LineAlign START
Where the first letter in a line would be. Left for Western locales, right for Hebrew and Arabic.
-
CENTER
public static final LineAlign CENTER
Center of the line.
-
END
public static final LineAlign END
Where the last letter of a line would be. Right in Western locales.
-
-
Method Detail
-
values
public static LineAlign[] 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 (LineAlign c : LineAlign.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LineAlign 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
-
-