Enum Class AnnotationFlags

java.lang.Object
java.lang.Enum<AnnotationFlags>
com.datalogics.PDFL.AnnotationFlags
All Implemented Interfaces:
Serializable, Comparable<AnnotationFlags>, Constable

public enum AnnotationFlags extends Enum<AnnotationFlags>
  • Enum Constant Details

    • INVISIBLE

      public static final AnnotationFlags INVISIBLE
      If there is no annotation handler, the annotation is invisible.
    • HIDDEN

      public static final AnnotationFlags HIDDEN
      The annotation is not visible and does not print.
    • PRINT

      public static final AnnotationFlags PRINT
      The annotation prints.
    • NO_ZOOM

      public static final AnnotationFlags NO_ZOOM
      The annotation does not zoom with the view.
    • NO_ROTATE

      public static final AnnotationFlags NO_ROTATE
      The annotation does not rotate with the page.
    • NO_VIEW

      public static final AnnotationFlags NO_VIEW
      The annotation does not view but can print.
    • READ_ONLY

      public static final AnnotationFlags READ_ONLY
      The annotation does not interact with the user.
    • LOCK

      public static final AnnotationFlags 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

      public static final AnnotationFlags TOGGLE_NO_VIEW
      A mouse-over or selection causes the noView bit to toggle.
    • LOCK_CONTENTS

      public static final AnnotationFlags LOCK_CONTENTS
      If the annotation is content-locked, the user can not change its content key.
  • Method Details

    • values

      public static AnnotationFlags[] 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

      public static AnnotationFlags valueOf(String name)
      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 name
      NullPointerException - if the argument is null