public final class DurationTokenList extends AbstractScalarTokenSequence implements MutableDurationTokenSequence
MutableDurationTokenSequence
.TokenTypeConstant.DURATION
Constructor and Description |
---|
DurationTokenList(int initialCapacity)
Create an empty array
|
Modifier and Type | Method and Description |
---|---|
void |
append(Duration value)
Appends the specified duration to this sequence.
|
void |
append(Duration value,
int count)
Appends the specified duration to this sequence
multiple times.
|
void |
appendDuration(long seconds,
int subsecondNanos)
Appends the duration specified in seconds to this sequence.
|
void |
appendDuration(long seconds,
int subsecondNanos,
int count)
Appends the duration specified in seconds to this sequence
multiple times.
|
void |
fillDurations(int start,
int length,
long seconds,
int nanos)
Sets the tokens in the specified subsequence to a duration value specified
as seconds and nanoseconds.
|
void |
fillValue(int start,
int length,
TokenValued value)
Sets the tokens in the specified subsequence to the given value.
|
Duration |
getDuration(int index)
Gets the value of the specified token as
a duration.
|
long |
getSeconds(int index)
Gets the value of the specified token as the number of seconds
in the duration.
|
int |
getSubsecondNanos(int index)
Gets the subsecond portion (in nanoseconds) of the duration
value of the specified token.
|
DurationValued |
getToken(int index)
Gets the value at the specified position.
|
DurationSettable |
getTokenSetter(int index)
Returns a mutator for the given index.
|
ScalarTokenType |
getType()
Gets the data type of the tokens in the sequence.
|
void |
getValues(int index,
long[] secValues,
int[] nanoValues,
boolean[] nullFlags,
int offset,
int length)
Gets the values and null indicators for a range of tokens.
|
boolean |
isZero(int index)
Indicates whether the specified token has a zero value.
|
DurationValuedIterator |
newValueIterator()
Creates an iterator over the non-null values of this sequence.
|
void |
set(int index,
Duration value)
Sets the token at the specified position to the given value.
|
void |
setDuration(int index,
long seconds,
int subsecondNanos)
Sets the token at the specified position to the given value.
|
void |
setNull(int index)
Sets the token at the specified position to be null valued.
|
void |
setNull(int start,
int length)
Sets the tokens in the specified subsequence to be null valued.
|
void |
setValue(int index,
TokenValued value)
Sets the token at the specified position to the given value.
|
void |
setValues(int start,
TokenSequence values,
int offset,
int length)
Sets the tokens in the specified subsequence of the array
to the corresponding values from a subsequence of the given source
sequence.
|
void |
setZero(int index)
Sets the token at the specified position to be zero valued.
|
void |
setZero(int start,
int length)
Sets the tokens in the specified subsequence to be zero valued.
|
append, append, append, append, appendNull, appendNull, appendZero, appendZero, capacity, compareElement, compareElements, ensureCanonical, getElementComparator, getModificationCount, hashCode, isNull, isNull, map, remaining, reset, size, toString, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
ensureCanonical, getModificationCount
isNull
appendNull, appendNull, appendZero, appendZero, reset
compareElement, compareElements, getElementComparator, hashCode, isNull, size, toString
append, append, append, append
public DurationTokenList(int initialCapacity)
initialCapacity
- the initial capacity.public ScalarTokenType getType()
ScalarTokenSequence
getType
in interface ScalarTokenSequence
getType
in interface ScalarTyped
getType
in interface TokenTyped
public DurationValued getToken(int index)
TokenSequence
getToken
in interface DurationTokenSequence
getToken
in interface ScalarTokenSequence
getToken
in interface TokenSequence
index
- the index of the tokenpublic Duration getDuration(int index)
DurationTokenSequence
getDuration
in interface DurationTokenSequence
index
- the position of the token in the sequencenull
is returned.public long getSeconds(int index)
DurationTokenSequence
getSeconds
in interface DurationTokenSequence
index
- the position of the token in the sequence0
is returned.public int getSubsecondNanos(int index)
DurationTokenSequence
getSubsecondNanos
in interface DurationTokenSequence
index
- the position of the token in the sequence0
is returned.public void getValues(int index, long[] secValues, int[] nanoValues, boolean[] nullFlags, int offset, int length)
DurationTokenSequence
getValues
in interface DurationTokenSequence
index
- the starting index of the rangesecValues
- an array into which to place the second values
of elementsnanoValues
- an array into which to place the subsecond values
of elementsnullFlags
- an array into which to place null indicator valuesoffset
- the starting offset into the target arrays. That is,
elements[offset]
and nulls[offset]
will get the
value and null indicator respectively of the token at position
start
, and so on.length
- number of tokens to getpublic DurationValuedIterator newValueIterator()
TokenSequence
newValueIterator
in interface DurationTokenSequence
newValueIterator
in interface ScalarTokenSequence
newValueIterator
in interface TokenSequence
public boolean isZero(int index)
ScalarTokenSequence
isZero
in interface ScalarTokenSequence
index
- the index of the tokentrue
if the element is zero,
false
otherwisepublic void setNull(int index)
MutableTokenSequence
setNull
in interface MutableTokenSequence
index
- the position of the token in the arraypublic void setNull(int start, int length)
MutableTokenSequence
setNull
in interface MutableTokenSequence
start
- the starting index of the subsequence in the arraylength
- the length of the subsequencepublic void setZero(int index)
MutableTokenSequence
setZero
in interface MutableTokenSequence
index
- the position of the token in the arraypublic void setZero(int start, int length)
MutableTokenSequence
setZero
in interface MutableTokenSequence
start
- the starting index of the subsequence in the arraylength
- the length of the subsequencepublic void setValue(int index, TokenValued value)
MutableTokenSequence
setValue
in interface MutableTokenSequence
index
- the position of the token in the arrayvalue
- the value to which to set the token. This value
must be of an appropriate type for the array.public void fillDurations(int start, int length, long seconds, int nanos)
start
- the starting index of the subsequence in the arraylength
- the length of the subsequenceseconds
- number of seconds in durationnanos
- fractional portion of second in durationpublic void fillValue(int start, int length, TokenValued value)
MutableTokenSequence
fillValue
in interface MutableTokenSequence
start
- the starting index of the subsequence in the arraylength
- the length of the subsequencevalue
- the value to which to set the tokens. This value
must be of an appropriate type for the arraypublic void setValues(int start, TokenSequence values, int offset, int length)
MutableTokenSequence
setValues
in interface MutableTokenSequence
start
- the starting index of the subsequence in the arrayvalues
- the source sequence. This sequence must be
of an appropriate type for the array.offset
- the starting index in the source sequence.
Corresponding values will be taken relative to this position.
That is, the value of the token at position offset
in
values
will be assigned to the token at position
start
, and so on.length
- the number of tokens to copypublic void append(Duration value)
MutableDurationTokenSequence
append
in interface MutableDurationTokenSequence
value
- the value to append. If null
,
this is equivalent to appendNull()
.public void appendDuration(long seconds, int subsecondNanos)
MutableDurationTokenSequence
appendDuration
in interface MutableDurationTokenSequence
seconds
- the number of seconds in the duration.subsecondNanos
- the subsecond portion of the duration
in nanoseconds.public void append(Duration value, int count)
MutableDurationTokenSequence
append
in interface MutableDurationTokenSequence
value
- the value to append. If null
,
this is equivalent to appendNull()
.count
- the number of copies to append.public void appendDuration(long seconds, int subsecondNanos, int count)
MutableDurationTokenSequence
appendDuration
in interface MutableDurationTokenSequence
seconds
- the number of seconds in the duration.subsecondNanos
- the subsecond portion of the duration
in nanoseconds.count
- the number of copies to append.public void set(int index, Duration value)
MutableDurationTokenSequence
set
in interface MutableDurationTokenSequence
index
- the position to modify.value
- the duration to which to set the token.public void setDuration(int index, long seconds, int subsecondNanos)
MutableDurationTokenSequence
setDuration
in interface MutableDurationTokenSequence
index
- the position to modify.seconds
- the number of seconds in the duration.subsecondNanos
- the subsecond portion of the duration
in nanoseconds.public DurationSettable getTokenSetter(int index)
MutableTokenSequence
getTokenSetter
in interface MutableTokenSequence
getTokenSetter
in interface MutableDurationTokenSequence
getTokenSetter
in interface MutableScalarTokenSequence
index
- the positionCopyright © 2020 Actian Corporation. All rights reserved.