Creates new URIFieldParser.paramuriField the URI filed to be parsed lexer = new Lexer("charLexer", uriField);
lexer = new Lexer("charLexer", uriField);
Default constructor. super();
super();
Gets the URI field.returnURIFieldexceptionParseException if a parsing error occurs return uriField();
return uriField();
Gets the URI field.returnURIFieldexceptionParseException if a parsing error occurs lexer.match('u"); lexer.SPorHT(); lexer.match('="); lexer.SPorHT(); URIField uriField = new URIField(); String rest = lexer.getRest().trim(); uriField.setURI(rest); return uriField;
lexer.match('u"); lexer.SPorHT(); lexer.match('="); lexer.SPorHT(); URIField uriField = new URIField(); String rest = lexer.getRest().trim(); uriField.setURI(rest); return uriField;