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()java.lang.StringgetBusinessKeyValue()java.lang.StringgetJavaConstantName()intgetPosition()SqlRowValuegetPrimaryKey()java.lang.StringgetPrimaryKeyValue()java.lang.StringgetQualifiedName()SqlTablegetTable()java.util.Collection<SqlRowValue>getValues()java.util.Map<java.lang.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 java.util.Map<java.lang.String,SqlRowValue> getValuesMap()
- Returns:
- the values map
-
getValues
public java.util.Collection<SqlRowValue> getValues()
- Returns:
- the values list
-
getPrimaryKey
public SqlRowValue getPrimaryKey()
- Returns:
- the primary key
-
getPrimaryKeyValue
public java.lang.String getPrimaryKeyValue()
- Returns:
- the primary key value
-
getBusinessKey
public SqlRowValue getBusinessKey()
- Returns:
- the business key
-
getBusinessKeyValue
public java.lang.String getBusinessKeyValue()
- Returns:
- the business key value
-
getJavaConstantName
public java.lang.String getJavaConstantName()
- Returns:
- the row name
-
getQualifiedName
public java.lang.String getQualifiedName()
-
-