Package org.apache.fontbox.cff
Class CFFFontROS
- java.lang.Object
-
- org.apache.fontbox.cff.CFFFont
-
- org.apache.fontbox.cff.CFFFontROS
-
public class CFFFontROS extends CFFFont
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.fontbox.cff.CFFFont
CFFFont.Mapping
-
-
Constructor Summary
Constructors Constructor Description CFFFontROS()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CIDKeyedFDSelect
getFdSelect()
Returns the fdSelect value.java.util.List<java.util.Map<java.lang.String,java.lang.Object>>
getFontDict()
Returns the font dictionaries.java.lang.String
getOrdering()
Returns the ordering value.java.util.List<java.util.Map<java.lang.String,java.lang.Object>>
getPrivDict()
Returns the private dictionary.java.lang.String
getRegistry()
Returns the registry value.int
getSupplement()
Returns the supplement value.int
getWidth(int CID)
Returns the Width value of the given Glyph identifiervoid
setFdSelect(CIDKeyedFDSelect fdSelect)
Sets the fdSelect value.void
setFontDict(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> fontDict)
Sets the font dictionaries.void
setOrdering(java.lang.String ordering)
Sets the ordering value.void
setPrivDict(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> privDict)
Sets the private dictionary.void
setRegistry(java.lang.String registry)
Sets the registry value.void
setSupplement(int supplement)
Sets the supplement value.-
Methods inherited from class org.apache.fontbox.cff.CFFFont
addValueToPrivateDict, addValueToTopDict, createConverter, createRenderer, getCharset, getCharStringsDict, getEncoding, getGlobalSubrIndex, getLocalSubrIndex, getMappings, getName, getNotDefWidth, getPrivateDict, getProperty, getTopDict, setCharset, setEncoding, setGlobalSubrIndex, setLocalSubrIndex, setName, toString
-
-
-
-
Method Detail
-
getRegistry
public java.lang.String getRegistry()
Returns the registry value.- Returns:
- the registry
-
setRegistry
public void setRegistry(java.lang.String registry)
Sets the registry value.- Parameters:
registry
- the registry to set
-
getOrdering
public java.lang.String getOrdering()
Returns the ordering value.- Returns:
- the ordering
-
setOrdering
public void setOrdering(java.lang.String ordering)
Sets the ordering value.- Parameters:
ordering
- the ordering to set
-
getSupplement
public int getSupplement()
Returns the supplement value.- Returns:
- the supplement
-
setSupplement
public void setSupplement(int supplement)
Sets the supplement value.- Parameters:
supplement
- the supplement to set
-
getFontDict
public java.util.List<java.util.Map<java.lang.String,java.lang.Object>> getFontDict()
Returns the font dictionaries.- Returns:
- the fontDict
-
setFontDict
public void setFontDict(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> fontDict)
Sets the font dictionaries.- Parameters:
fontDict
- the fontDict to set
-
getPrivDict
public java.util.List<java.util.Map<java.lang.String,java.lang.Object>> getPrivDict()
Returns the private dictionary.- Returns:
- the privDict
-
setPrivDict
public void setPrivDict(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> privDict)
Sets the private dictionary.- Parameters:
privDict
- the privDict to set
-
getFdSelect
public CIDKeyedFDSelect getFdSelect()
Returns the fdSelect value.- Returns:
- the fdSelect
-
setFdSelect
public void setFdSelect(CIDKeyedFDSelect fdSelect)
Sets the fdSelect value.- Parameters:
fdSelect
- the fdSelect to set
-
-