final EncodingVector macOrdering = psServer.getPredefinedEncoding(
EncodingVector.Predefined.STANDARD_MACINTOSH_ORDERING);
final int codePoint = macOrdering.decodeCharacter(glyphIndex);
switch (this.postFormat) {
case TTFTablePOST.PS_FORMAT_1:
return macOrdering.mapCodePointToGlyphName(codePoint);
case TTFTablePOST.PS_FORMAT_2:
if (codePoint != Encoding.INVALID_UNICODE_CHAR) {
return macOrdering.mapCodePointToGlyphName(codePoint);
}
if (this.glyphNameIndex == null