org.hibernate

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 » Database ORM » hibernate » org.hibernate 
org.hibernate

This package defines the central Hibernate APIs.

Java Source File NameTypeComment
AssertionFailure.javaClass Indicates failure of an assertion: a possible bug in Hibernate.
CacheMode.javaClass Controls how the session interacts with the second-level cache and query cache.
CallbackException.javaClass Should be thrown by persistent objects from Lifecycle or Interceptor callbacks.
ConnectionReleaseMode.javaClass Defines the various policies by which Hibernate might release its underlying JDBC connection.
Criteria.javaInterface Criteria is a simplified API for retrieving entities by composing Criterion objects.
DuplicateMappingException.javaClass Raised whenever a duplicate for a certain type occurs.
EmptyInterceptor.javaClass An interceptor that does nothing.
EntityMode.javaClass Defines the representation modes available for entities.
FetchMode.javaClass Represents an association fetching strategy.
Filter.javaInterface Type definition of Filter.
FlushMode.javaClass Represents a flushing strategy.
Hibernate.javaClass
  • Provides access to the full range of Hibernate built-in types.
HibernateException.javaClass Any exception that occurs inside the persistence layer or JDBC driver.
InstantiationException.javaClass Thrown if Hibernate can't instantiate an entity or component class at runtime.
Interceptor.javaInterface Allows user code to inspect and/or change property values.

Inspection occurs before property values are written and after they are read from the database.

There might be a single instance of Interceptor for a SessionFactory, or a new instance might be specified for each Session.
InvalidMappingException.javaClass Thrown when a mapping is found to be invalid. Similar to MappingException, but this contains more info about the path and type of mapping (e.g.
JDBCException.javaClass Wraps an SQLException.
LazyInitializationException.javaClass Indicates access to unfetched data outside of a session context.
LockMode.javaClass Instances represent a lock mode for a row of a relational database table.
MappingException.javaClass An exception that usually occurs at configuration time, rather than runtime, as a result of something screwy in the O-R mappings.
MappingNotFoundException.javaClass Thrown when a resource for a mapping could not be found.
NonUniqueObjectException.javaClass This exception is thrown when an operation would break session-scoped identity.
NonUniqueResultException.javaClass Thrown when the application calls Query.uniqueResult() and the query returned more than one result.
ObjectDeletedException.javaClass Thrown when the user tries to do something illegal with a deleted object.
ObjectNotFoundException.javaClass Thrown when Session.load() fails to select a row with the given primary key (identifier value).
PersistentObjectException.javaClass Thrown when the user passes a persistent instance to a Session method that expects a transient instance.
PropertyAccessException.javaClass A problem occurred accessing a property of an instance of a persistent class by reflection, or via CGLIB.
PropertyNotFoundException.javaClass Indicates that an expected getter or setter method could not be found on a class.
PropertyValueException.javaClass Thrown when the (illegal) value of a property can not be persisted.
Query.javaInterface An object-oriented representation of a Hibernate query.
QueryException.javaClass A problem occurred translating a Hibernate query to SQL due to invalid query syntax, etc.
QueryParameterException.javaClass
ReplicationMode.javaClass Represents a replication strategy.
ScrollableResults.javaInterface A result iterator that allows moving around within the results by arbitrary increments.
ScrollMode.javaClass
Session.javaInterface The main runtime interface between a Java application and Hibernate.
SessionException.javaClass Thrown when the user calls a method of a Session that is in an inappropropriate state for the given call (for example, the the session is closed or disconnected).
SessionFactory.javaInterface Creates Sessions.
SQLQuery.javaInterface Allows the user to declare the types and select list injection points of all entities returned by the query.
StaleObjectStateException.javaClass A StaleStateException that carries information about a particular entity instance that was the source of the failure.
StaleStateException.javaClass Thrown when a version number or timestamp check failed, indicating that the Session contained stale data (when using long transactions with versioning).
StatelessSession.javaInterface A command-oriented API for performing bulk operations against a database.

A stateless session does not implement a first-level cache nor interact with any second-level cache, nor does it implement transactional write-behind or automatic dirty checking, nor do operations cascade to associated instances.
Transaction.javaInterface Allows the application to define units of work, while maintaining abstraction from the underlying transaction implementation (eg.
TransactionException.javaClass Indicates that a transaction could not be begun, committed or rolled back.
TransientObjectException.javaClass Thrown when the user passes a transient instance to a Session method that expects a persistent instance.
TypeMismatchException.javaClass
UnresolvableObjectException.javaClass Thrown when Hibernate could not resolve an object by id, especially when loading an association.
WrongClassException.javaClass Thrown when Session.load() selects a row with the given primary key (identifier value) but the row's discriminator value specifies a subclass that is not assignable to the class requested by the user.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.