Uses of Interface
org.weborganic.furi.Token

Uses of Token in org.weborganic.furi
 

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

Classes in org.weborganic.furi 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 TokenOperatorDX
          A token based on the operators defined in the latest draft.
 class TokenOperatorPS
          A token based on the operators used in PageSeeder.
 class TokenVariable
          A URI token wrapping a variable.
 

Methods in org.weborganic.furi that return Token
 Token TokenFactory.newToken(String exp)
          Generates the token corresponding to the specified expression.
static Token TokenFactory.newToken(String exp, TokenFactory.Syntax syntax)
          Generates the token corresponding to the specified expression.
 

Methods in org.weborganic.furi 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.
static List<Token> URITemplate.digest(String template, TokenFactory factory)
          Returns the list of tokens corresponding to the specified URI template.