Package com.datalogics.PDFL
Enum Class AnnotationFlags
- All Implemented Interfaces:
Serializable,Comparable<AnnotationFlags>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe annotation is not visible and does not print.If there is no annotation handler, the annotation is invisible.The annotation does not move or resize with the view.If the annotation is content-locked, the user can not change its content key.The annotation does not rotate with the page.The annotation does not view but can print.The annotation does not zoom with the view.The annotation prints.The annotation does not interact with the user.A mouse-over or selection causes the noView bit to toggle. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnnotationFlagsReturns the enum constant of this class with the specified name.static AnnotationFlags[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INVISIBLE
If there is no annotation handler, the annotation is invisible. -
HIDDEN
The annotation is not visible and does not print. -
PRINT
The annotation prints. -
NO_ZOOM
The annotation does not zoom with the view. -
NO_ROTATE
The annotation does not rotate with the page. -
NO_VIEW
The annotation does not view but can print. -
READ_ONLY
The annotation does not interact with the user. -
LOCK
The annotation does not move or resize with the view. Only form fields respect this flag. If the annotation is locked, the user cannot delete, move or change its associated form field's properties. -
TOGGLE_NO_VIEW
A mouse-over or selection causes the noView bit to toggle. -
LOCK_CONTENTS
If the annotation is content-locked, the user can not change its content key.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-