Package com.itextpdf.kernel.pdf.annot.da
Enum ExtendedAnnotationFont
- java.lang.Object
-
- java.lang.Enum<ExtendedAnnotationFont>
-
- com.itextpdf.kernel.pdf.annot.da.ExtendedAnnotationFont
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExtendedAnnotationFont>
public enum ExtendedAnnotationFont extends java.lang.Enum<ExtendedAnnotationFont>
Extended annotation fonts that are supported only by Acrobat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HeiseiKakuGoW5
HeiseiMinW3
HYGoThicMedium
HYSMyeongJoMedium
HYSMyeongJoStdMedium
KozMinProRegular
MHeiMedium
MSungLight
MSungStdLight
STSongLight
STSongStdLight
-
Constructor Summary
Constructors Modifier Constructor Description private
ExtendedAnnotationFont()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExtendedAnnotationFont
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExtendedAnnotationFont[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HYSMyeongJoMedium
public static final ExtendedAnnotationFont HYSMyeongJoMedium
-
HYGoThicMedium
public static final ExtendedAnnotationFont HYGoThicMedium
-
HeiseiKakuGoW5
public static final ExtendedAnnotationFont HeiseiKakuGoW5
-
HeiseiMinW3
public static final ExtendedAnnotationFont HeiseiMinW3
-
MHeiMedium
public static final ExtendedAnnotationFont MHeiMedium
-
MSungLight
public static final ExtendedAnnotationFont MSungLight
-
STSongLight
public static final ExtendedAnnotationFont STSongLight
-
MSungStdLight
public static final ExtendedAnnotationFont MSungStdLight
-
STSongStdLight
public static final ExtendedAnnotationFont STSongStdLight
-
HYSMyeongJoStdMedium
public static final ExtendedAnnotationFont HYSMyeongJoStdMedium
-
KozMinProRegular
public static final ExtendedAnnotationFont KozMinProRegular
-
-
Method Detail
-
values
public static ExtendedAnnotationFont[] 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 (ExtendedAnnotationFont c : ExtendedAnnotationFont.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExtendedAnnotationFont valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-