Package convert.xml.tok

Class Summary
ContentToken Represents information returned by Tokenizer.tokenizeContent.
Position Represents a position in an entity.
TextDecl An XML TextDecl.
Token Represents information returned by the tokenizing methods in Tokenizer.
Tokenizer It provides operations on char arrays that represent all or part of a parsed XML entity.
 

Exception Summary
EmptyTokenException Thrown to indicate that the subarray being tokenized is empty.
EndOfPrologException Thrown to indicate that the end of the prolog has been detected.
ExtensibleTokenException Thrown to indicate that the char subarray being tokenized is a legal XML token, but that subsequent chars in the same entity could be part of the token.
InvalidTokenException Thrown to indicate that the byte subarray being tokenized does not start with a legal XML token and cannot start one if more bytes are added.
PartialCharException Thrown to indicate that the subarray being tokenized is not the complete encoding of one or more XML characters, but might be if more chars were added.
PartialTokenException Thrown to indicate that the byte subarray being tokenized does not start with a legal XML token but might be one if the subarray were extended.
TokenException The superclass of all checked exceptions thrown by methods in Tokenizer.