Package com.openhtmltopdf.pdfboxout
Enum Class PdfRendererBuilder.CacheStore
java.lang.Object
java.lang.Enum<PdfRendererBuilder.CacheStore>
com.openhtmltopdf.pdfboxout.PdfRendererBuilder.CacheStore
- All Implemented Interfaces:
Serializable
,Comparable<PdfRendererBuilder.CacheStore>
,Constable
- Enclosing class:
PdfRendererBuilder
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 ConstantsEnum ConstantDescriptionCaches font metrics, based on a combined key of family name, weight and style. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static PdfRendererBuilder.CacheStore[]
values()
Returns an array containing the constants of this enum class, 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.
-
-
Constructor Details
-
CacheStore
private CacheStore()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-