Lines Matching full:tokenizer
26 * Tokenizer is used to parse DNS records and zones from text format,
32 public class Tokenizer {
142 * Creates a Tokenizer from an arbitrary input stream.
146 Tokenizer(InputStream is) {
161 * Creates a Tokenizer from a string.
165 Tokenizer(String s) {
170 * Creates a Tokenizer from a file.
174 Tokenizer(File f) throws FileNotFoundException {
225 * Gets the next token from a tokenizer.
339 * Gets the next token from a tokenizer, ignoring whitespace and comments.
365 * Gets the next token from a tokenizer and converts it to a string.
388 * Gets the next token from a tokenizer, ensures it is an unquoted string,
400 * Gets the next token from a tokenizer and converts it to a long.
418 * Gets the next token from a tokenizer and converts it to an unsigned 32 bit
434 * Gets the next token from a tokenizer and converts it to an unsigned 16 bit
450 * Gets the next token from a tokenizer and converts it to an unsigned 8 bit
466 * Gets the next token from a tokenizer and parses it as a TTL.
484 * Gets the next token from a tokenizer and parses it as if it were a TTL.
502 * Gets the next token from a tokenizer and converts it to a name.
526 * Gets the next token from a tokenizer and converts it to an IP Address.
545 * Gets the next token from a tokenizer, which must be an EOL or EOF.
558 * Returns a concatenation of the remaining strings from a Tokenizer.
564 Tokenizer.Token t = get();
654 * Gets the next token from a tokenizer and decodes it as hex.
669 * Gets the next token from a tokenizer and decodes it as base32.
695 * Closes any files opened by this tokenizer.