Uses of Class
org.apache.fontbox.type1.Token.Kind
-
Packages that use Token.Kind Package Description org.apache.fontbox.type1 This package holds classes used to parse Type1-Fonts. -
-
Uses of Token.Kind in org.apache.fontbox.type1
Fields in org.apache.fontbox.type1 declared as Token.Kind Modifier and Type Field Description (package private) static Token.KindToken. CHARSTRING(package private) static Token.KindToken. END_ARRAY(package private) static Token.KindToken. END_DICT(package private) static Token.KindToken. END_PROC(package private) static Token.KindToken. INTEGERprivate Token.KindToken. kind(package private) static Token.KindToken. LITERAL(package private) static Token.KindToken. NAME(package private) static Token.KindToken. REAL(package private) static Token.KindToken. START_ARRAY(package private) static Token.KindToken. START_DICT(package private) static Token.KindToken. START_PROC(package private) static Token.KindToken. STRINGMethods in org.apache.fontbox.type1 that return Token.Kind Modifier and Type Method Description Token.KindToken. getKind()static Token.KindToken.Kind. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Token.Kind[]Token.Kind. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.fontbox.type1 with parameters of type Token.Kind Modifier and Type Method Description booleanType1Lexer. peekKind(Token.Kind kind)Checks if the kind of the next token equals the given one 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 voidType1Parser. read(Token.Kind kind, java.lang.String name)Reads the next token and throws an exception if it is not of the given kind and does not have the given value.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.Constructors in org.apache.fontbox.type1 with parameters of type Token.Kind Constructor Description Token(byte[] data, Token.Kind type)Constructs a new Token object given its raw data and kind.Token(char character, Token.Kind type)Constructs a new Token object given its single-character text and kind.Token(java.lang.String text, Token.Kind type)Constructs a new Token object given its text and kind.
-