Generated by
JDiff

com.itextpdf.layout.font Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.layout.font as colored differences. Deletions are shown like this , and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.

Class FontInfo

Contains all font related data to create FontProgram and PdfFont. FontProgramDescriptor fetches with FontProgramDescriptorFactory. @see FontProvider#getPdfFont(FontInfo) @see FontProvider#getPdfFont(FontInfo, FontSet) Note, .getAlias() and .getDescriptor() do are not taken into account in .equals, the same font with different aliases will have equal FontInfo's, and therefore the same PdfFont in the end document.
Class FontInfo, byte[] getFontData()

Gets font data, if FontInfo was created with {@code byte[]}. @return font data

Class FontSelector, constructor FontSelector(Collection, List, FontCharacteristics)

Create new FontSelector instance. @param allFonts Unsorted unsorted set of all available fonts. @param fontFamilies Sorted sorted list of preferred font families. @param fc instance of FontCharacteristics.

Class FontSet, Collection getFonts()

Gets available fonts.

Note, the collection is unmodifiable. @return set of all available fonts

Class FontSet, Collection getFonts(FontSet)

Gets union of available and temporary fonts.

Note, the collection is unmodifiable. @param tempFonts set of temporary fonts @return set of all available and temporary fonts


Class Range, boolean contains(int)

Binary search over ordered segments. @param n numeric character reference based on the character's Unicode code point @return true if this Range contains the specified code point, otherwise false

Class RangeBuilder, constructor RangeBuilder(char)

Constructor with a single char. @param ch a single char .
Class RangeBuilder, constructor RangeBuilder(char, char)

Constructor with a single range. @param low low boundary of the range. range @param high high boundary of the range .
Class RangeBuilder, constructor RangeBuilder(int)

Constructor with a single number. @param n a single number .
Class RangeBuilder, constructor RangeBuilder(int, int)

Constructor with a single range. @param low low boundary of the range. range @param high high boundary of the range .
Class RangeBuilder, RangeBuilder addRange(char)

Add range with a single char. @param ch a single char. char @return this RangeBuilder
Class RangeBuilder, RangeBuilder addRange(char, char)

Add one more range. @param low low boundary of the range. range @param high high boundary of the range. range @return this RangeBuilder
Class RangeBuilder, RangeBuilder addRange(int)

Add range with a single number. @param n a single number. number @return this RangeBuilder
Class RangeBuilder, RangeBuilder addRange(int, int)

Add one more range. @param low low boundary of the range. range @param high high boundary of the range. range @return this RangeBuilder