Package io.tarantool.driver.api.metadata
Interface TarantoolFieldMetadata
-
- All Superinterfaces:
Serializable
public interface TarantoolFieldMetadata extends Serializable
Tarantool space field format metadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFieldName()
Get field nameint
getFieldPosition()
Get field position in space starts with 0String
getFieldType()
Get field typeboolean
getIsNullable()
Get isNullable parameter
-
-
-
Method Detail
-
getFieldName
String getFieldName()
Get field name- Returns:
- field name
-
getFieldType
String getFieldType()
Get field type- Returns:
- field type
-
getFieldPosition
int getFieldPosition()
Get field position in space starts with 0- Returns:
- field position in space starts with 0
-
getIsNullable
boolean getIsNullable()
Get isNullable parameter- Returns:
- is_nullable parameter
-
-