Enum Class GlyphAlignment
- All Implemented Interfaces:
Serializable, Comparable<GlyphAlignment>, Constable
字形对齐模式
SOURCE 为保留源画布中的原始留白与落点 GLYPH_CENTER 为忽略源画布留白,按实际字形外接框居中
- Since:
- 2026-07-16 22:20
- Author:
- Codex
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic GlyphAlignmentReturns the enum constant of this class with the specified name.static GlyphAlignment[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOURCE
保留源画布落点 -
GLYPH_CENTER
按实际字形居中
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-