Interface ColumnRegionReferencing.Converter<ATTR extends Attributes.Any>
- Enclosing interface:
- ColumnRegionReferencing<ATTR extends Attributes.Any,
REFERENCED_COLUMN_REGION extends ColumnRegion<ATTR>>
public static interface ColumnRegionReferencing.Converter<ATTR extends Attributes.Any>
-
Method Summary
Modifier and TypeMethodDescriptionObject[]
convertArray
(Object[] values) Convert an array of values in the region type to an array of values in boxed native format.void
convertRegion
(WritableChunk<? super ATTR> destination, Chunk<? extends ATTR> source, OrderedKeys orderedKeys) Converts all the native source values represented byorderedKeys
from a single region into thedestination
chunk by appending.
-
Method Details
-
convertRegion
void convertRegion(@NotNull WritableChunk<? super ATTR> destination, @NotNull Chunk<? extends ATTR> source, @NotNull OrderedKeys orderedKeys) Converts all the native source values represented byorderedKeys
from a single region into thedestination
chunk by appending. -
convertArray
Convert an array of values in the region type to an array of values in boxed native format.- Parameters:
values
- the values to convert- Returns:
- a new array of converted values
-