Class SeacPhase
- java.lang.Object
-
- com.adobe.fontengine.font.postscript.SeacPhase
-
public final class SeacPhase extends java.lang.Object
An "enum" that describes the phases of seac that a type1 or type2 outline parser can be in.Synchronization
This class is immutable after contruction and contains no mutable static data. It is therefore threadsafe.
-
-
Field Summary
Fields Modifier and Type Field Description static SeacPhase
seacAccentPostMove
The accent glyph is being parsed and the first moveto has been seenstatic SeacPhase
seacAccentPreMove
The accent glyph is being parsed and the first moveto has not been seenstatic SeacPhase
seacBase
The base glyph is being parsedstatic SeacPhase
seacNone
No seac has been seen in the current glyph
-
-
-
Field Detail
-
seacNone
public static final SeacPhase seacNone
No seac has been seen in the current glyph
-
seacBase
public static final SeacPhase seacBase
The base glyph is being parsed
-
seacAccentPreMove
public static final SeacPhase seacAccentPreMove
The accent glyph is being parsed and the first moveto has not been seen
-
seacAccentPostMove
public static final SeacPhase seacAccentPostMove
The accent glyph is being parsed and the first moveto has been seen
-
-