Package adalid.util.sql
Class SqlRow
- java.lang.Object
-
- adalid.util.sql.SqlArtifact
-
- adalid.util.sql.SqlRow
-
public class SqlRow extends SqlArtifact
- Author:
- Jorge Campins
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqlRowValuegetBusinessKey()StringgetBusinessKeyValue()StringgetJavaConstantName()intgetPosition()SqlRowValuegetPrimaryKey()StringgetPrimaryKeyValue()StringgetQualifiedName()SqlTablegetTable()Collection<SqlRowValue>getValues()Map<String,SqlRowValue>getValuesMap()-
Methods inherited from class adalid.util.sql.SqlArtifact
getCapitalizedJavaName, getDecapitalizedJavaName, getJavaName, getName, toString
-
-
-
-
Constructor Detail
-
SqlRow
public SqlRow(SqlTable table)
-
-
Method Detail
-
getTable
public SqlTable getTable()
- Returns:
- the table
-
getPosition
public int getPosition()
- Returns:
- the ordinal position
-
getValuesMap
public Map<String,SqlRowValue> getValuesMap()
- Returns:
- the values map
-
getValues
public Collection<SqlRowValue> getValues()
- Returns:
- the values list
-
getPrimaryKey
public SqlRowValue getPrimaryKey()
- Returns:
- the primary key
-
getPrimaryKeyValue
public String getPrimaryKeyValue()
- Returns:
- the primary key value
-
getBusinessKey
public SqlRowValue getBusinessKey()
- Returns:
- the business key
-
getBusinessKeyValue
public String getBusinessKeyValue()
- Returns:
- the business key value
-
getJavaConstantName
public String getJavaConstantName()
- Returns:
- the row name
-
getQualifiedName
public String getQualifiedName()
-
-