Enum ELinkHighlightMode

    • Enum Constant Detail

      • NONE

        public static final ELinkHighlightMode NONE
        Constant values of the Text as defined in the PDF 1.6 reference Table 8.19.
      • INVERT

        public static final ELinkHighlightMode INVERT
        Constant values of the Text as defined in the PDF 1.6 reference Table 8.19.
      • OUTLINE

        public static final ELinkHighlightMode OUTLINE
        Constant values of the Text as defined in the PDF 1.6 reference Table 8.19.
      • PUSH

        public static final ELinkHighlightMode PUSH
        Constant values of the Text as defined in the PDF 1.6 reference Table 8.19.
    • Method Detail

      • values

        public static ELinkHighlightMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ELinkHighlightMode c : ELinkHighlightMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ELinkHighlightMode 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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null