Enum Class HighlightStyle

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

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

    • NONE

      public static final HighlightStyle NONE
      Do not highlight this link
    • INVERT

      public static final HighlightStyle INVERT
      Highlight by inverting the contents of the rectangle
    • OUTLINE

      public static final HighlightStyle OUTLINE
      Highlight by inverting the border
    • PUSH

      public static final HighlightStyle PUSH
      Display the annotation as if it were being pushed below the page surface (like a button)
    • TOGGLE

      public static final HighlightStyle TOGGLE
      Toggle: synonym for Push
  • Method Details

    • values

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