Java Doc for TableRow.java in  » Content-Management-System » dspace » org » dspace » storage » rdbms » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » dspace » org.dspace.storage.rdbms 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.dspace.storage.rdbms.TableRow

TableRow
public class TableRow (Code)
Represents a database row.
author:
   Peter Breton
version:
   $Revision: 2639 $



Constructor Summary
public  TableRow(String table, List columns)
     Constructor
Parameters:
  table - The name of the database table containing this row.
Parameters:
  columns - A list of column names.

Method Summary
static  Stringcanonicalize(String column)
     Return the canonical name for column.
Parameters:
  column - The name of the column.
public  booleanequals(Object obj)
     Return true if this object equals obj, false otherwise.
public  booleangetBooleanColumn(String column)
     Return the boolean value of column.
public  java.util.DategetDateColumn(String column)
     Return the date value of column.
public  intgetIntColumn(String column)
     Return the integer value of column.
public  longgetLongColumn(String column)
     Return the long value of column.
public  StringgetStringColumn(String column)
     Return the String value of column.
public  StringgetTable()
     Return the name of the table containing this row, or null if this row is not associated with a database table.
public  booleanhasColumn(String column)
     Return true if this row contains a column with this name.
public  booleanhasColumnChanged(String column)
     Return true if this row contains this column and the value has been updated.
public  inthashCode()
     Return a hash code for this object.
public  booleanisColumnNull(String column)
     Return true if the column is an SQL NULL.
 voidresetChanged()
     package private method to reset the flags of which columns have been updated This is used by the database manager after it has finished processing the contents of a resultset, so that it can update only columns that have been updated.
public  voidsetColumn(String column, boolean b)
     Set column to the boolean b.
public  voidsetColumn(String column, String s)
     Set column to the String s.
public  voidsetColumn(String column, int i)
     Set column to the integer i.
public  voidsetColumn(String column, long l)
     Set column to the long l.
public  voidsetColumn(String column, java.util.Date d)
     Set column to the date d.
public  voidsetColumnNull(String column)
     Set column to an SQL NULL.
public  StringtoString()
     Return a String representation of this object.


Constructor Detail
TableRow
public TableRow(String table, List columns)(Code)
Constructor
Parameters:
  table - The name of the database table containing this row.
Parameters:
  columns - A list of column names. Each member of the List is a String.After construction, the list of columns is fixed; attemptingto access a column not in the list will cause anIllegalArgumentException to be thrown.




Method Detail
canonicalize
static String canonicalize(String column)(Code)
Return the canonical name for column.
Parameters:
  column - The name of the column. The canonical name of the column.



equals
public boolean equals(Object obj)(Code)
Return true if this object equals obj, false otherwise.
Parameters:
  obj - true if TableRow objects are equal



getBooleanColumn
public boolean getBooleanColumn(String column)(Code)
Return the boolean value of column. If the column's type is not a boolean, or the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive) The boolean value of the column, or false if the column is an SQLnull.



getDateColumn
public java.util.Date getDateColumn(String column)(Code)
Return the date value of column. If the column's type is not a date, or the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive) - The date value of the column, or null if the column is an SQLnull.



getIntColumn
public int getIntColumn(String column)(Code)
Return the integer value of column. If the column's type is not an integer, or the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive) The integer value of the column, or -1 if the column is an SQLnull.



getLongColumn
public long getLongColumn(String column)(Code)
Return the long value of column. If the column's type is not an long, or the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive) The long value of the column, or -1 if the column is an SQL null.



getStringColumn
public String getStringColumn(String column)(Code)
Return the String value of column. If the column's type is not a String, or the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive) The String value of the column, or null if the column is an SQLnull.



getTable
public String getTable()(Code)
Return the name of the table containing this row, or null if this row is not associated with a database table. The name of the table containing this row



hasColumn
public boolean hasColumn(String column)(Code)
Return true if this row contains a column with this name.
Parameters:
  column - The column name (case-insensitive) True if this row contains a column with this name.



hasColumnChanged
public boolean hasColumnChanged(String column)(Code)
Return true if this row contains this column and the value has been updated.
Parameters:
  column - The column name (case-insensitive) True if this row contains a column with this name.



hashCode
public int hashCode()(Code)
Return a hash code for this object. int hash of object



isColumnNull
public boolean isColumnNull(String column)(Code)
Return true if the column is an SQL NULL.
Parameters:
  column - The column name (case-insensitive) True if the column is an SQL NULL



resetChanged
void resetChanged()(Code)
package private method to reset the flags of which columns have been updated This is used by the database manager after it has finished processing the contents of a resultset, so that it can update only columns that have been updated. Note that this method does not reset the values themselves, only the flags, and should not be considered safe to call from anywhere other than the DatabaseManager.



setColumn
public void setColumn(String column, boolean b)(Code)
Set column to the boolean b. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)
Parameters:
  b - The boolean value



setColumn
public void setColumn(String column, String s)(Code)
Set column to the String s. If s is null, the column is set to null. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)
Parameters:
  s - The String value



setColumn
public void setColumn(String column, int i)(Code)
Set column to the integer i. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)
Parameters:
  i - The integer value



setColumn
public void setColumn(String column, long l)(Code)
Set column to the long l. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)
Parameters:
  l - The long value



setColumn
public void setColumn(String column, java.util.Date d)(Code)
Set column to the date d. If the date is null, the column is set to NULL as well. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)
Parameters:
  d - The date value



setColumnNull
public void setColumnNull(String column)(Code)
Set column to an SQL NULL. If the column does not exist, an IllegalArgumentException is thrown.
Parameters:
  column - The column name (case-insensitive)



toString
public String toString()(Code)
Return a String representation of this object. String representaton



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.