Package com.openhtmltopdf.pdfboxout
Enum PdfRendererBuilder.CacheStore
java.lang.Object
java.lang.Enum<PdfRendererBuilder.CacheStore>
com.openhtmltopdf.pdfboxout.PdfRendererBuilder.CacheStore
- All Implemented Interfaces:
Serializable,Comparable<PdfRendererBuilder.CacheStore>,java.lang.constant.Constable
- Enclosing class:
- PdfRendererBuilder
public static enum PdfRendererBuilder.CacheStore extends Enum<PdfRendererBuilder.CacheStore>
List of caches available.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description PDF_FONT_METRICSCaches font metrics, based on a combined key of family name, weight and style. -
Method Summary
Modifier and Type Method Description static PdfRendererBuilder.CacheStorevalueOf(String name)Returns the enum constant of this type with the specified name.static PdfRendererBuilder.CacheStore[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PDF_FONT_METRICS
Caches font metrics, based on a combined key of family name, weight and style. Using this cache avoids loading fallback fonts if the metrics are already in the cache and the previous fonts contain the needed characters.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-