public interface TokenAppendable
Modifier and Type | Method and Description |
---|---|
void |
append(TokenSequence data)
Appends all tokens in the specified sequence to this
sequence.
|
void |
append(TokenSequence data,
int start,
int length)
Appends a subsequence of tokens in the specified sequence
to this sequence.
|
void |
append(TokenValued value)
Appends the specified token value to this sequence.
|
void |
append(TokenValued value,
long count)
Appends the specified token value to this sequence
multiple times.
|
void append(TokenValued value)
The data types of the sequence and the value must be compatible. If the types are not identical, appropriate coercion will be attempted.
value
- the token value to appendvoid append(TokenValued value, long count)
The data types of the sequence and the value must be compatible. If the types are not identical, appropriate coercion will be attempted.
value
- the token value to appendcount
- the number of copies to appendvoid append(TokenSequence data)
The data types of the sequences must be compatible. If not identical, appropriate coercion will be attempted.
data
- the sequence to appendvoid append(TokenSequence data, int start, int length)
The data types of the sequences must be compatible. If not identical, appropriate coercion will be attempted.
data
- the sequence containing tokens to appendstart
- the starting index of the subsequence in the sourcelength
- the length of the subsequenceCopyright © 2019 Actian Corporation. All rights reserved.