Uses of Interface
org.weborganic.uri.template.Token

Uses of Token in org.weborganic.uri.template
 

Subinterfaces of Token in org.weborganic.uri.template
 interface TokenOperator
          Defines tokens which use an operator to handle one or more variables.
 

Classes in org.weborganic.uri.template that implement Token
 class TokenLiteral
          A URI token corresponding to the literal text part of the URI template.
 class TokenOperatorD3
          A token using the operators defined in draft 3 of the URI templates specifications.
 class TokenOperatorRF
          A token based on the operators suggested by Roy Fielding.
 class TokenVariable
          A URI token wrapping a variable.
 

Methods in org.weborganic.uri.template that return Token
static Token TokenFactory.newToken(String exp)
          Generates the token corresponding to the specified expression.
 

Methods in org.weborganic.uri.template that return types with arguments of type Token
static List<Token> URITemplate.digest(String template)
          Returns the list of tokens corresponding to the specified URI template.