Uses of Enum
org.apache.fontbox.type1.Token.Kind
Packages that use Token.Kind
-
Uses of Token.Kind in org.apache.fontbox.type1
Fields in org.apache.fontbox.type1 declared as Token.KindModifier and TypeFieldDescription(package private) static final Token.KindToken.CHARSTRING(package private) static final Token.KindToken.END_ARRAY(package private) static final Token.KindToken.END_DICT(package private) static final Token.KindToken.END_PROC(package private) static final Token.KindToken.INTEGERprivate final Token.KindToken.kind(package private) static final Token.KindToken.LITERAL(package private) static final Token.KindToken.NAME(package private) static final Token.KindToken.REAL(package private) static final Token.KindToken.START_ARRAY(package private) static final Token.KindToken.START_DICT(package private) static final Token.KindToken.START_PROC(package private) static final Token.KindToken.STRINGMethods in org.apache.fontbox.type1 that return Token.KindModifier and TypeMethodDescriptionToken.getKind()static Token.KindReturns 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.KindModifier and TypeMethodDescriptionbooleanType1Lexer.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, 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, 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.KindModifierConstructorDescription(package private)Token(byte[] data, Token.Kind type) Constructs a new Token object given its raw data and kind.(package private)Token(char character, Token.Kind type) Constructs a new Token object given its single-character text and kind.(package private)Token(String text, Token.Kind type) Constructs a new Token object given its text and kind.