Package com.adobe.fontengine.font
Class Permission
- java.lang.Object
-
- com.adobe.fontengine.font.Permission
-
public final class Permission extends java.lang.ObjectDescribes the usage rights associated with a font.
-
-
Field Summary
Fields Modifier and Type Field Description static PermissionEDITABLEEmbedding permission: can embed for editingstatic PermissionILLEGAL_VALUEEmbedding permission: the value in the font is not a legal one.static PermissionINSTALLABLEEmbedding permission: can embed for installationstatic PermissionPREVIEW_AND_PRINTEmbedding permission: can embed for preview and printstatic PermissionRESTRICTEDEmbedding permission: cannot embed the font
-
-
-
Field Detail
-
RESTRICTED
public static final Permission RESTRICTED
Embedding permission: cannot embed the font
-
PREVIEW_AND_PRINT
public static final Permission PREVIEW_AND_PRINT
Embedding permission: can embed for preview and print
-
EDITABLE
public static final Permission EDITABLE
Embedding permission: can embed for editing
-
INSTALLABLE
public static final Permission INSTALLABLE
Embedding permission: can embed for installation
-
ILLEGAL_VALUE
public static final Permission ILLEGAL_VALUE
Embedding permission: the value in the font is not a legal one. This value is never returned from AFE's public APIs. It is always resolved to one of the above based on the context.
-
-