Class Primitive
- java.lang.Object
-
- org.apache.parquet.example.data.simple.Primitive
-
- Direct Known Subclasses:
BinaryValue,BooleanValue,DoubleValue,FloatValue,Int96Value,IntegerValue,LongValue,NanoTime
public abstract class Primitive extends Object
-
-
Constructor Summary
Constructors Constructor Description Primitive()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description BinarygetBinary()booleangetBoolean()doublegetDouble()floatgetFloat()BinarygetInt96()intgetInteger()longgetLong()StringgetString()abstract voidwriteValue(RecordConsumer recordConsumer)
-
-
-
Method Detail
-
getString
public String getString()
-
getInteger
public int getInteger()
-
getLong
public long getLong()
-
getBoolean
public boolean getBoolean()
-
getBinary
public Binary getBinary()
-
getInt96
public Binary getInt96()
-
getFloat
public float getFloat()
-
getDouble
public double getDouble()
-
writeValue
public abstract void writeValue(RecordConsumer recordConsumer)
-
-