Interface ValueHolder
-
public interface ValueHolderStores converted Parquet values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Object>getValues()Returns the values as immutable list.voidput(int index, Object value)Inserts a value to the given position.voidreset()Resets the internal value holder data structure.
-
-
-
Method Detail
-
reset
void reset()
Resets the internal value holder data structure.
-
getValues
List<Object> getValues()
Returns the values as immutable list.- Returns:
- list of values for this value holder
-
put
void put(int index, Object value)Inserts a value to the given position.- Parameters:
index- position to insert valuevalue- value to insert
-
-