Uses of Class
com.github.weisj.jsvg.parser.css.impl.TokenType
-
Packages that use TokenType Package Description com.github.weisj.jsvg.parser.css.impl -
-
Uses of TokenType in com.github.weisj.jsvg.parser.css.impl
Fields in com.github.weisj.jsvg.parser.css.impl declared as TokenType Modifier and Type Field Description private @NotNull TokenType
Token. type
Methods in com.github.weisj.jsvg.parser.css.impl that return TokenType Modifier and Type Method Description @NotNull TokenType
Token. type()
static TokenType
TokenType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TokenType[]
TokenType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.weisj.jsvg.parser.css.impl with parameters of type TokenType Modifier and Type Method Description private void
SimpleCssParser.Parser. consume(TokenType type)
private void
SimpleCssParser.Parser. consumeOrSkipAllowedToken(TokenType type, TokenType allowedTokeToSkip)
private @NotNull java.lang.String
SimpleCssParser.Parser. consumeValue(TokenType type)
Constructors in com.github.weisj.jsvg.parser.css.impl with parameters of type TokenType Constructor Description Token(@NotNull TokenType type)
Token(@NotNull TokenType type, @Nullable java.lang.String data)
-