@Evolving public interface Row
Modifier and Type | Method and Description |
---|---|
ArrayValue |
getArray(int ordinal)
Return array value of the column located at the given ordinal.
|
byte[] |
getBinary(int ordinal)
Return binary value of the column located at the given ordinal.
|
boolean |
getBoolean(int ordinal)
Return boolean value of the column located at the given ordinal.
|
byte |
getByte(int ordinal)
Return byte value of the column located at the given ordinal.
|
java.math.BigDecimal |
getDecimal(int ordinal)
Return decimal value of the column located at the given ordinal.
|
double |
getDouble(int ordinal)
Return double value of the column located at the given ordinal.
|
float |
getFloat(int ordinal)
Return float value of the column located at the given ordinal.
|
int |
getInt(int ordinal)
Return integer value of the column located at the given ordinal.
|
long |
getLong(int ordinal)
Return long value of the column located at the given ordinal.
|
MapValue |
getMap(int ordinal)
Return map value of the column located at the given ordinal.
|
StructType |
getSchema() |
short |
getShort(int ordinal)
Return short value of the column located at the given ordinal.
|
String |
getString(int ordinal)
Return string value of the column located at the given ordinal.
|
Row |
getStruct(int ordinal)
Return struct value of the column located at the given ordinal.
|
boolean |
isNullAt(int ordinal) |
StructType getSchema()
boolean isNullAt(int ordinal)
ordinal
- the ordinal of the column to checkordinal
is nullboolean getBoolean(int ordinal)
byte getByte(int ordinal)
short getShort(int ordinal)
int getInt(int ordinal)
long getLong(int ordinal)
float getFloat(int ordinal)
double getDouble(int ordinal)
String getString(int ordinal)
java.math.BigDecimal getDecimal(int ordinal)
byte[] getBinary(int ordinal)
Row getStruct(int ordinal)
ArrayValue getArray(int ordinal)
MapValue getMap(int ordinal)