Interface SQLField
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataTypegetDataType()Returns the data type of this fieldjava.lang.StringgetLabel()Returns the label of this fieldSchemaPathgetPath()Returns the schema path of this field.SchemaPathgetTablePath()Returns the table path of this field.booleanisPrimaryKey()Returnstrueif this field is a primary key.-
Methods inherited from interface com.orchestranetworks.addon.dint.schema.Field
getIndex, isMultiValued
-
-
-
-
Method Detail
-
getTablePath
SchemaPath getTablePath()
Returns the table path of this field.- Specified by:
getTablePathin interfaceField
-
getPath
SchemaPath getPath()
Returns the schema path of this field.
-
getLabel
java.lang.String getLabel()
Returns the label of this field
-
getDataType
DataType getDataType()
Returns the data type of this field- Specified by:
getDataTypein interfaceField
-
isPrimaryKey
boolean isPrimaryKey()
Returnstrueif this field is a primary key.
-
-