Enum ApplicationPolicy.PolicyEvent
-
- All Implemented Interfaces:
public enum ApplicationPolicy.PolicyEvent
Currently supported policy events.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TEXT_COPY_PASTE
Copy/paste policy event. Checked when user selects text on page to determine if copying text is allowed. All features related to this such as sharing and copying/pasting into the search bar will be disabled if copying text is not allowed.
ANNOTATION_COPY_PASTE_SYSTEM_INTEGRATION
Annotation copy/paste system clipboard integration policy event. If this is enabled:
- The text of copied free-text annotation will be put in the system clipboard and text copied to the system clipboard can be pasted as FreeTextAnnotations.
- The image of copied image stamp annotation will be put in the system clipboard and image copied to the system clipboard can be pasted as image annotations.
-
Method Summary
Modifier and Type Method Description static Array<ApplicationPolicy.PolicyEvent>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static ApplicationPolicy.PolicyEvent
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<ApplicationPolicy.PolicyEvent> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static ApplicationPolicy.PolicyEvent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-