public final class PeriodTokenList extends AbstractScalarTokenSequence implements MutablePeriodTokenSequence
MutablePeriodTokenSequence.TokenTypeConstant.PERIOD| Constructor and Description |
|---|
PeriodTokenList(int initialCapacity)
Create an empty array
|
| Modifier and Type | Method and Description |
|---|---|
void |
append(Period value)
Appends the specified period to this sequence.
|
void |
append(Period value,
int count)
Appends the specified period to this sequence
multiple times.
|
void |
appendPeriod(int years,
int months,
int days)
Appends the period specified in years, months, and days
to this sequence.
|
void |
appendPeriod(int years,
int months,
int days,
int count)
Appends the period specified in years, months, and days
to this sequence multiple times.
|
void |
fillPeriods(int start,
int length,
int years,
int months,
int days)
Sets the tokens in the specified subsequence to a period value specified
as years, months, and days.
|
void |
fillValue(int start,
int length,
TokenValued value)
Sets the tokens in the specified subsequence to the given value.
|
int |
getDays(int index)
Gets the day portion of the value of the specified token.
|
int |
getMonths(int index)
Gets the month portion of the value of the specified token.
|
Period |
getPeriod(int index)
Gets the value of the specified token as
a period.
|
PeriodValued |
getToken(int index)
Gets the value at the specified position.
|
PeriodSettable |
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 start,
int[] yearValues,
int[] monthValues,
int[] dayValues,
boolean[] nullsValues,
int offset,
int length)
Gets the values and null indicators for a range of tokens.
|
int |
getYears(int index)
Gets the year portion of the value of the specified token.
|
boolean |
isZero(int index)
Indicates whether the specified token has a zero value.
|
PeriodValuedIterator |
newValueIterator()
Creates an iterator over the non-null values of this sequence.
|
void |
set(int index,
Period value)
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 |
setPeriod(int index,
int years,
int months,
int days)
Sets the token at the specified position to the given value.
|
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, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitensureCanonical, getModificationCountisNullappendNull, appendNull, appendZero, appendZero, resetcompareElement, compareElements, getElementComparator, hashCode, isNull, size, toStringappend, append, append, appendpublic PeriodTokenList(int initialCapacity)
initialCapacity - the initial capacity.public ScalarTokenType getType()
ScalarTokenSequencegetType in interface ScalarTokenSequencegetType in interface ScalarTypedgetType in interface TokenTypedpublic PeriodValued getToken(int index)
TokenSequencegetToken in interface PeriodTokenSequencegetToken in interface ScalarTokenSequencegetToken in interface TokenSequenceindex - the index of the tokenpublic Period getPeriod(int index)
PeriodTokenSequencegetPeriod in interface PeriodTokenSequenceindex - the position of the token in the sequencenull is returned.public int getYears(int index)
PeriodTokenSequencegetYears in interface PeriodTokenSequenceindex - the position of the token in the sequence0 is returned.public int getMonths(int index)
PeriodTokenSequencegetMonths in interface PeriodTokenSequenceindex - the position of the token in the sequence0 is returned.public int getDays(int index)
PeriodTokenSequencegetDays in interface PeriodTokenSequenceindex - the position of the token in the sequence0 is returned.public void getValues(int start,
int[] yearValues,
int[] monthValues,
int[] dayValues,
boolean[] nullsValues,
int offset,
int length)
PeriodTokenSequencegetValues in interface PeriodTokenSequencestart - the starting index of the rangeyearValues - an array into which to place the year values
of elementsmonthValues - an array into which to place the month values
of elementsdayValues - an array into which to place the day values
of elementsnullsValues - 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 PeriodValuedIterator newValueIterator()
TokenSequencenewValueIterator in interface PeriodTokenSequencenewValueIterator in interface ScalarTokenSequencenewValueIterator in interface TokenSequencepublic boolean isZero(int index)
ScalarTokenSequenceisZero in interface ScalarTokenSequenceindex - the index of the tokentrue if the element is zero,
false otherwisepublic void setNull(int index)
MutableTokenSequencesetNull in interface MutableTokenSequenceindex - the position of the token in the arraypublic void setNull(int start,
int length)
MutableTokenSequencesetNull in interface MutableTokenSequencestart - the starting index of the subsequence in the arraylength - the length of the subsequencepublic void setZero(int index)
MutableTokenSequencesetZero in interface MutableTokenSequenceindex - the position of the token in the arraypublic void setZero(int start,
int length)
MutableTokenSequencesetZero in interface MutableTokenSequencestart - the starting index of the subsequence in the arraylength - the length of the subsequencepublic void setValue(int index,
TokenValued value)
MutableTokenSequencesetValue in interface MutableTokenSequenceindex - 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 fillPeriods(int start,
int length,
int years,
int months,
int days)
start - the starting index of the subsequence in the arraylength - the length of the subsequenceyears - number of years in periodmonths - number of months in perioddays - number of days in periodpublic void fillValue(int start,
int length,
TokenValued value)
MutableTokenSequencefillValue in interface MutableTokenSequencestart - 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)
MutableTokenSequencesetValues in interface MutableTokenSequencestart - 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(Period value)
MutablePeriodTokenSequenceappend in interface MutablePeriodTokenSequencevalue - the value to append. If null,
this is equivalent to appendNull().public void appendPeriod(int years,
int months,
int days)
MutablePeriodTokenSequenceappendPeriod in interface MutablePeriodTokenSequenceyears - the number of years in the period.months - the number of months in the period.days - the number of days in the period.public void append(Period value, int count)
MutablePeriodTokenSequenceappend in interface MutablePeriodTokenSequencevalue - the value to append. If null,
this is equivalent to appendNull().count - the number of copies to append.public void appendPeriod(int years,
int months,
int days,
int count)
MutablePeriodTokenSequenceappendPeriod in interface MutablePeriodTokenSequenceyears - the number of years in the period.months - the number of months in the period.days - the number of days in the period.count - the number of copies to append.public void set(int index,
Period value)
MutablePeriodTokenSequenceset in interface MutablePeriodTokenSequenceindex - the position to modifyvalue - the period to which to set the token.public void setPeriod(int index,
int years,
int months,
int days)
MutablePeriodTokenSequencesetPeriod in interface MutablePeriodTokenSequenceindex - the position to modifyyears - the number of years in the period.months - the number of months in the period.days - the number of days in the period.public PeriodSettable getTokenSetter(int index)
MutableTokenSequencegetTokenSetter in interface MutableTokenSequencegetTokenSetter in interface MutablePeriodTokenSequencegetTokenSetter in interface MutableScalarTokenSequenceindex - the positionCopyright © 2021 Actian Corporation. All rights reserved.