Package adalid.util.sql
Class SqlRowValue
- java.lang.Object
-
- adalid.util.sql.SqlArtifact
-
- adalid.util.sql.SqlRowValue
-
public class SqlRowValue extends SqlArtifact
- Author:
- Jorge Campins
-
-
Constructor Summary
Constructors Constructor Description SqlRowValue(SqlRow row, SqlColumn column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SqlColumngetColumn()StringgetLiteral()ObjectgetObject()intgetPosition()StringgetQualifiedName()SqlRowgetRow()StringgetUpdateStatement()StringgetValue()booleanisBusinessKeyValue()booleanisPrimaryKeyValue()-
Methods inherited from class adalid.util.sql.SqlArtifact
getCapitalizedJavaName, getDecapitalizedJavaName, getJavaName, getName, toString
-
-
-
-
Method Detail
-
getRow
public SqlRow getRow()
- Returns:
- the row
-
getColumn
public SqlColumn getColumn()
- Returns:
- the column
-
getPosition
public int getPosition()
- Returns:
- the ordinal position
-
getObject
public Object getObject()
- Returns:
- the object
-
getValue
public String getValue()
- Returns:
- the value
-
getLiteral
public String getLiteral()
- Returns:
- the literal
-
isPrimaryKeyValue
public boolean isPrimaryKeyValue()
- Returns:
- the primary key value indicator
-
isBusinessKeyValue
public boolean isBusinessKeyValue()
- Returns:
- the business key value indicator
-
getQualifiedName
public String getQualifiedName()
-
getUpdateStatement
public String getUpdateStatement()
-
-