- java.lang.Object
-
- java.lang.Enum<StandardFonts>
-
- com.lowagie.text.StandardFonts
-
- All Implemented Interfaces:
Serializable,Comparable<StandardFonts>
public enum StandardFonts extends Enum<StandardFonts>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COURIERCOURIER_BOLDCOURIER_BOLDITALICCOURIER_ITALICHELVETICAHELVETICA_BOLDHELVETICA_BOLDITALICHELVETICA_ITALICSYMBOLTIMESTIMES_BOLDTIMES_BOLDITALICTIMES_ITALICZAPFDINGBATS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Fontcreate()Fontcreate(int size)booleanisDeprecated()static StandardFontsvalueOf(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(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
-
create
public Font create() throws IOException
- Throws:
IOException
-
create
public Font create(int size) throws IOException
- Throws:
IOException
-
isDeprecated
public boolean isDeprecated()
-
-