| Package | Description |
|---|---|
| org.basex.index |
Database Index structures.
|
| org.basex.util |
Utility classes.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IndexStats.print(TokenBuilder tb)
Prints the list to the specified token builder.
|
| Modifier and Type | Method and Description |
|---|---|
TokenBuilder |
TokenBuilder.add(byte[] b)
Adds a byte array to the token.
|
TokenBuilder |
TokenBuilder.add(byte[] b,
int s,
int e)
Adds a partial byte array to the token.
|
TokenBuilder |
TokenBuilder.add(int ch)
Adds the specified UTF8 character.
|
TokenBuilder |
TokenBuilder.add(java.lang.String s)
Adds a string to the token.
|
TokenBuilder |
TokenBuilder.addByte(byte b)
Adds a byte to the token.
|
TokenBuilder |
TokenBuilder.addExt(java.lang.Object str,
java.lang.Object... ext)
Adds the string representation of an object to the token:
If extensions are specified, all characters
"%" in the object
string are replaced by the specified extensions.
Extensions can either be tokens (byte arrays) or any other objects,
which will be represented as strings.
If a digit is found after the character "%", it is interpreted
as insertion position.
|
TokenBuilder |
TokenBuilder.addLong(long i)
Adds a number to the token.
|
TokenBuilder |
TokenBuilder.addSep(java.lang.Object[] s,
java.lang.String sep)
Adds multiple strings to the token, separated by the specified string.
|
TokenBuilder |
TokenBuilder.bold()
Adds a bold flag.
|
TokenBuilder |
TokenBuilder.hline()
Adds a half new line.
|
TokenBuilder |
TokenBuilder.insert(int pos,
int ch)
Inserts the specified UTF8 character.
|
TokenBuilder |
TokenBuilder.nline()
Adds a new line.
|
TokenBuilder |
TokenBuilder.norm()
Adds a norm flag.
|
TokenBuilder |
TokenBuilder.reset()
Resets the token buffer.
|
TokenBuilder |
TokenBuilder.trim()
Trims leading and trailing whitespaces.
|