Class LigatureSetTable
- java.lang.Object
-
- org.apache.fontbox.ttf.table.gsub.LigatureSetTable
-
public class LigatureSetTable extends java.lang.ObjectThis class is a part of the GSUB — Glyph Substitution Table system of tables in the Open Type Font specs. This is a part of the LookupType 4: Ligature Substitution Subtable. It specifically models the LigatureSet table: All ligatures beginning with the same glyph.
-
-
Field Summary
Fields Modifier and Type Field Description private intligatureCountprivate LigatureTable[]ligatureTables
-
Constructor Summary
Constructors Constructor Description LigatureSetTable(int ligatureCount, LigatureTable[] ligatureTables)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLigatureCount()LigatureTable[]getLigatureTables()java.lang.StringtoString()
-
-
-
Field Detail
-
ligatureCount
private final int ligatureCount
-
ligatureTables
private final LigatureTable[] ligatureTables
-
-
Constructor Detail
-
LigatureSetTable
public LigatureSetTable(int ligatureCount, LigatureTable[] ligatureTables)
-
-
Method Detail
-
getLigatureCount
public int getLigatureCount()
-
getLigatureTables
public LigatureTable[] getLigatureTables()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-