Package com.lowagie.text
Enum StandardFonts
- 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_ITALICLIBERATION_MONODeprecated.Use LiberationLIBERATION_MONO_BOLDDeprecated.Use LiberationLIBERATION_MONO_BOLDITALICDeprecated.Use LiberationLIBERATION_MONO_ITALICDeprecated.Use LiberationLIBERATION_SANSDeprecated.Use LiberationLIBERATION_SANS_BOLDDeprecated.Use LiberationLIBERATION_SANS_BOLDITALICDeprecated.Use LiberationLIBERATION_SANS_ITALICDeprecated.Use LiberationLIBERATION_SERIFDeprecated.Use LiberationLIBERATION_SERIF_BOLDDeprecated.Use LiberationLIBERATION_SERIF_BOLDITALICDeprecated.Use LiberationLIBERATION_SERIF_ITALICDeprecated.Use LiberationSYMBOLTIMESTIMES_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
-
LIBERATION_MONO
@Deprecated public static final StandardFonts LIBERATION_MONO
Deprecated.Use Liberation
-
LIBERATION_MONO_ITALIC
@Deprecated public static final StandardFonts LIBERATION_MONO_ITALIC
Deprecated.Use Liberation
-
LIBERATION_MONO_BOLD
@Deprecated public static final StandardFonts LIBERATION_MONO_BOLD
Deprecated.Use Liberation
-
LIBERATION_MONO_BOLDITALIC
@Deprecated public static final StandardFonts LIBERATION_MONO_BOLDITALIC
Deprecated.Use Liberation
-
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
-
LIBERATION_SANS
@Deprecated public static final StandardFonts LIBERATION_SANS
Deprecated.Use Liberation
-
LIBERATION_SANS_ITALIC
@Deprecated public static final StandardFonts LIBERATION_SANS_ITALIC
Deprecated.Use Liberation
-
LIBERATION_SANS_BOLD
@Deprecated public static final StandardFonts LIBERATION_SANS_BOLD
Deprecated.Use Liberation
-
LIBERATION_SANS_BOLDITALIC
@Deprecated public static final StandardFonts LIBERATION_SANS_BOLDITALIC
Deprecated.Use Liberation
-
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
-
LIBERATION_SERIF
@Deprecated public static final StandardFonts LIBERATION_SERIF
Deprecated.Use Liberation
-
LIBERATION_SERIF_ITALIC
@Deprecated public static final StandardFonts LIBERATION_SERIF_ITALIC
Deprecated.Use Liberation
-
LIBERATION_SERIF_BOLD
@Deprecated public static final StandardFonts LIBERATION_SERIF_BOLD
Deprecated.Use Liberation
-
LIBERATION_SERIF_BOLDITALIC
@Deprecated public static final StandardFonts LIBERATION_SERIF_BOLDITALIC
Deprecated.Use Liberation
-
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()
-
-