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 StringgetFieldName()Get field nameintgetFieldPosition()Get field position in space starts with 0StringgetFieldType()Get field typebooleangetIsNullable()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
-
-