Package org.apache.parquet.example.data
Class GroupValueSource
- java.lang.Object
-
- org.apache.parquet.example.data.GroupValueSource
-
-
Constructor Summary
Constructors Constructor Description GroupValueSource()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract BinarygetBinary(int fieldIndex, int index)BinarygetBinary(String field, int index)abstract booleangetBoolean(int fieldIndex, int index)booleangetBoolean(String field, int index)abstract doublegetDouble(int fieldIndex, int index)doublegetDouble(String field, int index)abstract intgetFieldRepetitionCount(int fieldIndex)intgetFieldRepetitionCount(String field)abstract floatgetFloat(int fieldIndex, int index)floatgetFloat(String field, int index)abstract GroupValueSourcegetGroup(int fieldIndex, int index)GroupValueSourcegetGroup(String field, int index)abstract BinarygetInt96(int fieldIndex, int index)BinarygetInt96(String field, int index)abstract intgetInteger(int fieldIndex, int index)intgetInteger(String field, int index)abstract longgetLong(int fieldIndex, int index)longgetLong(String field, int index)abstract StringgetString(int fieldIndex, int index)StringgetString(String field, int index)abstract GroupTypegetType()abstract StringgetValueToString(int fieldIndex, int index)
-
-
-
Method Detail
-
getFieldRepetitionCount
public int getFieldRepetitionCount(String field)
-
getGroup
public GroupValueSource getGroup(String field, int index)
-
getInteger
public int getInteger(String field, int index)
-
getLong
public long getLong(String field, int index)
-
getDouble
public double getDouble(String field, int index)
-
getFloat
public float getFloat(String field, int index)
-
getBoolean
public boolean getBoolean(String field, int index)
-
getFieldRepetitionCount
public abstract int getFieldRepetitionCount(int fieldIndex)
-
getGroup
public abstract GroupValueSource getGroup(int fieldIndex, int index)
-
getString
public abstract String getString(int fieldIndex, int index)
-
getInteger
public abstract int getInteger(int fieldIndex, int index)
-
getLong
public abstract long getLong(int fieldIndex, int index)
-
getDouble
public abstract double getDouble(int fieldIndex, int index)
-
getFloat
public abstract float getFloat(int fieldIndex, int index)
-
getBoolean
public abstract boolean getBoolean(int fieldIndex, int index)
-
getBinary
public abstract Binary getBinary(int fieldIndex, int index)
-
getInt96
public abstract Binary getInt96(int fieldIndex, int index)
-
getValueToString
public abstract String getValueToString(int fieldIndex, int index)
-
getType
public abstract GroupType getType()
-
-