Package com.lowagie.text
Enum StandardFonts
- java.lang.Object
-
- java.lang.Enum<StandardFonts>
-
- com.lowagie.text.StandardFonts
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StandardFonts>
public enum StandardFonts extends java.lang.Enum<StandardFonts>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COURIER
COURIER_BOLD
COURIER_BOLDITALIC
COURIER_ITALIC
HELVETICA
HELVETICA_BOLD
HELVETICA_BOLDITALIC
HELVETICA_ITALIC
SYMBOL
TIMES
TIMES_BOLD
TIMES_BOLDITALIC
TIMES_ITALIC
ZAPFDINGBATS
-
Constructor Summary
Constructors Modifier Constructor Description private
StandardFonts(int family, int style)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Font
create()
Font
create(int size)
boolean
isDeprecated()
static StandardFonts
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StandardFonts[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COURIER
public static final StandardFonts COURIER
-
COURIER_ITALIC
public static final StandardFonts COURIER_ITALIC
-
COURIER_BOLD
public static final StandardFonts COURIER_BOLD
-
COURIER_BOLDITALIC
public static final StandardFonts COURIER_BOLDITALIC
-
HELVETICA
public static final StandardFonts HELVETICA
-
HELVETICA_ITALIC
public static final StandardFonts HELVETICA_ITALIC
-
HELVETICA_BOLD
public static final StandardFonts HELVETICA_BOLD
-
HELVETICA_BOLDITALIC
public static final StandardFonts HELVETICA_BOLDITALIC
-
TIMES
public static final StandardFonts TIMES
-
TIMES_ITALIC
public static final StandardFonts TIMES_ITALIC
-
TIMES_BOLD
public static final StandardFonts TIMES_BOLD
-
TIMES_BOLDITALIC
public static final StandardFonts TIMES_BOLDITALIC
-
SYMBOL
public static final StandardFonts SYMBOL
-
ZAPFDINGBATS
public static final StandardFonts ZAPFDINGBATS
-
-
Method Detail
-
values
public static StandardFonts[] 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 (StandardFonts c : StandardFonts.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardFonts 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
-
create
public Font create() throws java.io.IOException
- Throws:
java.io.IOException
-
create
public Font create(int size) throws java.io.IOException
- Throws:
java.io.IOException
-
isDeprecated
public boolean isDeprecated()
-
-