Class OFMtxEntry
java.lang.Object
org.docx4j.fonts.fop.fonts.truetype.OFMtxEntry
public class OFMtxEntry
extends java.lang.Object
This class represents a TrueType Mtx Entry.
-
Constructor Summary
Constructors Constructor Description OFMtxEntry() -
Method Summary
Modifier and Type Method Description int[]getBoundingBox()Returns the boundingBox.bytegetFound()Returns the found.intgetIndex()Returns the index.java.lang.StringgetIndexAsString()Returns a String representation of the index taking into account if the index is in the reserved range.intgetLsb()Returns the lsb.java.lang.StringgetName()Returns the name.longgetOffset()Returns the offset.java.util.List<java.lang.Integer>getUnicodeIndex()Returns the unicodeIndex.intgetWx()Returns the wx.booleanisIndexReserved()Determines whether this index represents a reserved character.voidsetBoundingBox(int[] boundingBox)Sets the boundingBox.voidsetFound(byte found)Sets the found.voidsetIndex(int index)Sets the index.voidsetLsb(int lsb)Sets the lsb.voidsetName(java.lang.String name)Sets the name.voidsetOffset(long offset)Sets the offset.voidsetWx(int wx)Sets the wx.java.lang.StringtoString(TTFFile t)Returns a String representation of this object.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
OFMtxEntry
public OFMtxEntry()
-
-
Method Details
-
toString
Returns a String representation of this object.- Parameters:
t- TTFFile to use for unit conversion- Returns:
- String String representation
-
getBoundingBox
public int[] getBoundingBox()Returns the boundingBox.- Returns:
- int[]
-
setBoundingBox
public void setBoundingBox(int[] boundingBox)Sets the boundingBox.- Parameters:
boundingBox- The boundingBox to set
-
getFound
public byte getFound()Returns the found.- Returns:
- byte
-
getIndex
public int getIndex()Returns the index.- Returns:
- int
-
isIndexReserved
public boolean isIndexReserved()Determines whether this index represents a reserved character.- Returns:
- True if it is reserved
-
getIndexAsString
public java.lang.String getIndexAsString()Returns a String representation of the index taking into account if the index is in the reserved range.- Returns:
- index as String
-
getLsb
public int getLsb()Returns the lsb.- Returns:
- int
-
getName
public java.lang.String getName()Returns the name.- Returns:
- String
-
getOffset
public long getOffset()Returns the offset.- Returns:
- long
-
getUnicodeIndex
public java.util.List<java.lang.Integer> getUnicodeIndex()Returns the unicodeIndex.- Returns:
- List
-
getWx
public int getWx()Returns the wx.- Returns:
- int
-
setFound
public void setFound(byte found)Sets the found.- Parameters:
found- The found to set
-
setIndex
public void setIndex(int index)Sets the index.- Parameters:
index- The index to set
-
setLsb
public void setLsb(int lsb)Sets the lsb.- Parameters:
lsb- The lsb to set
-
setName
public void setName(java.lang.String name)Sets the name.- Parameters:
name- The name to set
-
setOffset
public void setOffset(long offset)Sets the offset.- Parameters:
offset- The offset to set
-
setWx
public void setWx(int wx)Sets the wx.- Parameters:
wx- The wx to set
-