Package com.helger.pdflayout.link
Enum ELinkHighlightMode
- java.lang.Object
-
- java.lang.Enum<ELinkHighlightMode>
-
- com.helger.pdflayout.link.ELinkHighlightMode
-
- All Implemented Interfaces:
Serializable,Comparable<ELinkHighlightMode>
public enum ELinkHighlightMode extends Enum<ELinkHighlightMode>
Contains the highlight mode for links.- Author:
- Philip Helger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVERTConstant values of the Text as defined in the PDF 1.6 reference Table 8.19.NONEConstant values of the Text as defined in the PDF 1.6 reference Table 8.19.OUTLINEConstant values of the Text as defined in the PDF 1.6 reference Table 8.19.PUSHConstant values of the Text as defined in the PDF 1.6 reference Table 8.19.
-
Field Summary
Fields Modifier and Type Field Description static ELinkHighlightModeDEFAULT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetID()static ELinkHighlightModevalueOf(String name)Returns the enum constant of this type with the specified name.static ELinkHighlightMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
-
Field Detail
-
DEFAULT
public static final ELinkHighlightMode DEFAULT
-
-
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 nameNullPointerException- if the argument is null
-
-