Uses of Class
org.openstreetmap.josm.tools.template_engine.Tokenizer.TokenType
-
Packages that use Tokenizer.TokenType Package Description org.openstreetmap.josm.tools.template_engine Provides classes for a generic template engine used in presets, name rendering and search function. -
-
Uses of Tokenizer.TokenType in org.openstreetmap.josm.tools.template_engine
Fields in org.openstreetmap.josm.tools.template_engine declared as Tokenizer.TokenType Modifier and Type Field Description private Tokenizer.TokenType
Tokenizer.Token. type
Fields in org.openstreetmap.josm.tools.template_engine with type parameters of type Tokenizer.TokenType Modifier and Type Field Description private static Collection<Tokenizer.TokenType>
TemplateParser. CONDITION_WITH_APOSTROPHES_END_TOKENS
private static Collection<Tokenizer.TokenType>
TemplateParser. EXPRESSION_END_TOKENS
Methods in org.openstreetmap.josm.tools.template_engine that return Tokenizer.TokenType Modifier and Type Method Description Tokenizer.TokenType
Tokenizer.Token. getType()
static Tokenizer.TokenType
Tokenizer.TokenType. valueOf(String name)
Returns the enum constant of this type with the specified name.static Tokenizer.TokenType[]
Tokenizer.TokenType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.openstreetmap.josm.tools.template_engine with parameters of type Tokenizer.TokenType Modifier and Type Method Description private Tokenizer.Token
TemplateParser. check(Tokenizer.TokenType expectedToken)
Method parameters in org.openstreetmap.josm.tools.template_engine with type arguments of type Tokenizer.TokenType Modifier and Type Method Description private TemplateEntry
TemplateParser. parseExpression(Collection<Tokenizer.TokenType> endTokens)
Constructors in org.openstreetmap.josm.tools.template_engine with parameters of type Tokenizer.TokenType Constructor Description ParseError(Tokenizer.Token unexpectedToken, Tokenizer.TokenType expected)
Constructs a newParseError
for an unexpected token and an expected token.Token(Tokenizer.TokenType type, int position)
Token(Tokenizer.TokenType type, int position, String text)
-