Enum Class GlyphAlignment

java.lang.Object
java.lang.Enum<GlyphAlignment>
com.imyeyu.font.icon.model.GlyphAlignment
All Implemented Interfaces:
Serializable, Comparable<GlyphAlignment>, Constable

public enum GlyphAlignment extends Enum<GlyphAlignment>

字形对齐模式

SOURCE 为保留源画布中的原始留白与落点 GLYPH_CENTER 为忽略源画布留白,按实际字形外接框居中

Since:
2026-07-16 22:20
Author:
Codex
  • Enum Constant Details

    • SOURCE

      public static final GlyphAlignment SOURCE
      保留源画布落点
    • GLYPH_CENTER

      public static final GlyphAlignment GLYPH_CENTER
      按实际字形居中
  • Method Details

    • values

      public static GlyphAlignment[] 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

      public static GlyphAlignment valueOf(String name)
      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 name
      NullPointerException - if the argument is null