Class FontResolutionPriority
java.lang.Object
com.adobe.fontengine.fontmanagement.FontResolutionPriority
- All Implemented Interfaces:
Serializable
This class provides an enumeration of the allowable values for use in setting the resolution
priority in the variety of font sets that are stored in CAFE. Not every font set uses every
font resolution priority.
Examples of the use of these priority levels are available in:
CSS20FontSet.setResolutionPriority.
PSNameResolver.setResolutionPriority.
Concurrency
Instances of this class are immutable after construction and contain no mutable static data. Therefore, they are threadsafe.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final FontResolutionPriorityIn the case of conflicts choose the font which was added to the font set first.static final FontResolutionPriorityThis is an alias forINTELLIGENT_LAST.static final FontResolutionPriorityIn the case of conflicts choose the font using an "intelligent" font resolution process.static final FontResolutionPriorityIn the case of conflicts choose the font using an "intelligent" font resolution process.static final FontResolutionPriorityIn the case of conflicts choose the font which was added to the font set last. -
Method Summary
Modifier and TypeMethodDescriptionstatic FontResolutionPriorityParse the text and return the FontResolutionPriority object which is represented if any.toString()
-
Field Details
-
INTELLIGENT_LAST
In the case of conflicts choose the font using an "intelligent" font resolution process. If two fonts appear to be the same under "intelligent" selection choose the one that was added last. -
INTELLIGENT
This is an alias forINTELLIGENT_LAST. -
INTELLIGENT_FIRST
In the case of conflicts choose the font using an "intelligent" font resolution process. If two fonts appear to be the same under "intelligent" selection choose the one that was added last. -
FIRST
In the case of conflicts choose the font which was added to the font set first. -
LAST
In the case of conflicts choose the font which was added to the font set last.
-
-
Method Details