Uses of Class
org.apache.fontbox.type1.Token
-
Packages that use Token Package Description org.apache.fontbox.type1 This package holds classes used to parse Type1-Fonts. -
-
Uses of Token in org.apache.fontbox.type1
Fields in org.apache.fontbox.type1 declared as Token Modifier and Type Field Description private TokenType1Lexer. aheadTokenMethods in org.apache.fontbox.type1 that return Token Modifier and Type Method Description TokenType1Lexer. nextToken()Returns the next token and consumes it.TokenType1Lexer. peekToken()Returns the next token without consuming it.private TokenType1Parser. read(Token.Kind kind)Reads the next token and throws an exception if it is not of the given kind.private TokenType1Lexer. readCharString(int length)Reads a binary CharString.private TokenType1Parser. readMaybe(Token.Kind kind, java.lang.String name)Reads the next token if and only if it is of the given kind and has the given value.private TokenType1Lexer. readString()Reads a (string).private TokenType1Lexer. readToken(Token prevToken)Reads a single token.private TokenType1Lexer. tryReadNumber()Reads a number or returns null.Methods in org.apache.fontbox.type1 that return types with arguments of type Token Modifier and Type Method Description private java.util.List<Token>Type1Parser. readDictValue()Reads a simple value from a dictionary.private java.util.List<Token>Type1Parser. readProc()Reads a procedure.private java.util.Map<java.lang.String,java.util.List<Token>>Type1Parser. readSimpleDict()Reads a dictionary whose values are simple, i.e., do not contain nested dictionaries.private java.util.List<Token>Type1Parser. readValue()Reads a simple value.Methods in org.apache.fontbox.type1 with parameters of type Token Modifier and Type Method Description private TokenType1Lexer. readToken(Token prevToken)Reads a single token.Method parameters in org.apache.fontbox.type1 with type arguments of type Token Modifier and Type Method Description private java.util.List<java.lang.Number>Type1Parser. arrayToNumbers(java.util.List<Token> value)Extracts values from an array as numbers.private voidType1Parser. readFontInfo(java.util.Map<java.lang.String,java.util.List<Token>> fontInfo)Extracts values from the /FontInfo dictionary.private voidType1Parser. readPostScriptWrapper(java.util.List<Token> value)private voidType1Parser. readPrivate(java.lang.String key, java.util.List<Token> value)Extracts values from the /Private dictionary.
-