var ROW_SPACER='\u00A0\u00A0\u00A0\u00A0';updateRequired=false;queueProcessing=false;currentSearchId=0;textInput=null;rowCount=35;menuTable=null;menuTableRows=new Array();previousQuery=null;var targetDoc=null;var targetWin=null;function setupSearchField(win)
{targetWin=win;targetDoc=win.document;textInput=targetDoc.getElementById('gaSearch');textInput.onkeydown=keydown;textInput.onkeyup=keyup;textInput.onfocus=processFocus;textInput.onblur=processBlur;try
{}catch(e)
{}menuTable=targetDoc.createElement('table');menuTable.className='gaMenu';menuTable.style.display='none';menuTable.cellSpacing=0;menuTable.cellPadding=0;menuTable.border=0;menuTable.style.position='absolute';menuTable.style.zIndex=100;for(var i=0;i<rowCount;i++)
{var row=menuTable.insertRow(i);var td=targetDoc.createElement('td');td.align='left';td.idx=i;td.onmousedown=goToResource;row.appendChild(td);td.appendChild(targetDoc.createTextNode('\u00A0'));menuTableRows[i]=td;}targetDoc.body.appendChild(menuTable);}function gotapi_prepareData(data)
{for(var i=0;i<data.length-1;i++)
{var offset=data[i].p;data[i].p=data[i-offset];}}function removeAllChilds(argNode)
{while(argNode.firstChild)
{argNode.removeChild(argNode.firstChild);}}function processFocus(evt)
{var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(updateRequired) {update();}setMenuVisible(true);}function processBlur(evt)
{setMenuVisible(false);}function Module(id,path,title,url,popup)
{this.id=id;this.path=path;this.title=title;this.data=null;this.url=url;this.popup=popup;}function keyup(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key !=13 && key !=255 && key !=40 && key !=38)
{update();return false;}}function keydown(evt)
{var key=evt?evt.keyCode:targetWin.event.keyCode;if(key==13)
{showRow(selectedRow,false);var isNetscape=navigator.appName.toLowerCase().indexOf('netscape') >=0;if(isNetscape)
{if (evt.preventDefault) evt.preventDefault();if (evt.returnValue) evt.returnValue=false;if (evt.stopPropagation) evt.stopPropagation();}return false;}else if(key==40)
{selectRow(selectedRow+1,+1);setMenuVisible(true);}else if(key==38)
{selectRow(selectedRow-1,-1);setMenuVisible(true);}else if(key !=255)
{setMenuVisible(true);return true;}return false;}function selectRow(argRow,argDirection)
{var row=argRow;for(;;)
{if(row >=rowCount||row < 0||menuTableRows[row].style.display=='none')
{return;}if(menuTableRows[row].n)
{break;}row+=argDirection;}if(selectedRow >=0)
{var activeRow=menuTableRows[selectedRow];activeRow.className='gaRegularRow';}selectedRow=row;var activeRow=menuTableRows[selectedRow];activeRow.className='gaSelectedRow';}function search(argSearchId)
{if(currentSearchId !=argSearchId)
{return;}if(updateRequired)
previousQuery=null;var value=textInput.value;if(value=='')
{setMenuVisible(false);return;}if(value==previousQuery)
{return;}var extendPrevious=value.indexOf(previousQuery)==0;previousQuery=value;var keywords=value.split(/[ \t\.=<>\/\\\*_\(\):]+/);var res=new Array();for(var i=0;i<keywords.length;i++)
{res.push(new RegExp(keywords[i],"i"));}var startTime=new Date();var result=searchModules(argSearchId,res,keywords[0].toLowerCase());if(!result)
{return;}displayedRows=result;var endTime=new Date();var queryExecutionTime=endTime.getTime()-startTime.getTime();var startTime=new Date();var proceed=showResults(argSearchId,displayedRows);var endTime=new Date();var resultsRenderingTime=endTime.getTime()-startTime.getTime();if(! proceed)
{return;}selectedRow=-1;setMenuVisible(true);selectRow(0,+1);addStats('s',value+':'+queryExecutionTime+":"+resultsRenderingTime);}function searchModules(argSearchId,argRegList,argPriorityKey)
{var results=new Array();var klen=argRegList.length;for(var m=0;m<allModules.length;m++)
{var module=allModules[m];var moduleResults=new Array();var exactMatchEnd=0;var startsWithEnd=0;results.push(moduleResults);if(!module.data||!module.active) continue;var dx=module.data;if(! dx)
{continue;}var len=dx.length-1;for(var i=0;i<len;i++)
{if(exactMatchEnd+startsWithEnd > rowCount)
{break;}if(currentSearchId !=argSearchId)
{return null;}var item=dx[i];var n=dx[i].n;var matched=false;var re=null;for(var k=0;k<klen;k++)
{re=argRegList[k];if(re.test(n))
{matched=true;break;}}if(!matched)
{continue;}if(klen==1||matchItemParents(item,argRegList,re))
{if(n)
{var ln=n.toLowerCase();if(ln==argPriorityKey)
{moduleResults.splice(exactMatchEnd++,0,item);}else if(ln.indexOf(argPriorityKey)==0)
{moduleResults.splice(exactMatchEnd+startsWithEnd++,0,item);}else
{moduleResults.push(item);}}else
{moduleResults.push(item);}}}}return results;}function matchItemParents(argItem,argRes,argExcludingRe)
{var klen=argRes.length;var failed=false;for(var k=0;k<klen;k++)
{var re=argRes[k];if(re==argExcludingRe)
{continue;}var matched=false;var current=argItem;while(current)
{if(re.test(current.n))
{matched=true;break;}current=current.p;}if(!matched)
{failed=true;break;}}return !failed;}function showResults(argSearchId,argResults)
{var nonemptyModuleCount=0;for(var i=0;i<argResults.length;i++)
{if(argResults[i].length > 0) nonemptyModuleCount++;}var row=0;if(nonemptyModuleCount > 0)
{var fairCount=(rowCount - nonemptyModuleCount*2)/ nonemptyModuleCount;fairCount=Math.floor(fairCount);var leftoverCount=0;for(var i=0;i<argResults.length;i++)
{var r=argResults[i];var module=allModules[i];if(module.active && module.data && r.length > 0 && r.length < fairCount)
{leftoverCount+=fairCount - r.length;}}for(var m=0;m<allModules.length;m++)
{var module=allModules[m];if(!module.data||!module.active) continue;var moduleResults=argResults[m];if(! module.data||moduleResults.length <=0)
{continue;}if(row+1 >=rowCount) break;updateResultRow(row++,module.title,'gaHeaderRow',null);var i=0;for(;i<moduleResults.length;i++)
{if(i >=fairCount)
{if(leftoverCount==0) break;leftoverCount--;}var n=moduleResults[i];updateResultRow(row++,getResourceTitle(n),'gaRegularRow',n);}if(i < moduleResults.length)
{updateResultRow(row++,ROW_SPACER+'...','gaFooterRow',null);}}}if(row==0)
{updateResultRow(row++,'... No Matches Found ...','gaHeaderRow',null);addStats('s','-');}while(row < rowCount)
{var tableRow=menuTableRows[row++];tableRow.style.display='none';}return true;}function updateResultRow(argRowId,argTitle,argStyle,argNode)
{var row=menuTableRows[argRowId];row.firstChild.nodeValue=argTitle;row.className=argStyle;row.n=argNode;row.style.display='';}function getResourceTitle(argItem)
{var result='';var item=argItem;while(item && (item.p||item==argItem))
{name=getResourceLabel(item);result=name+(result==''?'':' \u00A0\u2192\u00A0 '+result);item=item.p;}return ROW_SPACER+result;}function getResourceLabel(argItem)
{var name=argItem.n;var type=argItem.t;if(type=='T') name='<'+name+' ... >';else if(type=='M') name=name+' (...)';else if(type=='C') name='class '+name;else if(type=='P');else if(type=='I') name='interface '+name;else if(type=='O');else if(type=='D') name=/*'\u00A7\u00A7 '+*/name;else if(type=='S') name='{'+name+':... }';else if(type=='V');return name;}function setMenuVisible(argVisible)
{if(queueProcessing) return;var visibleNow=menuTable.style.display=='';if(visibleNow==argVisible)
{return;}if(argVisible)
{showPopupNode(menuTable,textInput,3,0);}else
{menuTable.style.display='none';}if(window.opera)
{siteFrame.style.display=argVisible?'none':'';}}function showPopupNode(showNode,relativeNode,offsetX,offsetY)
{var nodeX=relativeNode.offsetLeft;var nodeY=relativeNode.offsetTop+relativeNode.offsetHeight;var node=relativeNode;while(node.offsetParent)
{node=node.offsetParent;nodeX+=node.offsetLeft;nodeY+=node.offsetTop;}showNode.style.left=(nodeX+offsetX)+'px';showNode.style.top=(nodeY+offsetY)+'px';showNode.style.display='';}function getResourceContext(argNode)
{var context=argNode.p
?getResourceContext(argNode.p)
:'';var c=argNode.c;if(c)
{c=uncompressValue(c,argNode);context=c.indexOf('http://')==0
?c:context+c;}return context;}function getResourceUrl(argNode)
{if(argNode.u||argNode.c)
{var ctx=getResourceContext(argNode);var u=argNode.u;if(! u)
{return ctx;}u=uncompressValue(u,argNode);return u.indexOf('http://')==0
?u
:ctx+u;}else
{return argNode.p?getResourceUrl(argNode.p):null;}}function uncompressValue(argValue,argNode)
{var idx=argValue.indexOf('`');if(idx < 0)
{return argValue;}var name=argNode.n;return argValue.substr(0,idx)+name+argValue.substr(idx+1);}function goToResource()
{showRow(this.idx,false)
}function showRow(argRow,argMenuVisible)
{if(argRow < 0)
{return;}setMenuVisible(argMenuVisible);var row=menuTableRows[argRow];showItem(row.n);}function update()
{if(queueProcessing) {if(textInput.value=='') {return;}updateWhenLoaded=true;var lbl=$('loading')
if(lbl) lbl.style.color='black';return;}++currentSearchId;setTimeout('search('+currentSearchId+')',1);}function showItem(argItem)
{var url=getResourceUrl(argItem);targetWin.location.href=url;}allModules=[new Module(0,gaMod,gaTitle,null,null)];function startModuleProcessing(name)
{setupSearchField(window);queueProcessing=true;}function finishModuleProcessing(name,data)
{gotapi_prepareData(data);allModules[0].data=data;allModules[0].active=true;queueProcessing=false;if(updateWhenLoaded) update();document.getElementById('gaWait').style.display='none';document.getElementById('gaInfo').style.display='';}function addStats(argType,argMsg)
{}function sendStats()
{}startModuleProcessing('module_hibernate.js');var P = 'P';
var C = 'C';
var I = 'I';
var M = 'M';
var O = 'O';
var T = 'T';
var D = 'D';
var S = 'S';
var V = 'V';
var tmp = new Array(
{t:D,n:'Hibernate3',u:'verview-summary.html',c:'http://www.hibernate.org/hib_docs/v3/api/o',p:1},
{t:P,n:'org.hibernate',u:'package-summary.html',c:'rg/hibernate/',p:1},
{t:I,n:'Criteria',c:'`.html',p:1},
{t:M,n:'add',u:'#`(org.hibernate.criterion.Criterion)',p:1},
{t:M,n:'addOrder',u:'#`(org.hibernate.criterion.Order)',p:2},
{t:M,n:'createAlias',u:'#`(java.lang.String, java.lang.String)',p:3},
{t:M,n:'createCriteria',u:'#`(java.lang.String)',p:4},
{t:M,n:'getAlias',u:'#`()',p:5},
{t:M,n:'list',u:'#`()',p:6},
{t:M,n:'scroll',u:'#`()',p:7},
{t:M,n:'setCacheable',u:'#`(boolean)',p:8},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:9},
{t:M,n:'setCacheRegion',u:'#`(java.lang.String)',p:10},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:11},
{t:M,n:'setFetchMode',u:'#`(java.lang.String, org.hibernate.FetchMode)',p:12},
{t:M,n:'setFetchSize',u:'#`(int)',p:13},
{t:M,n:'setFirstResult',u:'#`(int)',p:14},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:15},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:16},
{t:M,n:'setMaxResults',u:'#`(int)',p:17},
{t:M,n:'setProjection',u:'#`(org.hibernate.criterion.Projection)',p:18},
{t:M,n:'setResultTransformer',u:'#`(org.hibernate.transform.ResultTransformer)',p:19},
{t:M,n:'setTimeout',u:'#`(int)',p:20},
{t:M,n:'uniqueResult',u:'#`()',p:21},
{t:I,n:'Filter',c:'`.html',p:23},
{t:M,n:'getFilterDefinition',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'setParameter',u:'#`(java.lang.String, java.lang.Object)',p:3},
{t:M,n:'setParameterList',u:'#`(java.lang.String, java.util.Collection)',p:4},
{t:M,n:'validate',u:'#`()',p:5},
{t:I,n:'Interceptor',c:'`.html',p:29},
{t:M,n:'afterTransactionBegin',u:'#`(org.hibernate.Transaction)',p:1},
{t:M,n:'afterTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:2},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:3},
{t:M,n:'findDirty',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:4},
{t:M,n:'getEntity',u:'#`(java.lang.String, java.io.Serializable)',p:5},
{t:M,n:'getEntityName',u:'#`(java.lang.Object)',p:6},
{t:M,n:'instantiate',u:'#`(java.lang.String, org.hibernate.EntityMode, java.io.Serializable)',p:7},
{t:M,n:'isTransient',u:'#`(java.lang.Object)',p:8},
{t:M,n:'onCollectionRecreate',u:'#`(java.lang.Object, java.io.Serializable)',p:9},
{t:M,n:'onCollectionRemove',u:'#`(java.lang.Object, java.io.Serializable)',p:10},
{t:M,n:'onCollectionUpdate',u:'#`(java.lang.Object, java.io.Serializable)',p:11},
{t:M,n:'onDelete',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:12},
{t:M,n:'onFlushDirty',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:13},
{t:M,n:'onLoad',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:14},
{t:M,n:'onPrepareStatement',u:'#`(java.lang.String)',p:15},
{t:M,n:'onSave',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:16},
{t:M,n:'postFlush',u:'#`(java.util.Iterator)',p:17},
{t:M,n:'preFlush',u:'#`(java.util.Iterator)',p:18},
{t:I,n:'Query',c:'`.html',p:48},
{t:M,n:'executeUpdate',u:'#`()',p:1},
{t:M,n:'getNamedParameters',u:'#`()',p:2},
{t:M,n:'getQueryString',u:'#`()',p:3},
{t:M,n:'getReturnAliases',u:'#`()',p:4},
{t:M,n:'getReturnTypes',u:'#`()',p:5},
{t:M,n:'iterate',u:'#`()',p:6},
{t:M,n:'list',u:'#`()',p:7},
{t:M,n:'scroll',u:'#`()',p:8},
{t:M,n:'setBigDecimal',u:'#`(int, java.math.BigDecimal)',p:9},
{t:M,n:'setBigInteger',u:'#`(int, java.math.BigInteger)',p:10},
{t:M,n:'setBinary',u:'#`(int, byte[])',p:11},
{t:M,n:'setBoolean',u:'#`(int, boolean)',p:12},
{t:M,n:'setByte',u:'#`(int, byte)',p:13},
{t:M,n:'setCacheable',u:'#`(boolean)',p:14},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:15},
{t:M,n:'setCacheRegion',u:'#`(java.lang.String)',p:16},
{t:M,n:'setCalendar',u:'#`(int, java.util.Calendar)',p:17},
{t:M,n:'setCalendarDate',u:'#`(int, java.util.Calendar)',p:18},
{t:M,n:'setCharacter',u:'#`(int, char)',p:19},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:20},
{t:M,n:'setDate',u:'#`(int, java.util.Date)',p:21},
{t:M,n:'setDouble',u:'#`(int, double)',p:22},
{t:M,n:'setEntity',u:'#`(int, java.lang.Object)',p:23},
{t:M,n:'setFetchSize',u:'#`(int)',p:24},
{t:M,n:'setFirstResult',u:'#`(int)',p:25},
{t:M,n:'setFloat',u:'#`(int, float)',p:26},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:27},
{t:M,n:'setInteger',u:'#`(int, int)',p:28},
{t:M,n:'setLocale',u:'#`(int, java.util.Locale)',p:29},
{t:M,n:'setLockMode',u:'#`(java.lang.String, org.hibernate.LockMode)',p:30},
{t:M,n:'setLong',u:'#`(int, long)',p:31},
{t:M,n:'setMaxResults',u:'#`(int)',p:32},
{t:M,n:'setParameter',u:'#`(int, java.lang.Object)',p:33},
{t:M,n:'setParameterList',u:'#`(java.lang.String, java.util.Collection)',p:34},
{t:M,n:'setParameters',u:'#`(java.lang.Object[], org.hibernate.type.Type[])',p:35},
{t:M,n:'setProperties',u:'#`(java.lang.Object)',p:36},
{t:M,n:'setReadOnly',u:'#`(boolean)',p:37},
{t:M,n:'setSerializable',u:'#`(int, java.io.Serializable)',p:38},
{t:M,n:'setShort',u:'#`(int, short)',p:39},
{t:M,n:'setString',u:'#`(int, java.lang.String)',p:40},
{t:M,n:'setText',u:'#`(int, java.lang.String)',p:41},
{t:M,n:'setTime',u:'#`(int, java.util.Date)',p:42},
{t:M,n:'setTimeout',u:'#`(int)',p:43},
{t:M,n:'setTimestamp',u:'#`(int, java.util.Date)',p:44},
{t:M,n:'uniqueResult',u:'#`()',p:45},
{t:I,n:'ScrollableResults',c:'`.html',p:94},
{t:M,n:'afterLast',u:'#`()',p:1},
{t:M,n:'beforeFirst',u:'#`()',p:2},
{t:M,n:'close',u:'#`()',p:3},
{t:M,n:'first',u:'#`()',p:4},
{t:M,n:'get',u:'#`()',p:5},
{t:M,n:'getBigDecimal',u:'#`(int)',p:6},
{t:M,n:'getBigInteger',u:'#`(int)',p:7},
{t:M,n:'getBinary',u:'#`(int)',p:8},
{t:M,n:'getBlob',u:'#`(int)',p:9},
{t:M,n:'getBoolean',u:'#`(int)',p:10},
{t:M,n:'getByte',u:'#`(int)',p:11},
{t:M,n:'getCalendar',u:'#`(int)',p:12},
{t:M,n:'getCharacter',u:'#`(int)',p:13},
{t:M,n:'getClob',u:'#`(int)',p:14},
{t:M,n:'getDate',u:'#`(int)',p:15},
{t:M,n:'getDouble',u:'#`(int)',p:16},
{t:M,n:'getFloat',u:'#`(int)',p:17},
{t:M,n:'getInteger',u:'#`(int)',p:18},
{t:M,n:'getLocale',u:'#`(int)',p:19},
{t:M,n:'getLong',u:'#`(int)',p:20},
{t:M,n:'getRowNumber',u:'#`()',p:21},
{t:M,n:'getShort',u:'#`(int)',p:22},
{t:M,n:'getString',u:'#`(int)',p:23},
{t:M,n:'getText',u:'#`(int)',p:24},
{t:M,n:'getTimeZone',u:'#`(int)',p:25},
{t:M,n:'getType',u:'#`(int)',p:26},
{t:M,n:'isFirst',u:'#`()',p:27},
{t:M,n:'isLast',u:'#`()',p:28},
{t:M,n:'last',u:'#`()',p:29},
{t:M,n:'next',u:'#`()',p:30},
{t:M,n:'previous',u:'#`()',p:31},
{t:M,n:'scroll',u:'#`(int)',p:32},
{t:M,n:'setRowNumber',u:'#`(int)',p:33},
{t:I,n:'Session',c:'`.html',p:128},
{t:M,n:'beginTransaction',u:'#`()',p:1},
{t:M,n:'cancelQuery',u:'#`()',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'close',u:'#`()',p:4},
{t:M,n:'connection',u:'#`()',p:5},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:6},
{t:M,n:'createCriteria',u:'#`(java.lang.Class)',p:7},
{t:M,n:'createFilter',u:'#`(java.lang.Object, java.lang.String)',p:8},
{t:M,n:'createQuery',u:'#`(java.lang.String)',p:9},
{t:M,n:'createSQLQuery',u:'#`(java.lang.String)',p:10},
{t:M,n:'delete',u:'#`(java.lang.Object)',p:11},
{t:M,n:'disableFilter',u:'#`(java.lang.String)',p:12},
{t:M,n:'disconnect',u:'#`()',p:13},
{t:M,n:'enableFilter',u:'#`(java.lang.String)',p:14},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:15},
{t:M,n:'flush',u:'#`()',p:16},
{t:M,n:'get',u:'#`(java.lang.Class, java.io.Serializable)',p:17},
{t:M,n:'getCacheMode',u:'#`()',p:18},
{t:M,n:'getCurrentLockMode',u:'#`(java.lang.Object)',p:19},
{t:M,n:'getEnabledFilter',u:'#`(java.lang.String)',p:20},
{t:M,n:'getEntityMode',u:'#`()',p:21},
{t:M,n:'getEntityName',u:'#`(java.lang.Object)',p:22},
{t:M,n:'getFlushMode',u:'#`()',p:23},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object)',p:24},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:25},
{t:M,n:'getSession',u:'#`(org.hibernate.EntityMode)',p:26},
{t:M,n:'getSessionFactory',u:'#`()',p:27},
{t:M,n:'getStatistics',u:'#`()',p:28},
{t:M,n:'getTransaction',u:'#`()',p:29},
{t:M,n:'isConnected',u:'#`()',p:30},
{t:M,n:'isDirty',u:'#`()',p:31},
{t:M,n:'isOpen',u:'#`()',p:32},
{t:M,n:'load',u:'#`(java.lang.Class, java.io.Serializable)',p:33},
{t:M,n:'lock',u:'#`(java.lang.Object, org.hibernate.LockMode)',p:34},
{t:M,n:'merge',u:'#`(java.lang.Object)',p:35},
{t:M,n:'persist',u:'#`(java.lang.Object)',p:36},
{t:M,n:'reconnect',u:'#`()',p:37},
{t:M,n:'refresh',u:'#`(java.lang.Object)',p:38},
{t:M,n:'replicate',u:'#`(java.lang.Object, org.hibernate.ReplicationMode)',p:39},
{t:M,n:'save',u:'#`(java.lang.Object)',p:40},
{t:M,n:'saveOrUpdate',u:'#`(java.lang.Object)',p:41},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:42},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:43},
{t:M,n:'setReadOnly',u:'#`(java.lang.Object, boolean)',p:44},
{t:M,n:'update',u:'#`(java.lang.Object)',p:45},
{t:I,n:'SessionFactory',c:'`.html',p:174},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'evict',u:'#`(java.lang.Class)',p:2},
{t:M,n:'evictCollection',u:'#`(java.lang.String)',p:3},
{t:M,n:'evictEntity',u:'#`(java.lang.String)',p:4},
{t:M,n:'evictQueries',u:'#`()',p:5},
{t:M,n:'getAllClassMetadata',u:'#`()',p:6},
{t:M,n:'getAllCollectionMetadata',u:'#`()',p:7},
{t:M,n:'getClassMetadata',u:'#`(java.lang.Class)',p:8},
{t:M,n:'getCollectionMetadata',u:'#`(java.lang.String)',p:9},
{t:M,n:'getCurrentSession',u:'#`()',p:10},
{t:M,n:'getDefinedFilterNames',u:'#`()',p:11},
{t:M,n:'getFilterDefinition',u:'#`(java.lang.String)',p:12},
{t:M,n:'getStatistics',u:'#`()',p:13},
{t:M,n:'isClosed',u:'#`()',p:14},
{t:M,n:'openSession',u:'#`()',p:15},
{t:M,n:'openStatelessSession',u:'#`()',p:16},
{t:I,n:'SQLQuery',c:'`.html',p:191},
{t:M,n:'addEntity',u:'#`(java.lang.Class)',p:1},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addScalar',u:'#`(java.lang.String)',p:3},
{t:M,n:'setResultSetMapping',u:'#`(java.lang.String)',p:4},
{t:I,n:'StatelessSession',c:'`.html',p:196},
{t:M,n:'beginTransaction',u:'#`()',p:1},
{t:M,n:'close',u:'#`()',p:2},
{t:M,n:'connection',u:'#`()',p:3},
{t:M,n:'createCriteria',u:'#`(java.lang.Class)',p:4},
{t:M,n:'createQuery',u:'#`(java.lang.String)',p:5},
{t:M,n:'createSQLQuery',u:'#`(java.lang.String)',p:6},
{t:M,n:'delete',u:'#`(java.lang.Object)',p:7},
{t:M,n:'get',u:'#`(java.lang.Class, java.io.Serializable)',p:8},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:9},
{t:M,n:'getTransaction',u:'#`()',p:10},
{t:M,n:'insert',u:'#`(java.lang.Object)',p:11},
{t:M,n:'update',u:'#`(java.lang.Object)',p:12},
{t:I,n:'Transaction',c:'`.html',p:209},
{t:M,n:'begin',u:'#`()',p:1},
{t:M,n:'commit',u:'#`()',p:2},
{t:M,n:'isActive',u:'#`()',p:3},
{t:M,n:'registerSynchronization',u:'#`(javax.transaction.Synchronization)',p:4},
{t:M,n:'rollback',u:'#`()',p:5},
{t:M,n:'setTimeout',u:'#`(int)',p:6},
{t:M,n:'wasCommitted',u:'#`()',p:7},
{t:M,n:'wasRolledBack',u:'#`()',p:8},
{t:C,n:'CacheMode',c:'`.html',p:218},
{t:O,n:'GET',u:'#`',p:1},
{t:O,n:'IGNORE',u:'#`',p:2},
{t:O,n:'NORMAL',u:'#`',p:3},
{t:O,n:'PUT',u:'#`',p:4},
{t:O,n:'REFRESH',u:'#`',p:5},
{t:M,n:'isGetEnabled',u:'#`()',p:6},
{t:M,n:'isPutEnabled',u:'#`()',p:7},
{t:M,n:'toString',u:'#`()',p:8},
{t:C,n:'ConnectionReleaseMode',c:'`.html',p:227},
{t:O,n:'AFTER_STATEMENT',u:'#`',p:1},
{t:O,n:'AFTER_TRANSACTION',u:'#`',p:2},
{t:O,n:'ON_CLOSE',u:'#`',p:3},
{t:M,n:'parse',u:'#`(java.lang.String)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'EmptyInterceptor',c:'`.html',p:233},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'afterTransactionBegin',u:'#`(org.hibernate.Transaction)',p:2},
{t:M,n:'afterTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:3},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:4},
{t:M,n:'findDirty',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:5},
{t:M,n:'getEntity',u:'#`(java.lang.String, java.io.Serializable)',p:6},
{t:M,n:'getEntityName',u:'#`(java.lang.Object)',p:7},
{t:M,n:'instantiate',u:'#`(java.lang.String, org.hibernate.EntityMode, java.io.Serializable)',p:8},
{t:M,n:'isTransient',u:'#`(java.lang.Object)',p:9},
{t:M,n:'onCollectionRecreate',u:'#`(java.lang.Object, java.io.Serializable)',p:10},
{t:M,n:'onCollectionRemove',u:'#`(java.lang.Object, java.io.Serializable)',p:11},
{t:M,n:'onCollectionUpdate',u:'#`(java.lang.Object, java.io.Serializable)',p:12},
{t:M,n:'onDelete',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:13},
{t:M,n:'onFlushDirty',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:14},
{t:M,n:'onLoad',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:15},
{t:M,n:'onPrepareStatement',u:'#`(java.lang.String)',p:16},
{t:M,n:'onSave',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], java.lang.String[], org.hibernate.type.Type[])',p:17},
{t:M,n:'postFlush',u:'#`(java.util.Iterator)',p:18},
{t:M,n:'preFlush',u:'#`(java.util.Iterator)',p:19},
{t:C,n:'EntityMode',c:'`.html',p:253},
{t:O,n:'DOM4J',u:'#`',p:1},
{t:O,n:'MAP',u:'#`',p:2},
{t:O,n:'POJO',u:'#`',p:3},
{t:M,n:'parse',u:'#`(java.lang.String)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'FetchMode',c:'`.html',p:259},
{t:O,n:'DEFAULT',u:'#`',p:1},
{t:O,n:'EAGER',u:'#`',p:2},
{t:O,n:'JOIN',u:'#`',p:3},
{t:O,n:'LAZY',u:'#`',p:4},
{t:O,n:'SELECT',u:'#`',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'FlushMode',c:'`.html',p:266},
{t:O,n:'ALWAYS',u:'#`',p:1},
{t:O,n:'AUTO',u:'#`',p:2},
{t:O,n:'COMMIT',u:'#`',p:3},
{t:O,n:'NEVER',u:'#`',p:4},
{t:M,n:'lessThan',u:'#`(org.hibernate.FlushMode)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'Hibernate',c:'`.html',p:273},
{t:O,n:'BIG_DECIMAL',u:'#`',p:1},
{t:O,n:'BIG_INTEGER',u:'#`',p:2},
{t:O,n:'BINARY',u:'#`',p:3},
{t:O,n:'BLOB',u:'#`',p:4},
{t:O,n:'BOOLEAN',u:'#`',p:5},
{t:O,n:'BYTE',u:'#`',p:6},
{t:O,n:'CALENDAR',u:'#`',p:7},
{t:O,n:'CALENDAR_DATE',u:'#`',p:8},
{t:O,n:'CHARACTER',u:'#`',p:9},
{t:O,n:'CLASS',u:'#`',p:10},
{t:O,n:'CLOB',u:'#`',p:11},
{t:O,n:'CURRENCY',u:'#`',p:12},
{t:O,n:'DATE',u:'#`',p:13},
{t:O,n:'DOUBLE',u:'#`',p:14},
{t:O,n:'FLOAT',u:'#`',p:15},
{t:O,n:'INTEGER',u:'#`',p:16},
{t:O,n:'LOCALE',u:'#`',p:17},
{t:O,n:'LONG',u:'#`',p:18},
{t:O,n:'OBJECT',u:'#`',p:19},
{t:O,n:'SERIALIZABLE',u:'#`',p:20},
{t:O,n:'SHORT',u:'#`',p:21},
{t:O,n:'STRING',u:'#`',p:22},
{t:O,n:'TEXT',u:'#`',p:23},
{t:O,n:'TIME',u:'#`',p:24},
{t:O,n:'TIMESTAMP',u:'#`',p:25},
{t:O,n:'TIMEZONE',u:'#`',p:26},
{t:O,n:'TRUE_FALSE',u:'#`',p:27},
{t:O,n:'YES_NO',u:'#`',p:28},
{t:M,n:'any',u:'#`(org.hibernate.type.Type, org.hibernate.type.Type)',p:29},
{t:M,n:'close',u:'#`(java.util.Iterator)',p:30},
{t:M,n:'createBlob',u:'#`(byte[])',p:31},
{t:M,n:'createClob',u:'#`(java.io.Reader, int)',p:32},
{t:M,n:'custom',u:'#`(java.lang.Class)',p:33},
{t:M,n:'entity',u:'#`(java.lang.Class)',p:34},
{t:M,n:'getClass',u:'#`(java.lang.Object)',p:35},
{t:M,n:'initialize',u:'#`(java.lang.Object)',p:36},
{t:M,n:'isInitialized',u:'#`(java.lang.Object)',p:37},
{t:M,n:'isPropertyInitialized',u:'#`(java.lang.Object, java.lang.String)',p:38},
{t:M,n:'serializable',u:'#`(java.lang.Class)',p:39},
{t:C,n:'LockMode',c:'`.html',p:313},
{t:O,n:'NONE',u:'#`',p:1},
{t:O,n:'READ',u:'#`',p:2},
{t:O,n:'UPGRADE',u:'#`',p:3},
{t:O,n:'UPGRADE_NOWAIT',u:'#`',p:4},
{t:O,n:'WRITE',u:'#`',p:5},
{t:M,n:'greaterThan',u:'#`(org.hibernate.LockMode)',p:6},
{t:M,n:'lessThan',u:'#`(org.hibernate.LockMode)',p:7},
{t:M,n:'toString',u:'#`()',p:8},
{t:C,n:'ReplicationMode',c:'`.html',p:322},
{t:O,n:'EXCEPTION',u:'#`',p:1},
{t:O,n:'IGNORE',u:'#`',p:2},
{t:O,n:'LATEST_VERSION',u:'#`',p:3},
{t:O,n:'OVERWRITE',u:'#`',p:4},
{t:M,n:'shouldOverwriteCurrentVersion',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.type.VersionType)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'ScrollMode',c:'`.html',p:329},
{t:O,n:'FORWARD_ONLY',u:'#`',p:1},
{t:O,n:'SCROLL_INSENSITIVE',u:'#`',p:2},
{t:O,n:'SCROLL_SENSITIVE',u:'#`',p:3},
{t:M,n:'lessThan',u:'#`(org.hibernate.ScrollMode)',p:4},
{t:M,n:'toResultSetType',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'AssertionFailure',u:'`.html',p:336},
{t:C,n:'CallbackException',u:'`.html',p:337},
{t:C,n:'DuplicateMappingException',c:'`.html',p:338},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getType',u:'#`()',p:2},
{t:C,n:'HibernateException',u:'`.html',p:341},
{t:C,n:'InstantiationException',c:'`.html',p:342},
{t:M,n:'getMessage',u:'#`()',p:1},
{t:M,n:'getPersistentClass',u:'#`()',p:2},
{t:C,n:'JDBCException',c:'`.html',p:345},
{t:M,n:'getErrorCode',u:'#`()',p:1},
{t:M,n:'getSQL',u:'#`()',p:2},
{t:M,n:'getSQLException',u:'#`()',p:3},
{t:M,n:'getSQLState',u:'#`()',p:4},
{t:C,n:'LazyInitializationException',u:'`.html',p:350},
{t:C,n:'MappingException',u:'`.html',p:351},
{t:C,n:'NonUniqueObjectException',c:'`.html',p:352},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:C,n:'NonUniqueResultException',u:'`.html',p:356},
{t:C,n:'ObjectDeletedException',u:'`.html',p:357},
{t:C,n:'ObjectNotFoundException',c:'`.html',p:358},
{t:M,n:'throwIfNull',u:'#`(java.lang.Object, java.io.Serializable, java.lang.String)',p:1},
{t:C,n:'PersistentObjectException',u:'`.html',p:360},
{t:C,n:'PropertyAccessException',c:'`.html',p:361},
{t:M,n:'getMessage',u:'#`()',p:1},
{t:M,n:'getPersistentClass',u:'#`()',p:2},
{t:M,n:'getPropertyName',u:'#`()',p:3},
{t:C,n:'PropertyNotFoundException',u:'`.html',p:365},
{t:C,n:'PropertyValueException',c:'`.html',p:366},
{t:M,n:'buildPropertyPath',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:M,n:'getPropertyName',u:'#`()',p:4},
{t:C,n:'QueryException',c:'`.html',p:371},
{t:M,n:'getMessage',u:'#`()',p:1},
{t:M,n:'getQueryString',u:'#`()',p:2},
{t:M,n:'setQueryString',u:'#`(java.lang.String)',p:3},
{t:C,n:'SessionException',u:'`.html',p:375},
{t:C,n:'StaleObjectStateException',c:'`.html',p:376},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:C,n:'StaleStateException',u:'`.html',p:380},
{t:C,n:'TransactionException',u:'`.html',p:381},
{t:C,n:'TransientObjectException',u:'`.html',p:382},
{t:C,n:'UnresolvableObjectException',c:'`.html',p:383},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:M,n:'throwIfNull',u:'#`(java.lang.Object, java.io.Serializable, java.lang.String)',p:4},
{t:C,n:'WrongClassException',c:'`.html',p:388},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:P,n:'org.hibernate.cfg',u:'package-summary.html',c:'rg/hibernate/cfg/',p:393},
{t:I,n:'NamingStrategy',c:'`.html',p:1},
{t:M,n:'classToTableName',u:'#`(java.lang.String)',p:1},
{t:M,n:'collectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:2},
{t:M,n:'columnName',u:'#`(java.lang.String)',p:3},
{t:M,n:'foreignKeyColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:4},
{t:M,n:'joinKeyColumnName',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'logicalCollectionColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:6},
{t:M,n:'logicalCollectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String)',p:7},
{t:M,n:'logicalColumnName',u:'#`(java.lang.String, java.lang.String)',p:8},
{t:M,n:'propertyToColumnName',u:'#`(java.lang.String)',p:9},
{t:M,n:'tableName',u:'#`(java.lang.String)',p:10},
{t:I,n:'QuerySecondPass',u:'`.html',p:12},
{t:I,n:'SecondPass',c:'`.html',p:13},
{t:M,n:'doSecondPass',u:'#`(java.util.Map, java.util.Map)',p:1},
{t:C,n:'CollectionSecondPass',c:'`.html',p:15},
{t:M,n:'doSecondPass',u:'#`(java.util.Map, java.util.Map)',p:1},
{t:M,n:'secondPass',u:'#`(java.util.Map, java.util.Map)',p:2},
{t:C,n:'Configuration',c:'`.html',p:18},
{t:O,n:'auxiliaryDatabaseObjects',u:'#`',p:1},
{t:O,n:'classes',u:'#`',p:2},
{t:O,n:'collections',u:'#`',p:3},
{t:O,n:'columnNameBindingPerTable',u:'#`',p:4},
{t:O,n:'extendsQueue',u:'#`',p:5},
{t:O,n:'filterDefinitions',u:'#`',p:6},
{t:O,n:'imports',u:'#`',p:7},
{t:O,n:'namedQueries',u:'#`',p:8},
{t:O,n:'namedSqlQueries',u:'#`',p:9},
{t:O,n:'namingStrategy',u:'#`',p:10},
{t:O,n:'propertyReferences',u:'#`',p:11},
{t:O,n:'secondPasses',u:'#`',p:12},
{t:O,n:'settingsFactory',u:'#`',p:13},
{t:O,n:'sqlResultSetMappings',u:'#`',p:14},
{t:O,n:'tableNameBinding',u:'#`',p:15},
{t:O,n:'tables',u:'#`',p:16},
{t:O,n:'typeDefs',u:'#`',p:17},
{t:M,n:'add',u:'#`(org.dom4j.Document)',p:18},
{t:M,n:'addAuxiliaryDatabaseObject',u:'#`(org.hibernate.mapping.AuxiliaryDatabaseObject)',p:19},
{t:M,n:'addCacheableFile',u:'#`(java.io.File)',p:20},
{t:M,n:'addClass',u:'#`(java.lang.Class)',p:21},
{t:M,n:'addDirectory',u:'#`(java.io.File)',p:22},
{t:M,n:'addDocument',u:'#`(org.w3c.dom.Document)',p:23},
{t:M,n:'addFile',u:'#`(java.io.File)',p:24},
{t:M,n:'addFilterDefinition',u:'#`(org.hibernate.engine.FilterDefinition)',p:25},
{t:M,n:'addInputStream',u:'#`(java.io.InputStream)',p:26},
{t:M,n:'addJar',u:'#`(java.io.File)',p:27},
{t:M,n:'addProperties',u:'#`(java.util.Properties)',p:28},
{t:M,n:'addResource',u:'#`(java.lang.String)',p:29},
{t:M,n:'addURL',u:'#`(java.net.URL)',p:30},
{t:M,n:'addXML',u:'#`(java.lang.String)',p:31},
{t:M,n:'buildMappings',u:'#`()',p:32},
{t:M,n:'buildSessionFactory',u:'#`()',p:33},
{t:M,n:'buildSettings',u:'#`()',p:34},
{t:M,n:'configure',u:'#`()',p:35},
{t:M,n:'createMappings',u:'#`()',p:36},
{t:M,n:'doConfigure',u:'#`(org.dom4j.Document)',p:37},
{t:M,n:'findPossibleExtends',u:'#`()',p:38},
{t:M,n:'generateDropSchemaScript',u:'#`(org.hibernate.dialect.Dialect)',p:39},
{t:M,n:'generateSchemaCreationScript',u:'#`(org.hibernate.dialect.Dialect)',p:40},
{t:M,n:'generateSchemaUpdateScript',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.tool.hbm2ddl.DatabaseMetadata)',p:41},
{t:M,n:'getClassMapping',u:'#`(java.lang.String)',p:42},
{t:M,n:'getClassMappings',u:'#`()',p:43},
{t:M,n:'getCollectionMapping',u:'#`(java.lang.String)',p:44},
{t:M,n:'getCollectionMappings',u:'#`()',p:45},
{t:M,n:'getConfigurationInputStream',u:'#`(java.lang.String)',p:46},
{t:M,n:'getEventListeners',u:'#`()',p:47},
{t:M,n:'getFilterDefinitions',u:'#`()',p:48},
{t:M,n:'getImports',u:'#`()',p:49},
{t:M,n:'getInterceptor',u:'#`()',p:50},
{t:M,n:'getNamedQueries',u:'#`()',p:51},
{t:M,n:'getNamedSQLQueries',u:'#`()',p:52},
{t:M,n:'getNamingStrategy',u:'#`()',p:53},
{t:M,n:'getProperties',u:'#`()',p:54},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:55},
{t:M,n:'getSqlResultSetMappings',u:'#`()',p:56},
{t:M,n:'getTableMappings',u:'#`()',p:57},
{t:M,n:'mergeProperties',u:'#`(java.util.Properties)',p:58},
{t:M,n:'parseMappingElement',u:'#`(org.dom4j.Element, java.lang.String)',p:59},
{t:M,n:'reset',u:'#`()',p:60},
{t:M,n:'secondPassCompile',u:'#`()',p:61},
{t:M,n:'secondPassCompileForeignKeys',u:'#`(org.hibernate.mapping.Table, java.util.Set)',p:62},
{t:M,n:'setCacheConcurrencyStrategy',u:'#`(java.lang.String, java.lang.String)',p:63},
{t:M,n:'setCollectionCacheConcurrencyStrategy',u:'#`(java.lang.String, java.lang.String)',p:64},
{t:M,n:'setEntityResolver',u:'#`(org.xml.sax.EntityResolver)',p:65},
{t:M,n:'setInterceptor',u:'#`(org.hibernate.Interceptor)',p:66},
{t:M,n:'setListener',u:'#`(java.lang.String, java.lang.Object)',p:67},
{t:M,n:'setListeners',u:'#`(java.lang.String, java.lang.Object[])',p:68},
{t:M,n:'setNamingStrategy',u:'#`(org.hibernate.cfg.NamingStrategy)',p:69},
{t:M,n:'setProperties',u:'#`(java.util.Properties)',p:70},
{t:M,n:'setProperty',u:'#`(java.lang.String, java.lang.String)',p:71},
{t:M,n:'validateSchema',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.tool.hbm2ddl.DatabaseMetadata)',p:72},
{t:C,n:'DefaultNamingStrategy',c:'`.html',p:91},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'classToTableName',u:'#`(java.lang.String)',p:2},
{t:M,n:'collectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:3},
{t:M,n:'columnName',u:'#`(java.lang.String)',p:4},
{t:M,n:'foreignKeyColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:5},
{t:M,n:'joinKeyColumnName',u:'#`(java.lang.String, java.lang.String)',p:6},
{t:M,n:'logicalCollectionColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:7},
{t:M,n:'logicalCollectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String)',p:8},
{t:M,n:'logicalColumnName',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'propertyToColumnName',u:'#`(java.lang.String)',p:10},
{t:M,n:'tableName',u:'#`(java.lang.String)',p:11},
{t:C,n:'Environment',c:'`.html',p:103},
{t:O,n:'AUTO_CLOSE_SESSION',u:'#`',p:1},
{t:O,n:'AUTOCOMMIT',u:'#`',p:2},
{t:O,n:'BATCH_STRATEGY',u:'#`',p:3},
{t:O,n:'BATCH_VERSIONED_DATA',u:'#`',p:4},
{t:O,n:'C3P0_ACQUIRE_INCREMENT',u:'#`',p:5},
{t:O,n:'C3P0_IDLE_TEST_PERIOD',u:'#`',p:6},
{t:O,n:'C3P0_MAX_SIZE',u:'#`',p:7},
{t:O,n:'C3P0_MAX_STATEMENTS',u:'#`',p:8},
{t:O,n:'C3P0_MIN_SIZE',u:'#`',p:9},
{t:O,n:'C3P0_TIMEOUT',u:'#`',p:10},
{t:O,n:'CACHE_NAMESPACE',u:'#`',p:11},
{t:O,n:'CACHE_PROVIDER',u:'#`',p:12},
{t:O,n:'CACHE_REGION_PREFIX',u:'#`',p:13},
{t:O,n:'CONNECTION_PREFIX',u:'#`',p:14},
{t:O,n:'CONNECTION_PROVIDER',u:'#`',p:15},
{t:O,n:'CURRENT_SESSION_CONTEXT_CLASS',u:'#`',p:16},
{t:O,n:'DATASOURCE',u:'#`',p:17},
{t:O,n:'DEFAULT_BATCH_FETCH_SIZE',u:'#`',p:18},
{t:O,n:'DEFAULT_CATALOG',u:'#`',p:19},
{t:O,n:'DEFAULT_ENTITY_MODE',u:'#`',p:20},
{t:O,n:'DEFAULT_SCHEMA',u:'#`',p:21},
{t:O,n:'DIALECT',u:'#`',p:22},
{t:O,n:'DRIVER',u:'#`',p:23},
{t:O,n:'FLUSH_BEFORE_COMPLETION',u:'#`',p:24},
{t:O,n:'FORMAT_SQL',u:'#`',p:25},
{t:O,n:'GENERATE_STATISTICS',u:'#`',p:26},
{t:O,n:'HBM2DDL_AUTO',u:'#`',p:27},
{t:O,n:'ISOLATION',u:'#`',p:28},
{t:O,n:'JACC_CONTEXTID',u:'#`',p:29},
{t:O,n:'JNDI_CLASS',u:'#`',p:30},
{t:O,n:'JNDI_PREFIX',u:'#`',p:31},
{t:O,n:'JNDI_URL',u:'#`',p:32},
{t:O,n:'MAX_FETCH_DEPTH',u:'#`',p:33},
{t:O,n:'ORDER_UPDATES',u:'#`',p:34},
{t:O,n:'OUTPUT_STYLESHEET',u:'#`',p:35},
{t:O,n:'PASS',u:'#`',p:36},
{t:O,n:'POOL_SIZE',u:'#`',p:37},
{t:O,n:'PROXOOL_EXISTING_POOL',u:'#`',p:38},
{t:O,n:'PROXOOL_POOL_ALIAS',u:'#`',p:39},
{t:O,n:'PROXOOL_PREFIX',u:'#`',p:40},
{t:O,n:'PROXOOL_PROPERTIES',u:'#`',p:41},
{t:O,n:'PROXOOL_XML',u:'#`',p:42},
{t:O,n:'QUERY_CACHE_FACTORY',u:'#`',p:43},
{t:O,n:'QUERY_SUBSTITUTIONS',u:'#`',p:44},
{t:O,n:'QUERY_TRANSLATOR',u:'#`',p:45},
{t:O,n:'RELEASE_CONNECTIONS',u:'#`',p:46},
{t:O,n:'SESSION_FACTORY_NAME',u:'#`',p:47},
{t:O,n:'SHOW_SQL',u:'#`',p:48},
{t:O,n:'SQL_EXCEPTION_CONVERTER',u:'#`',p:49},
{t:O,n:'STATEMENT_BATCH_SIZE',u:'#`',p:50},
{t:O,n:'STATEMENT_FETCH_SIZE',u:'#`',p:51},
{t:O,n:'TRANSACTION_MANAGER_STRATEGY',u:'#`',p:52},
{t:O,n:'TRANSACTION_STRATEGY',u:'#`',p:53},
{t:O,n:'URL',u:'#`',p:54},
{t:O,n:'USE_GET_GENERATED_KEYS',u:'#`',p:55},
{t:O,n:'USE_IDENTIFIER_ROLLBACK',u:'#`',p:56},
{t:O,n:'USE_MINIMAL_PUTS',u:'#`',p:57},
{t:O,n:'USE_QUERY_CACHE',u:'#`',p:58},
{t:O,n:'USE_REFLECTION_OPTIMIZER',u:'#`',p:59},
{t:O,n:'USE_SCROLLABLE_RESULTSET',u:'#`',p:60},
{t:O,n:'USE_SECOND_LEVEL_CACHE',u:'#`',p:61},
{t:O,n:'USE_SQL_COMMENTS',u:'#`',p:62},
{t:O,n:'USE_STREAMS_FOR_BINARY',u:'#`',p:63},
{t:O,n:'USE_STRUCTURED_CACHE',u:'#`',p:64},
{t:O,n:'USER',u:'#`',p:65},
{t:O,n:'USER_TRANSACTION',u:'#`',p:66},
{t:O,n:'VERSION',u:'#`',p:67},
{t:O,n:'WRAP_RESULT_SETS',u:'#`',p:68},
{t:M,n:'getProperties',u:'#`()',p:69},
{t:M,n:'isolationLevelToString',u:'#`(int)',p:70},
{t:M,n:'jvmHasJDK14Timestamp',u:'#`()',p:71},
{t:M,n:'jvmHasTimestampBug',u:'#`()',p:72},
{t:M,n:'jvmSupportsGetGeneratedKeys',u:'#`()',p:73},
{t:M,n:'jvmSupportsLinkedHashCollections',u:'#`()',p:74},
{t:M,n:'useReflectionOptimizer',u:'#`()',p:75},
{t:M,n:'useStreamsForBinary',u:'#`()',p:76},
{t:M,n:'verifyProperties',u:'#`(java.util.Properties)',p:77},
{t:C,n:'HbmBinder',c:'`.html',p:181},
{t:M,n:'bindAny',u:'#`(org.dom4j.Element, org.hibernate.mapping.Any, boolean, org.hibernate.cfg.Mappings)',p:1},
{t:M,n:'bindArray',u:'#`(org.dom4j.Element, org.hibernate.mapping.Array, java.lang.String, java.lang.String, org.hibernate.cfg.Mappings)',p:2},
{t:M,n:'bindClass',u:'#`(org.dom4j.Element, org.hibernate.mapping.PersistentClass, org.hibernate.cfg.Mappings, java.util.Map)',p:3},
{t:M,n:'bindCollection',u:'#`(org.dom4j.Element, org.hibernate.mapping.Collection, java.lang.String, java.lang.String, org.hibernate.cfg.Mappings)',p:4},
{t:M,n:'bindCollectionSecondPass',u:'#`(org.dom4j.Element, org.hibernate.mapping.Collection, java.util.Map, org.hibernate.cfg.Mappings, java.util.Map)',p:5},
{t:M,n:'bindColumn',u:'#`(org.dom4j.Element, org.hibernate.mapping.Column, boolean)',p:6},
{t:M,n:'bindColumns',u:'#`(org.dom4j.Element, org.hibernate.mapping.SimpleValue, boolean, boolean, java.lang.String, org.hibernate.cfg.Mappings)',p:7},
{t:M,n:'bindComponent',u:'#`(org.dom4j.Element, org.hibernate.mapping.Component, java.lang.String, java.lang.String, java.lang.String, boolean, boolean, org.hibernate.cfg.Mappings, java.util.Map, boolean)',p:8},
{t:M,n:'bindComposite',u:'#`(org.dom4j.Element, org.hibernate.mapping.Component, java.lang.String, boolean, org.hibernate.cfg.Mappings, java.util.Map)',p:9},
{t:M,n:'bindCompositeId',u:'#`(org.dom4j.Element, org.hibernate.mapping.Component, org.hibernate.mapping.PersistentClass, java.lang.String, org.hibernate.cfg.Mappings, java.util.Map)',p:10},
{t:M,n:'bindIdentifierCollectionSecondPass',u:'#`(org.dom4j.Element, org.hibernate.mapping.IdentifierCollection, java.util.Map, org.hibernate.cfg.Mappings, java.util.Map)',p:11},
{t:M,n:'bindJoinedSubclass',u:'#`(org.dom4j.Element, org.hibernate.mapping.JoinedSubclass, org.hibernate.cfg.Mappings, java.util.Map)',p:12},
{t:M,n:'bindListSecondPass',u:'#`(org.dom4j.Element, org.hibernate.mapping.List, java.util.Map, org.hibernate.cfg.Mappings, java.util.Map)',p:13},
{t:M,n:'bindManyToOne',u:'#`(org.dom4j.Element, org.hibernate.mapping.ManyToOne, java.lang.String, boolean, org.hibernate.cfg.Mappings)',p:14},
{t:M,n:'bindMapSecondPass',u:'#`(org.dom4j.Element, org.hibernate.mapping.Map, java.util.Map, org.hibernate.cfg.Mappings, java.util.Map)',p:15},
{t:M,n:'bindOneToMany',u:'#`(org.dom4j.Element, org.hibernate.mapping.OneToMany, org.hibernate.cfg.Mappings)',p:16},
{t:M,n:'bindOneToOne',u:'#`(org.dom4j.Element, org.hibernate.mapping.OneToOne, java.lang.String, boolean, org.hibernate.cfg.Mappings)',p:17},
{t:M,n:'bindProperty',u:'#`(org.dom4j.Element, org.hibernate.mapping.Property, org.hibernate.cfg.Mappings, java.util.Map)',p:18},
{t:M,n:'bindRoot',u:'#`(org.dom4j.Document, org.hibernate.cfg.Mappings, java.util.Map)',p:19},
{t:M,n:'bindRootClass',u:'#`(org.dom4j.Element, org.hibernate.mapping.RootClass, org.hibernate.cfg.Mappings, java.util.Map)',p:20},
{t:M,n:'bindSimpleValue',u:'#`(org.dom4j.Element, org.hibernate.mapping.SimpleValue, boolean, java.lang.String, org.hibernate.cfg.Mappings)',p:21},
{t:M,n:'bindSubclass',u:'#`(org.dom4j.Element, org.hibernate.mapping.Subclass, org.hibernate.cfg.Mappings, java.util.Map)',p:22},
{t:M,n:'bindUnionSubclass',u:'#`(org.dom4j.Element, org.hibernate.mapping.UnionSubclass, org.hibernate.cfg.Mappings, java.util.Map)',p:23},
{t:M,n:'createClassProperties',u:'#`(org.dom4j.Element, org.hibernate.mapping.PersistentClass, org.hibernate.cfg.Mappings, java.util.Map)',p:24},
{t:M,n:'getCacheMode',u:'#`(java.lang.String)',p:25},
{t:M,n:'getClassName',u:'#`(java.lang.String, org.hibernate.cfg.Mappings)',p:26},
{t:M,n:'getEntityName',u:'#`(org.dom4j.Element, org.hibernate.cfg.Mappings)',p:27},
{t:M,n:'getExtendsNeeded',u:'#`(org.dom4j.Document, org.hibernate.cfg.Mappings)',p:28},
{t:M,n:'getFlushMode',u:'#`(java.lang.String)',p:29},
{t:M,n:'getMetas',u:'#`(org.dom4j.Element, java.util.Map, boolean)',p:30},
{t:M,n:'getParameterTypes',u:'#`(org.dom4j.Element)',p:31},
{t:M,n:'getTypeFromXML',u:'#`(org.dom4j.Element)',p:32},
{t:C,n:'ImprovedNamingStrategy',c:'`.html',p:214},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'addUnderscores',u:'#`(java.lang.String)',p:2},
{t:M,n:'classToTableName',u:'#`(java.lang.String)',p:3},
{t:M,n:'collectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:4},
{t:M,n:'columnName',u:'#`(java.lang.String)',p:5},
{t:M,n:'foreignKeyColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:6},
{t:M,n:'joinKeyColumnName',u:'#`(java.lang.String, java.lang.String)',p:7},
{t:M,n:'logicalCollectionColumnName',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:8},
{t:M,n:'logicalCollectionTableName',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String)',p:9},
{t:M,n:'logicalColumnName',u:'#`(java.lang.String, java.lang.String)',p:10},
{t:M,n:'propertyToColumnName',u:'#`(java.lang.String)',p:11},
{t:M,n:'tableName',u:'#`(java.lang.String)',p:12},
{t:C,n:'Mappings',c:'`.html',p:227},
{t:O,n:'columnNameBindingPerTable',u:'#`',p:1},
{t:O,n:'tableNameBinding',u:'#`',p:2},
{t:M,n:'addAuxiliaryDatabaseObject',u:'#`(org.hibernate.mapping.AuxiliaryDatabaseObject)',p:3},
{t:M,n:'addClass',u:'#`(org.hibernate.mapping.PersistentClass)',p:4},
{t:M,n:'addCollection',u:'#`(org.hibernate.mapping.Collection)',p:5},
{t:M,n:'addColumnBinding',u:'#`(java.lang.String, org.hibernate.mapping.Column, org.hibernate.mapping.Table)',p:6},
{t:M,n:'addDenormalizedTable',u:'#`(java.lang.String, java.lang.String, java.lang.String, boolean, java.lang.String, org.hibernate.mapping.Table)',p:7},
{t:M,n:'addFilterDefinition',u:'#`(org.hibernate.engine.FilterDefinition)',p:8},
{t:M,n:'addImport',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'addQuery',u:'#`(java.lang.String, org.hibernate.engine.NamedQueryDefinition)',p:10},
{t:M,n:'addResultSetMapping',u:'#`(org.hibernate.engine.ResultSetMappingDefinition)',p:11},
{t:M,n:'addSecondPass',u:'#`(org.hibernate.cfg.SecondPass)',p:12},
{t:M,n:'addSQLQuery',u:'#`(java.lang.String, org.hibernate.engine.NamedSQLQueryDefinition)',p:13},
{t:M,n:'addTable',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)',p:14},
{t:M,n:'addTableBinding',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.hibernate.mapping.Table)',p:15},
{t:M,n:'addToExtendsQueue',u:'#`(java.lang.String, org.dom4j.Document)',p:16},
{t:M,n:'addTypeDef',u:'#`(java.lang.String, java.lang.String, java.util.Properties)',p:17},
{t:M,n:'getCatalogName',u:'#`()',p:18},
{t:M,n:'getClass',u:'#`(java.lang.String)',p:19},
{t:M,n:'getCollection',u:'#`(java.lang.String)',p:20},
{t:M,n:'getDefaultAccess',u:'#`()',p:21},
{t:M,n:'getDefaultCascade',u:'#`()',p:22},
{t:M,n:'getDefaultPackage',u:'#`()',p:23},
{t:M,n:'getFilterDefinition',u:'#`(java.lang.String)',p:24},
{t:M,n:'getFilterDefinitions',u:'#`()',p:25},
{t:M,n:'getLogicalColumnName',u:'#`(java.lang.String, org.hibernate.mapping.Table)',p:26},
{t:M,n:'getLogicalTableName',u:'#`(org.hibernate.mapping.Table)',p:27},
{t:M,n:'getNamingStrategy',u:'#`()',p:28},
{t:M,n:'getPhysicalColumnName',u:'#`(java.lang.String, org.hibernate.mapping.Table)',p:29},
{t:M,n:'getQuery',u:'#`(java.lang.String)',p:30},
{t:M,n:'getResultSetMapping',u:'#`(java.lang.String)',p:31},
{t:M,n:'getSchemaName',u:'#`()',p:32},
{t:M,n:'getTable',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:33},
{t:M,n:'getTypeDef',u:'#`(java.lang.String)',p:34},
{t:M,n:'isAutoImport',u:'#`()',p:35},
{t:M,n:'isDefaultLazy',u:'#`()',p:36},
{t:M,n:'iterateCollections',u:'#`()',p:37},
{t:M,n:'iterateTables',u:'#`()',p:38},
{t:M,n:'locatePersistentClassByEntityName',u:'#`(java.lang.String)',p:39},
{t:M,n:'setAutoImport',u:'#`(boolean)',p:40},
{t:M,n:'setCatalogName',u:'#`(java.lang.String)',p:41},
{t:M,n:'setDefaultAccess',u:'#`(java.lang.String)',p:42},
{t:M,n:'setDefaultCascade',u:'#`(java.lang.String)',p:43},
{t:M,n:'setDefaultLazy',u:'#`(boolean)',p:44},
{t:M,n:'setDefaultPackage',u:'#`(java.lang.String)',p:45},
{t:M,n:'setSchemaName',u:'#`(java.lang.String)',p:46},
{t:C,n:'NamedSQLQuerySecondPass',c:'`.html',p:274},
{t:M,n:'doSecondPass',u:'#`(java.util.Map, java.util.Map)',p:1},
{t:C,n:'ResultSetMappingBinder',c:'`.html',p:276},
{t:M,n:'buildResultSetMappingDefinition',u:'#`(org.dom4j.Element, java.lang.String, org.hibernate.cfg.Mappings)',p:1},
{t:C,n:'ResultSetMappingSecondPass',c:'`.html',p:278},
{t:M,n:'doSecondPass',u:'#`(java.util.Map, java.util.Map)',p:1},
{t:C,n:'Settings',c:'`.html',p:280},
{t:M,n:'getBatcherFactory',u:'#`()',p:1},
{t:M,n:'getCacheProvider',u:'#`()',p:2},
{t:M,n:'getCacheRegionPrefix',u:'#`()',p:3},
{t:M,n:'getConnectionProvider',u:'#`()',p:4},
{t:M,n:'getConnectionReleaseMode',u:'#`()',p:5},
{t:M,n:'getDefaultBatchFetchSize',u:'#`()',p:6},
{t:M,n:'getDefaultCatalogName',u:'#`()',p:7},
{t:M,n:'getDefaultEntityMode',u:'#`()',p:8},
{t:M,n:'getDefaultSchemaName',u:'#`()',p:9},
{t:M,n:'getDialect',u:'#`()',p:10},
{t:M,n:'getJdbcBatchSize',u:'#`()',p:11},
{t:M,n:'getJdbcFetchSize',u:'#`()',p:12},
{t:M,n:'getMaximumFetchDepth',u:'#`()',p:13},
{t:M,n:'getQueryCacheFactory',u:'#`()',p:14},
{t:M,n:'getQuerySubstitutions',u:'#`()',p:15},
{t:M,n:'getQueryTranslatorFactory',u:'#`()',p:16},
{t:M,n:'getSessionFactoryName',u:'#`()',p:17},
{t:M,n:'getSQLExceptionConverter',u:'#`()',p:18},
{t:M,n:'getTransactionFactory',u:'#`()',p:19},
{t:M,n:'getTransactionManagerLookup',u:'#`()',p:20},
{t:M,n:'isAutoCloseSessionEnabled',u:'#`()',p:21},
{t:M,n:'isAutoCreateSchema',u:'#`()',p:22},
{t:M,n:'isAutoDropSchema',u:'#`()',p:23},
{t:M,n:'isAutoUpdateSchema',u:'#`()',p:24},
{t:M,n:'isAutoValidateSchema',u:'#`()',p:25},
{t:M,n:'isCommentsEnabled',u:'#`()',p:26},
{t:M,n:'isFlushBeforeCompletionEnabled',u:'#`()',p:27},
{t:M,n:'isFormatSqlEnabled',u:'#`()',p:28},
{t:M,n:'isGetGeneratedKeysEnabled',u:'#`()',p:29},
{t:M,n:'isIdentifierRollbackEnabled',u:'#`()',p:30},
{t:M,n:'isJdbcBatchVersionedData',u:'#`()',p:31},
{t:M,n:'isMinimalPutsEnabled',u:'#`()',p:32},
{t:M,n:'isOrderUpdatesEnabled',u:'#`()',p:33},
{t:M,n:'isQueryCacheEnabled',u:'#`()',p:34},
{t:M,n:'isScrollableResultSetsEnabled',u:'#`()',p:35},
{t:M,n:'isSecondLevelCacheEnabled',u:'#`()',p:36},
{t:M,n:'isShowSqlEnabled',u:'#`()',p:37},
{t:M,n:'isStatisticsEnabled',u:'#`()',p:38},
{t:M,n:'isStructuredCacheEntriesEnabled',u:'#`()',p:39},
{t:M,n:'isWrapResultSetsEnabled',u:'#`()',p:40},
{t:M,n:'setConnectionReleaseMode',u:'#`(org.hibernate.ConnectionReleaseMode)',p:41},
{t:M,n:'setDefaultEntityMode',u:'#`(org.hibernate.EntityMode)',p:42},
{t:M,n:'setQueryCacheFactory',u:'#`(org.hibernate.cache.QueryCacheFactory)',p:43},
{t:C,n:'SettingsFactory',c:'`.html',p:324},
{t:M,n:'buildSettings',u:'#`(java.util.Properties)',p:1},
{t:M,n:'createBatcherFactory',u:'#`(java.util.Properties, int)',p:2},
{t:M,n:'createCacheProvider',u:'#`(java.util.Properties)',p:3},
{t:M,n:'createConnectionProvider',u:'#`(java.util.Properties)',p:4},
{t:M,n:'createQueryCacheFactory',u:'#`(java.util.Properties)',p:5},
{t:M,n:'createQueryTranslatorFactory',u:'#`(java.util.Properties)',p:6},
{t:M,n:'createTransactionFactory',u:'#`(java.util.Properties)',p:7},
{t:M,n:'createTransactionManagerLookup',u:'#`(java.util.Properties)',p:8},
{t:P,n:'org.hibernate.classic',u:'package-summary.html',c:'rg/hibernate/classic/',p:726},
{t:I,n:'Lifecycle',c:'`.html',p:1},
{t:O,n:'NO_VETO',u:'#`',p:1},
{t:O,n:'VETO',u:'#`',p:2},
{t:M,n:'onDelete',u:'#`(org.hibernate.Session)',p:3},
{t:M,n:'onLoad',u:'#`(org.hibernate.Session, java.io.Serializable)',p:4},
{t:M,n:'onSave',u:'#`(org.hibernate.Session)',p:5},
{t:M,n:'onUpdate',u:'#`(org.hibernate.Session)',p:6},
{t:I,n:'Session',c:'`.html',p:8},
{t:M,n:'createSQLQuery',u:'#`(java.lang.String, java.lang.String[], java.lang.Class[])',p:1},
{t:M,n:'delete',u:'#`(java.lang.String)',p:2},
{t:M,n:'filter',u:'#`(java.lang.Object, java.lang.String)',p:3},
{t:M,n:'find',u:'#`(java.lang.String)',p:4},
{t:M,n:'iterate',u:'#`(java.lang.String)',p:5},
{t:M,n:'save',u:'#`(java.lang.Object, java.io.Serializable)',p:6},
{t:M,n:'saveOrUpdateCopy',u:'#`(java.lang.Object)',p:7},
{t:M,n:'update',u:'#`(java.lang.Object, java.io.Serializable)',p:8},
{t:I,n:'Validatable',c:'`.html',p:17},
{t:M,n:'validate',u:'#`()',p:1},
{t:C,n:'ValidationFailure',u:'`.html',p:19},
{t:P,n:'org.hibernate.criterion',u:'package-summary.html',c:'rg/hibernate/criterion/',p:746},
{t:I,n:'CriteriaQuery',c:'`.html',p:1},
{t:M,n:'generateSQLAlias',u:'#`()',p:1},
{t:M,n:'getColumn',u:'#`(org.hibernate.Criteria, java.lang.String)',p:2},
{t:M,n:'getColumnsUsingProjection',u:'#`(org.hibernate.Criteria, java.lang.String)',p:3},
{t:M,n:'getEntityName',u:'#`(org.hibernate.Criteria)',p:4},
{t:M,n:'getFactory',u:'#`()',p:5},
{t:M,n:'getIdentifierColumns',u:'#`(org.hibernate.Criteria)',p:6},
{t:M,n:'getIdentifierType',u:'#`(org.hibernate.Criteria)',p:7},
{t:M,n:'getPropertyName',u:'#`(java.lang.String)',p:8},
{t:M,n:'getSQLAlias',u:'#`(org.hibernate.Criteria)',p:9},
{t:M,n:'getType',u:'#`(org.hibernate.Criteria, java.lang.String)',p:10},
{t:M,n:'getTypedIdentifierValue',u:'#`(org.hibernate.Criteria, java.lang.Object)',p:11},
{t:M,n:'getTypedValue',u:'#`(org.hibernate.Criteria, java.lang.String, java.lang.Object)',p:12},
{t:M,n:'getTypeUsingProjection',u:'#`(org.hibernate.Criteria, java.lang.String)',p:13},
{t:I,n:'CriteriaSpecification',c:'`.html',p:15},
{t:O,n:'ALIAS_TO_ENTITY_MAP',u:'#`',p:1},
{t:O,n:'DISTINCT_ROOT_ENTITY',u:'#`',p:2},
{t:O,n:'PROJECTION',u:'#`',p:3},
{t:O,n:'ROOT_ALIAS',u:'#`',p:4},
{t:O,n:'ROOT_ENTITY',u:'#`',p:5},
{t:I,n:'Criterion',c:'`.html',p:21},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:I,n:'Projection',c:'`.html',p:24},
{t:M,n:'getAliases',u:'#`()',p:1},
{t:M,n:'getColumnAliases',u:'#`(int)',p:2},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'isGrouped',u:'#`()',p:4},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:6},
{t:C,n:'AbstractEmptinessExpression',c:'`.html',p:31},
{t:O,n:'propertyName',u:'#`',p:1},
{t:M,n:'excludeEmpty',u:'#`()',p:2},
{t:M,n:'getQueryableCollection',u:'#`(java.lang.String, java.lang.String, org.hibernate.engine.SessionFactoryImplementor)',p:3},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'AggregateProjection',c:'`.html',p:38},
{t:O,n:'propertyName',u:'#`',p:1},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'AliasedProjection',c:'`.html',p:43},
{t:M,n:'getAliases',u:'#`()',p:1},
{t:M,n:'getColumnAliases',u:'#`(int)',p:2},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'isGrouped',u:'#`()',p:4},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'AvgProjection',c:'`.html',p:51},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:C,n:'BetweenExpression',c:'`.html',p:53},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'Conjunction',u:'`.html',p:57},
{t:C,n:'CountProjection',c:'`.html',p:58},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'setDistinct',u:'#`()',p:2},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'DetachedCriteria',c:'`.html',p:63},
{t:M,n:'add',u:'#`(org.hibernate.criterion.Criterion)',p:1},
{t:M,n:'addOrder',u:'#`(org.hibernate.criterion.Order)',p:2},
{t:M,n:'createAlias',u:'#`(java.lang.String, java.lang.String)',p:3},
{t:M,n:'createCriteria',u:'#`(java.lang.String)',p:4},
{t:M,n:'forClass',u:'#`(java.lang.Class)',p:5},
{t:M,n:'forEntityName',u:'#`(java.lang.String)',p:6},
{t:M,n:'getAlias',u:'#`()',p:7},
{t:M,n:'getExecutableCriteria',u:'#`(org.hibernate.Session)',p:8},
{t:M,n:'setFetchMode',u:'#`(java.lang.String, org.hibernate.FetchMode)',p:9},
{t:M,n:'setProjection',u:'#`(org.hibernate.criterion.Projection)',p:10},
{t:M,n:'setResultTransformer',u:'#`(org.hibernate.transform.ResultTransformer)',p:11},
{t:M,n:'toString',u:'#`()',p:12},
{t:C,n:'Disjunction',u:'`.html',p:76},
{t:C,n:'Distinct',c:'`.html',p:77},
{t:M,n:'getAliases',u:'#`()',p:1},
{t:M,n:'getColumnAliases',u:'#`(int)',p:2},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'isGrouped',u:'#`()',p:4},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'EmptyExpression',c:'`.html',p:85},
{t:M,n:'excludeEmpty',u:'#`()',p:1},
{t:C,n:'Example',c:'`.html',p:87},
{t:M,n:'addComponentTypedValues',u:'#`(java.lang.String, java.lang.Object, org.hibernate.type.AbstractComponentType, java.util.List, org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'addPropertyTypedValue',u:'#`(java.lang.Object, org.hibernate.type.Type, java.util.List)',p:2},
{t:M,n:'appendComponentCondition',u:'#`(java.lang.String, java.lang.Object, org.hibernate.type.AbstractComponentType, org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery, java.lang.StringBuffer)',p:3},
{t:M,n:'appendPropertyCondition',u:'#`(java.lang.String, java.lang.Object, org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery, java.lang.StringBuffer)',p:4},
{t:M,n:'create',u:'#`(java.lang.Object)',p:5},
{t:M,n:'enableLike',u:'#`()',p:6},
{t:M,n:'excludeNone',u:'#`()',p:7},
{t:M,n:'excludeProperty',u:'#`(java.lang.String)',p:8},
{t:M,n:'excludeZeroes',u:'#`()',p:9},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:10},
{t:M,n:'ignoreCase',u:'#`()',p:11},
{t:M,n:'setPropertySelector',u:'#`(org.hibernate.criterion.Example.PropertySelector)',p:12},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:13},
{t:M,n:'toString',u:'#`()',p:14},
{t:C,n:'ExistsSubqueryExpression',c:'`.html',p:102},
{t:M,n:'toLeftSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:C,n:'Expression',c:'`.html',p:104},
{t:M,n:'sql',u:'#`(java.lang.String)',p:1},
{t:C,n:'IdentifierEqExpression',c:'`.html',p:106},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'IdentifierProjection',c:'`.html',p:110},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'isGrouped',u:'#`()',p:2},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'IlikeExpression',c:'`.html',p:116},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'InExpression',c:'`.html',p:120},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'Junction',c:'`.html',p:124},
{t:M,n:'add',u:'#`(org.hibernate.criterion.Criterion)',p:1},
{t:M,n:'getOp',u:'#`()',p:2},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'LogicalExpression',c:'`.html',p:130},
{t:M,n:'getOp',u:'#`()',p:1},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'MatchMode',c:'`.html',p:135},
{t:O,n:'ANYWHERE',u:'#`',p:1},
{t:O,n:'END',u:'#`',p:2},
{t:O,n:'EXACT',u:'#`',p:3},
{t:O,n:'START',u:'#`',p:4},
{t:M,n:'toMatchString',u:'#`(java.lang.String)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'NaturalIdentifier',c:'`.html',p:142},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'set',u:'#`(java.lang.String, java.lang.Object)',p:2},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:C,n:'NotEmptyExpression',c:'`.html',p:146},
{t:M,n:'excludeEmpty',u:'#`()',p:1},
{t:C,n:'NotExpression',c:'`.html',p:148},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'NotNullExpression',c:'`.html',p:152},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'NullExpression',c:'`.html',p:156},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'Order',c:'`.html',p:160},
{t:M,n:'asc',u:'#`(java.lang.String)',p:1},
{t:M,n:'desc',u:'#`(java.lang.String)',p:2},
{t:M,n:'ignoreCase',u:'#`()',p:3},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'ProjectionList',c:'`.html',p:166},
{t:M,n:'add',u:'#`(org.hibernate.criterion.Projection)',p:1},
{t:M,n:'create',u:'#`()',p:2},
{t:M,n:'getAliases',u:'#`()',p:3},
{t:M,n:'getColumnAliases',u:'#`(int)',p:4},
{t:M,n:'getLength',u:'#`()',p:5},
{t:M,n:'getProjection',u:'#`(int)',p:6},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:7},
{t:M,n:'isGrouped',u:'#`()',p:8},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:9},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:10},
{t:M,n:'toString',u:'#`()',p:11},
{t:C,n:'Projections',c:'`.html',p:178},
{t:M,n:'alias',u:'#`(org.hibernate.criterion.Projection, java.lang.String)',p:1},
{t:M,n:'avg',u:'#`(java.lang.String)',p:2},
{t:M,n:'count',u:'#`(java.lang.String)',p:3},
{t:M,n:'countDistinct',u:'#`(java.lang.String)',p:4},
{t:M,n:'distinct',u:'#`(org.hibernate.criterion.Projection)',p:5},
{t:M,n:'groupProperty',u:'#`(java.lang.String)',p:6},
{t:M,n:'id',u:'#`()',p:7},
{t:M,n:'max',u:'#`(java.lang.String)',p:8},
{t:M,n:'min',u:'#`(java.lang.String)',p:9},
{t:M,n:'projectionList',u:'#`()',p:10},
{t:M,n:'property',u:'#`(java.lang.String)',p:11},
{t:M,n:'rowCount',u:'#`()',p:12},
{t:M,n:'sqlGroupProjection',u:'#`(java.lang.String, java.lang.String, java.lang.String[], org.hibernate.type.Type[])',p:13},
{t:M,n:'sqlProjection',u:'#`(java.lang.String, java.lang.String[], org.hibernate.type.Type[])',p:14},
{t:M,n:'sum',u:'#`(java.lang.String)',p:15},
{t:C,n:'Property',c:'`.html',p:194},
{t:M,n:'asc',u:'#`()',p:1},
{t:M,n:'avg',u:'#`()',p:2},
{t:M,n:'between',u:'#`(java.lang.Object, java.lang.Object)',p:3},
{t:M,n:'count',u:'#`()',p:4},
{t:M,n:'desc',u:'#`()',p:5},
{t:M,n:'eq',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:6},
{t:M,n:'eqAll',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:7},
{t:M,n:'eqProperty',u:'#`(org.hibernate.criterion.Property)',p:8},
{t:M,n:'forName',u:'#`(java.lang.String)',p:9},
{t:M,n:'ge',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:10},
{t:M,n:'geAll',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:11},
{t:M,n:'geProperty',u:'#`(org.hibernate.criterion.Property)',p:12},
{t:M,n:'geSome',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:13},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:14},
{t:M,n:'group',u:'#`()',p:15},
{t:M,n:'gt',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:16},
{t:M,n:'gtAll',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:17},
{t:M,n:'gtProperty',u:'#`(org.hibernate.criterion.Property)',p:18},
{t:M,n:'gtSome',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:19},
{t:M,n:'in',u:'#`(java.util.Collection)',p:20},
{t:M,n:'isEmpty',u:'#`()',p:21},
{t:M,n:'isNotEmpty',u:'#`()',p:22},
{t:M,n:'isNotNull',u:'#`()',p:23},
{t:M,n:'isNull',u:'#`()',p:24},
{t:M,n:'le',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:25},
{t:M,n:'leAll',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:26},
{t:M,n:'leProperty',u:'#`(org.hibernate.criterion.Property)',p:27},
{t:M,n:'leSome',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:28},
{t:M,n:'like',u:'#`(java.lang.Object)',p:29},
{t:M,n:'lt',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:30},
{t:M,n:'ltAll',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:31},
{t:M,n:'ltProperty',u:'#`(org.hibernate.criterion.Property)',p:32},
{t:M,n:'ltSome',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:33},
{t:M,n:'max',u:'#`()',p:34},
{t:M,n:'min',u:'#`()',p:35},
{t:M,n:'ne',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:36},
{t:M,n:'neProperty',u:'#`(org.hibernate.criterion.Property)',p:37},
{t:M,n:'notIn',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:38},
{t:C,n:'PropertyExpression',c:'`.html',p:233},
{t:M,n:'getOp',u:'#`()',p:1},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'PropertyProjection',c:'`.html',p:238},
{t:M,n:'getPropertyName',u:'#`()',p:1},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'isGrouped',u:'#`()',p:3},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'PropertySubqueryExpression',c:'`.html',p:245},
{t:M,n:'toLeftSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:C,n:'Restrictions',c:'`.html',p:247},
{t:M,n:'allEq',u:'#`(java.util.Map)',p:1},
{t:M,n:'and',u:'#`(org.hibernate.criterion.Criterion, org.hibernate.criterion.Criterion)',p:2},
{t:M,n:'between',u:'#`(java.lang.String, java.lang.Object, java.lang.Object)',p:3},
{t:M,n:'conjunction',u:'#`()',p:4},
{t:M,n:'disjunction',u:'#`()',p:5},
{t:M,n:'eq',u:'#`(java.lang.String, java.lang.Object)',p:6},
{t:M,n:'eqProperty',u:'#`(java.lang.String, java.lang.String)',p:7},
{t:M,n:'ge',u:'#`(java.lang.String, java.lang.Object)',p:8},
{t:M,n:'geProperty',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'gt',u:'#`(java.lang.String, java.lang.Object)',p:10},
{t:M,n:'gtProperty',u:'#`(java.lang.String, java.lang.String)',p:11},
{t:M,n:'idEq',u:'#`(java.lang.Object)',p:12},
{t:M,n:'ilike',u:'#`(java.lang.String, java.lang.Object)',p:13},
{t:M,n:'in',u:'#`(java.lang.String, java.util.Collection)',p:14},
{t:M,n:'isEmpty',u:'#`(java.lang.String)',p:15},
{t:M,n:'isNotEmpty',u:'#`(java.lang.String)',p:16},
{t:M,n:'isNotNull',u:'#`(java.lang.String)',p:17},
{t:M,n:'isNull',u:'#`(java.lang.String)',p:18},
{t:M,n:'le',u:'#`(java.lang.String, java.lang.Object)',p:19},
{t:M,n:'leProperty',u:'#`(java.lang.String, java.lang.String)',p:20},
{t:M,n:'like',u:'#`(java.lang.String, java.lang.Object)',p:21},
{t:M,n:'lt',u:'#`(java.lang.String, java.lang.Object)',p:22},
{t:M,n:'ltProperty',u:'#`(java.lang.String, java.lang.String)',p:23},
{t:M,n:'naturalId',u:'#`()',p:24},
{t:M,n:'ne',u:'#`(java.lang.String, java.lang.Object)',p:25},
{t:M,n:'neProperty',u:'#`(java.lang.String, java.lang.String)',p:26},
{t:M,n:'not',u:'#`(org.hibernate.criterion.Criterion)',p:27},
{t:M,n:'or',u:'#`(org.hibernate.criterion.Criterion, org.hibernate.criterion.Criterion)',p:28},
{t:M,n:'sizeEq',u:'#`(java.lang.String, int)',p:29},
{t:M,n:'sizeGe',u:'#`(java.lang.String, int)',p:30},
{t:M,n:'sizeGt',u:'#`(java.lang.String, int)',p:31},
{t:M,n:'sizeLe',u:'#`(java.lang.String, int)',p:32},
{t:M,n:'sizeLt',u:'#`(java.lang.String, int)',p:33},
{t:M,n:'sizeNe',u:'#`(java.lang.String, int)',p:34},
{t:M,n:'sqlRestriction',u:'#`(java.lang.String)',p:35},
{t:C,n:'RowCountProjection',c:'`.html',p:283},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'SimpleExpression',c:'`.html',p:287},
{t:M,n:'getOp',u:'#`()',p:1},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'ignoreCase',u:'#`()',p:3},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'SimpleProjection',c:'`.html',p:293},
{t:M,n:'as',u:'#`(java.lang.String)',p:1},
{t:M,n:'getAliases',u:'#`()',p:2},
{t:M,n:'getColumnAliases',u:'#`(int)',p:3},
{t:M,n:'getTypes',u:'#`(java.lang.String, org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:M,n:'isGrouped',u:'#`()',p:5},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:6},
{t:C,n:'SimpleSubqueryExpression',c:'`.html',p:300},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toLeftSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:C,n:'SizeExpression',c:'`.html',p:303},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'SQLCriterion',c:'`.html',p:307},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'SQLProjection',c:'`.html',p:311},
{t:M,n:'getAliases',u:'#`()',p:1},
{t:M,n:'getColumnAliases',u:'#`(int)',p:2},
{t:M,n:'getTypes',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'isGrouped',u:'#`()',p:4},
{t:M,n:'toGroupSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:5},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'Subqueries',c:'`.html',p:319},
{t:M,n:'eq',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:1},
{t:M,n:'eqAll',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:2},
{t:M,n:'exists',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:3},
{t:M,n:'ge',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:4},
{t:M,n:'geAll',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:5},
{t:M,n:'geSome',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:6},
{t:M,n:'gt',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:7},
{t:M,n:'gtAll',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:8},
{t:M,n:'gtSome',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:9},
{t:M,n:'in',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:10},
{t:M,n:'le',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:11},
{t:M,n:'leAll',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:12},
{t:M,n:'leSome',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:13},
{t:M,n:'lt',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:14},
{t:M,n:'ltAll',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:15},
{t:M,n:'ltSome',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:16},
{t:M,n:'ne',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:17},
{t:M,n:'notExists',u:'#`(org.hibernate.criterion.DetachedCriteria)',p:18},
{t:M,n:'notIn',u:'#`(java.lang.Object, org.hibernate.criterion.DetachedCriteria)',p:19},
{t:M,n:'propertyEq',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:20},
{t:M,n:'propertyEqAll',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:21},
{t:M,n:'propertyGe',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:22},
{t:M,n:'propertyGeAll',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:23},
{t:M,n:'propertyGeSome',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:24},
{t:M,n:'propertyGt',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:25},
{t:M,n:'propertyGtAll',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:26},
{t:M,n:'propertyGtSome',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:27},
{t:M,n:'propertyIn',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:28},
{t:M,n:'propertyLe',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:29},
{t:M,n:'propertyLeAll',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:30},
{t:M,n:'propertyLeSome',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:31},
{t:M,n:'propertyLt',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:32},
{t:M,n:'propertyLtAll',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:33},
{t:M,n:'propertyLtSome',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:34},
{t:M,n:'propertyNe',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:35},
{t:M,n:'propertyNotIn',u:'#`(java.lang.String, org.hibernate.criterion.DetachedCriteria)',p:36},
{t:C,n:'SubqueryExpression',c:'`.html',p:356},
{t:M,n:'getTypedValues',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:1},
{t:M,n:'getTypes',u:'#`()',p:2},
{t:M,n:'toLeftSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:3},
{t:M,n:'toSqlString',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.CriteriaQuery)',p:4},
{t:P,n:'org.hibernate.metadata',u:'package-summary.html',c:'rg/hibernate/metadata/',p:1107},
{t:I,n:'ClassMetadata',c:'`.html',p:1},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:2},
{t:M,n:'getIdentifierPropertyName',u:'#`()',p:3},
{t:M,n:'getIdentifierType',u:'#`()',p:4},
{t:M,n:'getMappedClass',u:'#`(org.hibernate.EntityMode)',p:5},
{t:M,n:'getNaturalIdentifierProperties',u:'#`()',p:6},
{t:M,n:'getPropertyLaziness',u:'#`()',p:7},
{t:M,n:'getPropertyNames',u:'#`()',p:8},
{t:M,n:'getPropertyNullability',u:'#`()',p:9},
{t:M,n:'getPropertyType',u:'#`(java.lang.String)',p:10},
{t:M,n:'getPropertyTypes',u:'#`()',p:11},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, java.lang.String, org.hibernate.EntityMode)',p:12},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:13},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:14},
{t:M,n:'getVersion',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:15},
{t:M,n:'getVersionProperty',u:'#`()',p:16},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:17},
{t:M,n:'hasNaturalIdentifier',u:'#`()',p:18},
{t:M,n:'hasProxy',u:'#`()',p:19},
{t:M,n:'hasSubclasses',u:'#`()',p:20},
{t:M,n:'implementsLifecycle',u:'#`(org.hibernate.EntityMode)',p:21},
{t:M,n:'implementsValidatable',u:'#`(org.hibernate.EntityMode)',p:22},
{t:M,n:'instantiate',u:'#`(java.io.Serializable, org.hibernate.EntityMode)',p:23},
{t:M,n:'isInherited',u:'#`()',p:24},
{t:M,n:'isMutable',u:'#`()',p:25},
{t:M,n:'isVersioned',u:'#`()',p:26},
{t:M,n:'setIdentifier',u:'#`(java.lang.Object, java.io.Serializable, org.hibernate.EntityMode)',p:27},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, java.lang.String, java.lang.Object, org.hibernate.EntityMode)',p:28},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:29},
{t:I,n:'CollectionMetadata',c:'`.html',p:31},
{t:M,n:'getElementType',u:'#`()',p:1},
{t:M,n:'getIndexType',u:'#`()',p:2},
{t:M,n:'getKeyType',u:'#`()',p:3},
{t:M,n:'getRole',u:'#`()',p:4},
{t:M,n:'hasIndex',u:'#`()',p:5},
{t:M,n:'isArray',u:'#`()',p:6},
{t:M,n:'isLazy',u:'#`()',p:7},
{t:M,n:'isPrimitiveArray',u:'#`()',p:8},
{t:P,n:'org.hibernate.usertype',u:'package-summary.html',c:'rg/hibernate/usertype/',p:1147},
{t:I,n:'CompositeUserType',c:'`.html',p:1},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'deepCopy',u:'#`(java.lang.Object)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'equals',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'getPropertyNames',u:'#`()',p:5},
{t:M,n:'getPropertyTypes',u:'#`()',p:6},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int)',p:7},
{t:M,n:'hashCode',u:'#`(java.lang.Object)',p:8},
{t:M,n:'isMutable',u:'#`()',p:9},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:10},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:12},
{t:M,n:'returnedClass',u:'#`()',p:13},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, int, java.lang.Object)',p:14},
{t:I,n:'EnhancedUserType',c:'`.html',p:16},
{t:M,n:'fromXMLString',u:'#`(java.lang.String)',p:1},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object)',p:2},
{t:M,n:'toXMLString',u:'#`(java.lang.Object)',p:3},
{t:I,n:'ParameterizedType',c:'`.html',p:20},
{t:M,n:'setParameterValues',u:'#`(java.util.Properties)',p:1},
{t:I,n:'UserCollectionType',c:'`.html',p:22},
{t:M,n:'contains',u:'#`(java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'getElementsIterator',u:'#`(java.lang.Object)',p:2},
{t:M,n:'indexOf',u:'#`(java.lang.Object, java.lang.Object)',p:3},
{t:M,n:'instantiate',u:'#`()',p:4},
{t:M,n:'replaceElements',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.persister.collection.CollectionPersister, java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:6},
{t:I,n:'UserType',c:'`.html',p:29},
{t:M,n:'assemble',u:'#`(java.io.Serializable, java.lang.Object)',p:1},
{t:M,n:'deepCopy',u:'#`(java.lang.Object)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object)',p:3},
{t:M,n:'equals',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'hashCode',u:'#`(java.lang.Object)',p:5},
{t:M,n:'isMutable',u:'#`()',p:6},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], java.lang.Object)',p:7},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'returnedClass',u:'#`()',p:10},
{t:M,n:'sqlTypes',u:'#`()',p:11},
{t:I,n:'UserVersionType',c:'`.html',p:41},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:2},
{t:P,n:'org.hibernate.action',u:'package-summary.html',c:'rg/hibernate/action/',p:1191},
{t:I,n:'Executable',c:'`.html',p:1},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'beforeExecutions',u:'#`()',p:2},
{t:M,n:'execute',u:'#`()',p:3},
{t:M,n:'getPropertySpaces',u:'#`()',p:4},
{t:M,n:'hasAfterTransactionCompletion',u:'#`()',p:5},
{t:C,n:'BulkOperationCleanupAction',c:'`.html',p:7},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'beforeExecutions',u:'#`()',p:2},
{t:M,n:'execute',u:'#`()',p:3},
{t:M,n:'getPropertySpaces',u:'#`()',p:4},
{t:M,n:'hasAfterTransactionCompletion',u:'#`()',p:5},
{t:M,n:'init',u:'#`()',p:6},
{t:C,n:'CollectionAction',c:'`.html',p:14},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'beforeExecutions',u:'#`()',p:2},
{t:M,n:'compareTo',u:'#`(java.lang.Object)',p:3},
{t:M,n:'evict',u:'#`()',p:4},
{t:M,n:'getCollection',u:'#`()',p:5},
{t:M,n:'getKey',u:'#`()',p:6},
{t:M,n:'getPersister',u:'#`()',p:7},
{t:M,n:'getPropertySpaces',u:'#`()',p:8},
{t:M,n:'getSession',u:'#`()',p:9},
{t:M,n:'hasAfterTransactionCompletion',u:'#`()',p:10},
{t:M,n:'toString',u:'#`()',p:11},
{t:C,n:'CollectionRecreateAction',c:'`.html',p:26},
{t:M,n:'execute',u:'#`()',p:1},
{t:C,n:'CollectionRemoveAction',c:'`.html',p:28},
{t:M,n:'execute',u:'#`()',p:1},
{t:C,n:'CollectionUpdateAction',c:'`.html',p:30},
{t:M,n:'execute',u:'#`()',p:1},
{t:C,n:'EntityAction',c:'`.html',p:32},
{t:M,n:'beforeExecutions',u:'#`()',p:1},
{t:M,n:'compareTo',u:'#`(java.lang.Object)',p:2},
{t:M,n:'getId',u:'#`()',p:3},
{t:M,n:'getInstance',u:'#`()',p:4},
{t:M,n:'getPersister',u:'#`()',p:5},
{t:M,n:'getPropertySpaces',u:'#`()',p:6},
{t:M,n:'getSession',u:'#`()',p:7},
{t:M,n:'hasAfterTransactionCompletion',u:'#`()',p:8},
{t:M,n:'hasPostCommitEventListeners',u:'#`()',p:9},
{t:M,n:'toString',u:'#`()',p:10},
{t:C,n:'EntityDeleteAction',c:'`.html',p:43},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'hasPostCommitEventListeners',u:'#`()',p:3},
{t:C,n:'EntityIdentityInsertAction',c:'`.html',p:47},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'getGeneratedId',u:'#`()',p:3},
{t:M,n:'hasAfterTransactionCompletion',u:'#`()',p:4},
{t:M,n:'hasPostCommitEventListeners',u:'#`()',p:5},
{t:C,n:'EntityInsertAction',c:'`.html',p:53},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'hasPostCommitEventListeners',u:'#`()',p:3},
{t:C,n:'EntityUpdateAction',c:'`.html',p:57},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'hasPostCommitEventListeners',u:'#`()',p:3},
{t:P,n:'org.hibernate.cache',u:'package-summary.html',c:'rg/hibernate/cache/',p:1252},
{t:I,n:'Cache',c:'`.html',p:1},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'toMap',u:'#`()',p:14},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:15},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:16},
{t:I,n:'CacheConcurrencyStrategy',c:'`.html',p:18},
{t:M,n:'afterInsert',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'afterUpdate',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'destroy',u:'#`()',p:4},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:5},
{t:M,n:'get',u:'#`(java.lang.Object, long)',p:6},
{t:M,n:'getCache',u:'#`()',p:7},
{t:M,n:'getRegionName',u:'#`()',p:8},
{t:M,n:'insert',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'lock',u:'#`(java.lang.Object, java.lang.Object)',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object, long, java.lang.Object, java.util.Comparator, boolean)',p:11},
{t:M,n:'release',u:'#`(java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCache',u:'#`(org.hibernate.cache.Cache)',p:14},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:15},
{t:I,n:'CacheProvider',c:'`.html',p:34},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:I,n:'QueryCache',c:'`.html',p:40},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(org.hibernate.cache.QueryKey, org.hibernate.type.Type[], boolean, java.util.Set, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'getCache',u:'#`()',p:4},
{t:M,n:'getRegionName',u:'#`()',p:5},
{t:M,n:'put',u:'#`(org.hibernate.cache.QueryKey, org.hibernate.type.Type[], java.util.List, boolean, org.hibernate.engine.SessionImplementor)',p:6},
{t:I,n:'QueryCacheFactory',c:'`.html',p:47},
{t:M,n:'getQueryCache',u:'#`(java.lang.String, org.hibernate.cache.UpdateTimestampsCache, org.hibernate.cfg.Settings, java.util.Properties)',p:1},
{t:C,n:'AbstractJndiBoundCacheProvider',c:'`.html',p:49},
{t:M,n:'getCache',u:'#`()',p:1},
{t:M,n:'prepare',u:'#`(java.util.Properties)',p:2},
{t:M,n:'release',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'CacheFactory',c:'`.html',p:55},
{t:O,n:'NONSTRICT_READ_WRITE',u:'#`',p:1},
{t:O,n:'READ_ONLY',u:'#`',p:2},
{t:O,n:'READ_WRITE',u:'#`',p:3},
{t:O,n:'TRANSACTIONAL',u:'#`',p:4},
{t:M,n:'createCache',u:'#`(java.lang.String, java.lang.String, boolean, org.hibernate.cfg.Settings, java.util.Properties)',p:5},
{t:C,n:'CacheKey',c:'`.html',p:61},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getEntityOrRoleName',u:'#`()',p:2},
{t:M,n:'getKey',u:'#`()',p:3},
{t:M,n:'hashCode',u:'#`()',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'EhCache',c:'`.html',p:67},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'toMap',u:'#`()',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:16},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:17},
{t:C,n:'EhCacheProvider',c:'`.html',p:85},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'FilterKey',c:'`.html',p:91},
{t:M,n:'createFilterKeys',u:'#`(java.util.Map, org.hibernate.EntityMode)',p:1},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:2},
{t:M,n:'hashCode',u:'#`()',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'HashtableCache',c:'`.html',p:96},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'toMap',u:'#`()',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:16},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:17},
{t:C,n:'HashtableCacheProvider',c:'`.html',p:114},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'JndiBoundTreeCacheProvider',c:'`.html',p:120},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'getTreeCacheInstance',u:'#`()',p:2},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:3},
{t:M,n:'nextTimestamp',u:'#`()',p:4},
{t:M,n:'prepare',u:'#`(java.util.Properties)',p:5},
{t:C,n:'NoCacheProvider',c:'`.html',p:126},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'NonstrictReadWriteCache',c:'`.html',p:132},
{t:M,n:'afterInsert',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'afterUpdate',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'destroy',u:'#`()',p:4},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:5},
{t:M,n:'get',u:'#`(java.lang.Object, long)',p:6},
{t:M,n:'getCache',u:'#`()',p:7},
{t:M,n:'getRegionName',u:'#`()',p:8},
{t:M,n:'insert',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'lock',u:'#`(java.lang.Object, java.lang.Object)',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object, long, java.lang.Object, java.util.Comparator, boolean)',p:11},
{t:M,n:'release',u:'#`(java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCache',u:'#`(org.hibernate.cache.Cache)',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:16},
{t:C,n:'OSCache',c:'`.html',p:149},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCacheCapacity',u:'#`(int)',p:14},
{t:M,n:'toMap',u:'#`()',p:15},
{t:M,n:'toString',u:'#`()',p:16},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:17},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:18},
{t:C,n:'OSCacheProvider',c:'`.html',p:168},
{t:O,n:'OSCACHE_CAPACITY',u:'#`',p:1},
{t:O,n:'OSCACHE_CRON',u:'#`',p:2},
{t:O,n:'OSCACHE_REFRESH_PERIOD',u:'#`',p:3},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:4},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:5},
{t:M,n:'nextTimestamp',u:'#`()',p:6},
{t:M,n:'start',u:'#`(java.util.Properties)',p:7},
{t:M,n:'stop',u:'#`()',p:8},
{t:C,n:'QueryKey',c:'`.html',p:177},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'hashCode',u:'#`()',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'ReadOnlyCache',c:'`.html',p:181},
{t:M,n:'afterInsert',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'afterUpdate',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'destroy',u:'#`()',p:4},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:5},
{t:M,n:'get',u:'#`(java.lang.Object, long)',p:6},
{t:M,n:'getCache',u:'#`()',p:7},
{t:M,n:'getRegionName',u:'#`()',p:8},
{t:M,n:'insert',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'lock',u:'#`(java.lang.Object, java.lang.Object)',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object, long, java.lang.Object, java.util.Comparator, boolean)',p:11},
{t:M,n:'release',u:'#`(java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCache',u:'#`(org.hibernate.cache.Cache)',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:16},
{t:C,n:'ReadWriteCache',c:'`.html',p:198},
{t:M,n:'afterInsert',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'afterUpdate',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'destroy',u:'#`()',p:4},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:5},
{t:M,n:'get',u:'#`(java.lang.Object, long)',p:6},
{t:M,n:'getCache',u:'#`()',p:7},
{t:M,n:'getRegionName',u:'#`()',p:8},
{t:M,n:'insert',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'lock',u:'#`(java.lang.Object, java.lang.Object)',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object, long, java.lang.Object, java.util.Comparator, boolean)',p:11},
{t:M,n:'release',u:'#`(java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCache',u:'#`(org.hibernate.cache.Cache)',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:16},
{t:C,n:'StandardQueryCache',c:'`.html',p:215},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(org.hibernate.cache.QueryKey, org.hibernate.type.Type[], boolean, java.util.Set, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'getCache',u:'#`()',p:4},
{t:M,n:'getRegionName',u:'#`()',p:5},
{t:M,n:'isUpToDate',u:'#`(java.util.Set, java.lang.Long)',p:6},
{t:M,n:'put',u:'#`(org.hibernate.cache.QueryKey, org.hibernate.type.Type[], java.util.List, boolean, org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'toString',u:'#`()',p:8},
{t:C,n:'StandardQueryCacheFactory',c:'`.html',p:224},
{t:M,n:'getQueryCache',u:'#`(java.lang.String, org.hibernate.cache.UpdateTimestampsCache, org.hibernate.cfg.Settings, java.util.Properties)',p:1},
{t:C,n:'SwarmCache',c:'`.html',p:226},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'toMap',u:'#`()',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:16},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:17},
{t:C,n:'SwarmCacheProvider',c:'`.html',p:244},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'Timestamper',c:'`.html',p:250},
{t:O,n:'ONE_MS',u:'#`',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:C,n:'TransactionalCache',c:'`.html',p:253},
{t:M,n:'afterInsert',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'afterUpdate',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'destroy',u:'#`()',p:4},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:5},
{t:M,n:'get',u:'#`(java.lang.Object, long)',p:6},
{t:M,n:'getCache',u:'#`()',p:7},
{t:M,n:'getRegionName',u:'#`()',p:8},
{t:M,n:'insert',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'lock',u:'#`(java.lang.Object, java.lang.Object)',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object, long, java.lang.Object, java.util.Comparator, boolean)',p:11},
{t:M,n:'release',u:'#`(java.lang.Object, org.hibernate.cache.CacheConcurrencyStrategy.SoftLock)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'setCache',u:'#`(org.hibernate.cache.Cache)',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:16},
{t:C,n:'TreeCache',c:'`.html',p:270},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'destroy',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'getElementCountInMemory',u:'#`()',p:4},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:5},
{t:M,n:'getRegionName',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'getTimeout',u:'#`()',p:8},
{t:M,n:'lock',u:'#`(java.lang.Object)',p:9},
{t:M,n:'nextTimestamp',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'read',u:'#`(java.lang.Object)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'toMap',u:'#`()',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'unlock',u:'#`(java.lang.Object)',p:16},
{t:M,n:'update',u:'#`(java.lang.Object, java.lang.Object)',p:17},
{t:C,n:'TreeCacheProvider',c:'`.html',p:288},
{t:M,n:'buildCache',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'isMinimalPutsEnabledByDefault',u:'#`()',p:2},
{t:M,n:'nextTimestamp',u:'#`()',p:3},
{t:M,n:'start',u:'#`(java.util.Properties)',p:4},
{t:M,n:'stop',u:'#`()',p:5},
{t:C,n:'UpdateTimestampsCache',c:'`.html',p:294},
{t:O,n:'REGION_NAME',u:'#`',p:1},
{t:M,n:'clear',u:'#`()',p:2},
{t:M,n:'destroy',u:'#`()',p:3},
{t:M,n:'getCache',u:'#`()',p:4},
{t:M,n:'getRegionName',u:'#`()',p:5},
{t:M,n:'invalidate',u:'#`(java.io.Serializable[])',p:6},
{t:M,n:'isUpToDate',u:'#`(java.util.Set, java.lang.Long)',p:7},
{t:M,n:'preinvalidate',u:'#`(java.io.Serializable[])',p:8},
{t:M,n:'toString',u:'#`()',p:9},
{t:C,n:'CacheException',u:'`.html',p:304},
{t:C,n:'NoCachingEnabledException',u:'`.html',p:305},
{t:P,n:'org.hibernate.cache.entry',u:'package-summary.html',c:'rg/hibernate/cache/entry/',p:1558},
{t:I,n:'CacheEntryStructure',c:'`.html',p:1},
{t:M,n:'destructure',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'structure',u:'#`(java.lang.Object)',p:2},
{t:C,n:'CacheEntry',c:'`.html',p:4},
{t:M,n:'areLazyPropertiesUnfetched',u:'#`()',p:1},
{t:M,n:'assemble',u:'#`(java.lang.Object, java.io.Serializable, org.hibernate.persister.entity.EntityPersister, org.hibernate.Interceptor, org.hibernate.event.EventSource)',p:2},
{t:M,n:'getDisassembledState',u:'#`()',p:3},
{t:M,n:'getSubclass',u:'#`()',p:4},
{t:M,n:'getVersion',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'CollectionCacheEntry',c:'`.html',p:11},
{t:M,n:'assemble',u:'#`(org.hibernate.collection.PersistentCollection, org.hibernate.persister.collection.CollectionPersister, java.lang.Object)',p:1},
{t:M,n:'getState',u:'#`()',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'StructuredCacheEntry',c:'`.html',p:15},
{t:M,n:'destructure',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'structure',u:'#`(java.lang.Object)',p:2},
{t:C,n:'StructuredCollectionCacheEntry',c:'`.html',p:18},
{t:M,n:'destructure',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'structure',u:'#`(java.lang.Object)',p:2},
{t:C,n:'StructuredMapCacheEntry',c:'`.html',p:21},
{t:M,n:'destructure',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'structure',u:'#`(java.lang.Object)',p:2},
{t:C,n:'UnstructuredCacheEntry',c:'`.html',p:24},
{t:M,n:'destructure',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'structure',u:'#`(java.lang.Object)',p:2},
{t:P,n:'org.hibernate.collection',u:'package-summary.html',c:'rg/hibernate/collection/',p:1585},
{t:I,n:'PersistentCollection',c:'`.html',p:1},
{t:M,n:'afterInitialize',u:'#`()',p:1},
{t:M,n:'afterRowInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.lang.Object, int)',p:2},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:3},
{t:M,n:'beginRead',u:'#`()',p:4},
{t:M,n:'clearDirty',u:'#`()',p:5},
{t:M,n:'dirty',u:'#`()',p:6},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:7},
{t:M,n:'empty',u:'#`()',p:8},
{t:M,n:'endRead',u:'#`()',p:9},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:11},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:12},
{t:M,n:'forceInitialization',u:'#`()',p:13},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:14},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:15},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, int)',p:16},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:17},
{t:M,n:'getKey',u:'#`()',p:18},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:19},
{t:M,n:'getOwner',u:'#`()',p:20},
{t:M,n:'getQueuedOrphans',u:'#`(java.lang.String)',p:21},
{t:M,n:'getRole',u:'#`()',p:22},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:23},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:24},
{t:M,n:'getStoredSnapshot',u:'#`()',p:25},
{t:M,n:'getValue',u:'#`()',p:26},
{t:M,n:'hasQueuedOperations',u:'#`()',p:27},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:28},
{t:M,n:'isDirectlyAccessible',u:'#`()',p:29},
{t:M,n:'isDirty',u:'#`()',p:30},
{t:M,n:'isRowUpdatePossible',u:'#`()',p:31},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:32},
{t:M,n:'isUnreferenced',u:'#`()',p:33},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:34},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:35},
{t:M,n:'needsRecreate',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:36},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:37},
{t:M,n:'postAction',u:'#`()',p:38},
{t:M,n:'preInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:39},
{t:M,n:'queuedAdditionIterator',u:'#`()',p:40},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:41},
{t:M,n:'setCurrentSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:42},
{t:M,n:'setOwner',u:'#`(java.lang.Object)',p:43},
{t:M,n:'setSnapshot',u:'#`(java.io.Serializable, java.lang.String, java.io.Serializable)',p:44},
{t:M,n:'unsetSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:45},
{t:M,n:'wasInitialized',u:'#`()',p:46},
{t:C,n:'AbstractPersistentCollection',c:'`.html',p:48},
{t:O,n:'UNKNOWN',u:'#`',p:1},
{t:M,n:'afterInitialize',u:'#`()',p:2},
{t:M,n:'afterRowInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.lang.Object, int)',p:3},
{t:M,n:'beginRead',u:'#`()',p:4},
{t:M,n:'clearDirty',u:'#`()',p:5},
{t:M,n:'dirty',u:'#`()',p:6},
{t:M,n:'empty',u:'#`()',p:7},
{t:M,n:'endRead',u:'#`()',p:8},
{t:M,n:'forceInitialization',u:'#`()',p:9},
{t:M,n:'getCachedSize',u:'#`()',p:10},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, int)',p:11},
{t:M,n:'getKey',u:'#`()',p:12},
{t:M,n:'getOrphans',u:'#`(java.util.Collection, java.util.Collection, java.lang.String, org.hibernate.engine.SessionImplementor)',p:13},
{t:M,n:'getOwner',u:'#`()',p:14},
{t:M,n:'getQueuedOrphans',u:'#`(java.lang.String)',p:15},
{t:M,n:'getRole',u:'#`()',p:16},
{t:M,n:'getSession',u:'#`()',p:17},
{t:M,n:'getSnapshot',u:'#`()',p:18},
{t:M,n:'getStoredSnapshot',u:'#`()',p:19},
{t:M,n:'getValue',u:'#`()',p:20},
{t:M,n:'hasQueuedOperations',u:'#`()',p:21},
{t:M,n:'initialize',u:'#`(boolean)',p:22},
{t:M,n:'isClearQueueEnabled',u:'#`()',p:23},
{t:M,n:'isDirectlyAccessible',u:'#`()',p:24},
{t:M,n:'isDirty',u:'#`()',p:25},
{t:M,n:'isOperationQueueEnabled',u:'#`()',p:26},
{t:M,n:'isPutQueueEnabled',u:'#`()',p:27},
{t:M,n:'isRowUpdatePossible',u:'#`()',p:28},
{t:M,n:'isUnreferenced',u:'#`()',p:29},
{t:M,n:'needsRecreate',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:30},
{t:M,n:'performQueuedOperations',u:'#`()',p:31},
{t:M,n:'postAction',u:'#`()',p:32},
{t:M,n:'preInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:33},
{t:M,n:'queuedAdditionIterator',u:'#`()',p:34},
{t:M,n:'queueOperation',u:'#`(java.lang.Object)',p:35},
{t:M,n:'read',u:'#`()',p:36},
{t:M,n:'readElementByIndex',u:'#`(java.lang.Object)',p:37},
{t:M,n:'readElementExistence',u:'#`(java.lang.Object)',p:38},
{t:M,n:'readIndexExistence',u:'#`(java.lang.Object)',p:39},
{t:M,n:'readSize',u:'#`()',p:40},
{t:M,n:'setCurrentSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:41},
{t:M,n:'setDirectlyAccessible',u:'#`(boolean)',p:42},
{t:M,n:'setInitialized',u:'#`()',p:43},
{t:M,n:'setOwner',u:'#`(java.lang.Object)',p:44},
{t:M,n:'setSnapshot',u:'#`(java.io.Serializable, java.lang.String, java.io.Serializable)',p:45},
{t:M,n:'unsetSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:46},
{t:M,n:'wasInitialized',u:'#`()',p:47},
{t:M,n:'write',u:'#`()',p:48},
{t:C,n:'PersistentArrayHolder',c:'`.html',p:97},
{t:O,n:'array',u:'#`',p:1},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:2},
{t:M,n:'beginRead',u:'#`()',p:3},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:4},
{t:M,n:'elements',u:'#`()',p:5},
{t:M,n:'empty',u:'#`()',p:6},
{t:M,n:'endRead',u:'#`()',p:7},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:8},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:9},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'getArray',u:'#`()',p:11},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:12},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:13},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:14},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:15},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:16},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:17},
{t:M,n:'getValue',u:'#`()',p:18},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:19},
{t:M,n:'isDirectlyAccessible',u:'#`()',p:20},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:21},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:22},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:23},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:24},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:25},
{t:C,n:'PersistentBag',c:'`.html',p:123},
{t:O,n:'bag',u:'#`',p:1},
{t:M,n:'add',u:'#`(int, java.lang.Object)',p:2},
{t:M,n:'addAll',u:'#`(java.util.Collection)',p:3},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:4},
{t:M,n:'clear',u:'#`()',p:5},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:6},
{t:M,n:'containsAll',u:'#`(java.util.Collection)',p:7},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:8},
{t:M,n:'empty',u:'#`()',p:9},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:11},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:12},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:13},
{t:M,n:'get',u:'#`(int)',p:14},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:15},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:16},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:17},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:18},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:19},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:20},
{t:M,n:'hashCode',u:'#`()',p:21},
{t:M,n:'indexOf',u:'#`(java.lang.Object)',p:22},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:23},
{t:M,n:'isEmpty',u:'#`()',p:24},
{t:M,n:'isRowUpdatePossible',u:'#`()',p:25},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:26},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:27},
{t:M,n:'iterator',u:'#`()',p:28},
{t:M,n:'lastIndexOf',u:'#`(java.lang.Object)',p:29},
{t:M,n:'listIterator',u:'#`()',p:30},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:31},
{t:M,n:'needsRecreate',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:32},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:33},
{t:M,n:'occurrences',u:'#`(java.lang.Object)',p:34},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:35},
{t:M,n:'remove',u:'#`(int)',p:36},
{t:M,n:'removeAll',u:'#`(java.util.Collection)',p:37},
{t:M,n:'retainAll',u:'#`(java.util.Collection)',p:38},
{t:M,n:'set',u:'#`(int, java.lang.Object)',p:39},
{t:M,n:'size',u:'#`()',p:40},
{t:M,n:'subList',u:'#`(int, int)',p:41},
{t:M,n:'toArray',u:'#`()',p:42},
{t:M,n:'toString',u:'#`()',p:43},
{t:C,n:'PersistentElementHolder',c:'`.html',p:167},
{t:O,n:'element',u:'#`',p:1},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:2},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:3},
{t:M,n:'empty',u:'#`()',p:4},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:5},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:6},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:7},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:8},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:9},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:11},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:12},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:13},
{t:M,n:'getValue',u:'#`()',p:14},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:15},
{t:M,n:'isDirectlyAccessible',u:'#`()',p:16},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:17},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:18},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:19},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:20},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:21},
{t:C,n:'PersistentIdentifierBag',c:'`.html',p:189},
{t:O,n:'identifiers',u:'#`',p:1},
{t:O,n:'values',u:'#`',p:2},
{t:M,n:'add',u:'#`(int, java.lang.Object)',p:3},
{t:M,n:'addAll',u:'#`(java.util.Collection)',p:4},
{t:M,n:'afterRowInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.lang.Object, int)',p:5},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:6},
{t:M,n:'clear',u:'#`()',p:7},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:8},
{t:M,n:'containsAll',u:'#`(java.util.Collection)',p:9},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'empty',u:'#`()',p:11},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:12},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:13},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:14},
{t:M,n:'get',u:'#`(int)',p:15},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:16},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:17},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, int)',p:18},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:19},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:20},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:21},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:22},
{t:M,n:'indexOf',u:'#`(java.lang.Object)',p:23},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:24},
{t:M,n:'isEmpty',u:'#`()',p:25},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:26},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:27},
{t:M,n:'iterator',u:'#`()',p:28},
{t:M,n:'lastIndexOf',u:'#`(java.lang.Object)',p:29},
{t:M,n:'listIterator',u:'#`()',p:30},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:31},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:32},
{t:M,n:'preInsert',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:33},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:34},
{t:M,n:'remove',u:'#`(int)',p:35},
{t:M,n:'removeAll',u:'#`(java.util.Collection)',p:36},
{t:M,n:'retainAll',u:'#`(java.util.Collection)',p:37},
{t:M,n:'set',u:'#`(int, java.lang.Object)',p:38},
{t:M,n:'size',u:'#`()',p:39},
{t:M,n:'subList',u:'#`(int, int)',p:40},
{t:M,n:'toArray',u:'#`()',p:41},
{t:C,n:'PersistentIndexedElementHolder',c:'`.html',p:231},
{t:O,n:'element',u:'#`',p:1},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:2},
{t:M,n:'empty',u:'#`()',p:3},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:4},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:5},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:6},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:7},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:8},
{t:M,n:'getIndex',u:'#`(org.dom4j.Element, java.lang.String, int)',p:9},
{t:M,n:'getIndexAttributeName',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:11},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:12},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:13},
{t:M,n:'getValue',u:'#`()',p:14},
{t:M,n:'isDirectlyAccessible',u:'#`()',p:15},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:16},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:17},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:18},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:19},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:20},
{t:M,n:'setIndex',u:'#`(org.dom4j.Element, java.lang.String, java.lang.String)',p:21},
{t:C,n:'PersistentList',c:'`.html',p:253},
{t:O,n:'list',u:'#`',p:1},
{t:M,n:'add',u:'#`(int, java.lang.Object)',p:2},
{t:M,n:'addAll',u:'#`(java.util.Collection)',p:3},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:4},
{t:M,n:'clear',u:'#`()',p:5},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:6},
{t:M,n:'containsAll',u:'#`(java.util.Collection)',p:7},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:8},
{t:M,n:'empty',u:'#`()',p:9},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:11},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:12},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:13},
{t:M,n:'get',u:'#`(int)',p:14},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:15},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:16},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:17},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:18},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:19},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:20},
{t:M,n:'hashCode',u:'#`()',p:21},
{t:M,n:'indexOf',u:'#`(java.lang.Object)',p:22},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:23},
{t:M,n:'isEmpty',u:'#`()',p:24},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:25},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:26},
{t:M,n:'iterator',u:'#`()',p:27},
{t:M,n:'lastIndexOf',u:'#`(java.lang.Object)',p:28},
{t:M,n:'listIterator',u:'#`()',p:29},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:30},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:31},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:32},
{t:M,n:'remove',u:'#`(int)',p:33},
{t:M,n:'removeAll',u:'#`(java.util.Collection)',p:34},
{t:M,n:'retainAll',u:'#`(java.util.Collection)',p:35},
{t:M,n:'set',u:'#`(int, java.lang.Object)',p:36},
{t:M,n:'size',u:'#`()',p:37},
{t:M,n:'subList',u:'#`(int, int)',p:38},
{t:M,n:'toArray',u:'#`()',p:39},
{t:M,n:'toString',u:'#`()',p:40},
{t:C,n:'PersistentListElementHolder',c:'`.html',p:294},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:1},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:2},
{t:C,n:'PersistentMap',c:'`.html',p:297},
{t:O,n:'map',u:'#`',p:1},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'containsKey',u:'#`(java.lang.Object)',p:4},
{t:M,n:'containsValue',u:'#`(java.lang.Object)',p:5},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:6},
{t:M,n:'empty',u:'#`()',p:7},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:8},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:9},
{t:M,n:'entrySet',u:'#`()',p:10},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:11},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:12},
{t:M,n:'get',u:'#`(java.lang.Object)',p:13},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:14},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:15},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:16},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:17},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:18},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:19},
{t:M,n:'hashCode',u:'#`()',p:20},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:21},
{t:M,n:'isEmpty',u:'#`()',p:22},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:23},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:24},
{t:M,n:'keySet',u:'#`()',p:25},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:26},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:27},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:28},
{t:M,n:'putAll',u:'#`(java.util.Map)',p:29},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:30},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:31},
{t:M,n:'size',u:'#`()',p:32},
{t:M,n:'toString',u:'#`()',p:33},
{t:M,n:'values',u:'#`()',p:34},
{t:C,n:'PersistentMapElementHolder',c:'`.html',p:332},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:1},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:2},
{t:C,n:'PersistentSet',c:'`.html',p:335},
{t:O,n:'set',u:'#`',p:1},
{t:O,n:'tempList',u:'#`',p:2},
{t:M,n:'add',u:'#`(java.lang.Object)',p:3},
{t:M,n:'addAll',u:'#`(java.util.Collection)',p:4},
{t:M,n:'beforeInitialize',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:5},
{t:M,n:'beginRead',u:'#`()',p:6},
{t:M,n:'clear',u:'#`()',p:7},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:8},
{t:M,n:'containsAll',u:'#`(java.util.Collection)',p:9},
{t:M,n:'disassemble',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:10},
{t:M,n:'empty',u:'#`()',p:11},
{t:M,n:'endRead',u:'#`()',p:12},
{t:M,n:'entries',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:13},
{t:M,n:'entryExists',u:'#`(java.lang.Object, int)',p:14},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:15},
{t:M,n:'equalsSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:16},
{t:M,n:'getDeletes',u:'#`(org.hibernate.persister.collection.CollectionPersister, boolean)',p:17},
{t:M,n:'getElement',u:'#`(java.lang.Object)',p:18},
{t:M,n:'getIndex',u:'#`(java.lang.Object, int, org.hibernate.persister.collection.CollectionPersister)',p:19},
{t:M,n:'getOrphans',u:'#`(java.io.Serializable, java.lang.String)',p:20},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:21},
{t:M,n:'getSnapshotElement',u:'#`(java.lang.Object, int)',p:22},
{t:M,n:'hashCode',u:'#`()',p:23},
{t:M,n:'initializeFromCache',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, java.lang.Object)',p:24},
{t:M,n:'isEmpty',u:'#`()',p:25},
{t:M,n:'isRowUpdatePossible',u:'#`()',p:26},
{t:M,n:'isSnapshotEmpty',u:'#`(java.io.Serializable)',p:27},
{t:M,n:'isWrapper',u:'#`(java.lang.Object)',p:28},
{t:M,n:'iterator',u:'#`()',p:29},
{t:M,n:'needsInserting',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:30},
{t:M,n:'needsUpdating',u:'#`(java.lang.Object, int, org.hibernate.type.Type)',p:31},
{t:M,n:'readFrom',u:'#`(java.sql.ResultSet, org.hibernate.persister.collection.CollectionPersister, org.hibernate.loader.CollectionAliases, java.lang.Object)',p:32},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:33},
{t:M,n:'removeAll',u:'#`(java.util.Collection)',p:34},
{t:M,n:'retainAll',u:'#`(java.util.Collection)',p:35},
{t:M,n:'size',u:'#`()',p:36},
{t:M,n:'toArray',u:'#`()',p:37},
{t:M,n:'toString',u:'#`()',p:38},
{t:C,n:'PersistentSortedMap',c:'`.html',p:374},
{t:O,n:'comparator',u:'#`',p:1},
{t:M,n:'comparator',u:'#`()',p:2},
{t:M,n:'firstKey',u:'#`()',p:3},
{t:M,n:'headMap',u:'#`(java.lang.Object)',p:4},
{t:M,n:'lastKey',u:'#`()',p:5},
{t:M,n:'setComparator',u:'#`(java.util.Comparator)',p:6},
{t:M,n:'snapshot',u:'#`(org.hibernate.persister.collection.BasicCollectionPersister, org.hibernate.EntityMode)',p:7},
{t:M,n:'subMap',u:'#`(java.lang.Object, java.lang.Object)',p:8},
{t:M,n:'tailMap',u:'#`(java.lang.Object)',p:9},
{t:C,n:'PersistentSortedSet',c:'`.html',p:384},
{t:O,n:'comparator',u:'#`',p:1},
{t:M,n:'comparator',u:'#`()',p:2},
{t:M,n:'first',u:'#`()',p:3},
{t:M,n:'headSet',u:'#`(java.lang.Object)',p:4},
{t:M,n:'last',u:'#`()',p:5},
{t:M,n:'setComparator',u:'#`(java.util.Comparator)',p:6},
{t:M,n:'snapshot',u:'#`(org.hibernate.persister.collection.BasicCollectionPersister, org.hibernate.EntityMode)',p:7},
{t:M,n:'subSet',u:'#`(java.lang.Object, java.lang.Object)',p:8},
{t:M,n:'tailSet',u:'#`(java.lang.Object)',p:9},
{t:P,n:'org.hibernate.connection',u:'package-summary.html',c:'rg/hibernate/connection/',p:1979},
{t:I,n:'ConnectionProvider',c:'`.html',p:1},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'getConnection',u:'#`()',p:4},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:5},
{t:C,n:'C3P0ConnectionProvider',c:'`.html',p:7},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'getConnection',u:'#`()',p:4},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:5},
{t:C,n:'ConnectionProviderFactory',c:'`.html',p:13},
{t:M,n:'getConnectionProperties',u:'#`(java.util.Properties)',p:1},
{t:M,n:'newConnectionProvider',u:'#`()',p:2},
{t:C,n:'DatasourceConnectionProvider',c:'`.html',p:16},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'getConnection',u:'#`()',p:4},
{t:M,n:'getDataSource',u:'#`()',p:5},
{t:M,n:'setDataSource',u:'#`(javax.sql.DataSource)',p:6},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:7},
{t:C,n:'DriverManagerConnectionProvider',c:'`.html',p:24},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'finalize',u:'#`()',p:4},
{t:M,n:'getConnection',u:'#`()',p:5},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:6},
{t:C,n:'ProxoolConnectionProvider',c:'`.html',p:31},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'getConnection',u:'#`()',p:4},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:5},
{t:C,n:'UserSuppliedConnectionProvider',c:'`.html',p:37},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:2},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:3},
{t:M,n:'getConnection',u:'#`()',p:4},
{t:M,n:'supportsAggressiveRelease',u:'#`()',p:5},
{t:P,n:'org.hibernate.dialect',u:'package-summary.html',c:'rg/hibernate/dialect/',p:2022},
{t:C,n:'DB2390Dialect',c:'`.html',p:1},
{t:M,n:'getIdentitySelectString',u:'#`()',p:1},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:2},
{t:M,n:'supportsLimit',u:'#`()',p:3},
{t:M,n:'supportsLimitOffset',u:'#`()',p:4},
{t:M,n:'supportsSequences',u:'#`()',p:5},
{t:M,n:'supportsVariableLimit',u:'#`()',p:6},
{t:M,n:'useMaxForLimit',u:'#`()',p:7},
{t:C,n:'DB2400Dialect',c:'`.html',p:9},
{t:M,n:'getIdentitySelectString',u:'#`()',p:1},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:2},
{t:M,n:'supportsLimit',u:'#`()',p:3},
{t:M,n:'supportsLimitOffset',u:'#`()',p:4},
{t:M,n:'supportsSequences',u:'#`()',p:5},
{t:M,n:'supportsVariableLimit',u:'#`()',p:6},
{t:M,n:'useMaxForLimit',u:'#`()',p:7},
{t:C,n:'DB2Dialect',c:'`.html',p:17},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:2},
{t:M,n:'getAddColumnString',u:'#`()',p:3},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:4},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:5},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:6},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:7},
{t:M,n:'getCurrentTimestampSQLFunctionName',u:'#`()',p:8},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:9},
{t:M,n:'getForUpdateString',u:'#`()',p:10},
{t:M,n:'getIdentityColumnString',u:'#`()',p:11},
{t:M,n:'getIdentityInsertString',u:'#`()',p:12},
{t:M,n:'getIdentitySelectString',u:'#`()',p:13},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:14},
{t:M,n:'getLowercaseFunction',u:'#`()',p:15},
{t:M,n:'getQuerySequencesString',u:'#`()',p:16},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement)',p:17},
{t:M,n:'getSelectClauseNullString',u:'#`(int)',p:18},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:19},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:20},
{t:M,n:'main',u:'#`(java.lang.String[])',p:21},
{t:M,n:'registerResultSetOutParameter',u:'#`(java.sql.CallableStatement, int)',p:22},
{t:M,n:'supportsCommentOn',u:'#`()',p:23},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:24},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:25},
{t:M,n:'supportsLimit',u:'#`()',p:26},
{t:M,n:'supportsNotNullUnique',u:'#`()',p:27},
{t:M,n:'supportsOuterJoinForUpdate',u:'#`()',p:28},
{t:M,n:'supportsParametersInInsertSelect',u:'#`()',p:29},
{t:M,n:'supportsSequences',u:'#`()',p:30},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:31},
{t:M,n:'supportsUnionAll',u:'#`()',p:32},
{t:M,n:'useMaxForLimit',u:'#`()',p:33},
{t:C,n:'DerbyDialect',c:'`.html',p:51},
{t:M,n:'createCaseFragment',u:'#`()',p:1},
{t:M,n:'dropConstraints',u:'#`()',p:2},
{t:M,n:'getIdentityColumnString',u:'#`()',p:3},
{t:M,n:'getNativeIdentifierGeneratorClass',u:'#`()',p:4},
{t:M,n:'getQuerySequencesString',u:'#`()',p:5},
{t:M,n:'supportsLimit',u:'#`()',p:6},
{t:M,n:'supportsLimitOffset',u:'#`()',p:7},
{t:M,n:'supportsSequences',u:'#`()',p:8},
{t:C,n:'Dialect',c:'`.html',p:60},
{t:O,n:'CLOSED_QUOTE',u:'#`',p:1},
{t:O,n:'QUOTE',u:'#`',p:2},
{t:M,n:'appendIdentitySelectToInsert',u:'#`(java.lang.String)',p:3},
{t:M,n:'appendLockHint',u:'#`(org.hibernate.LockMode, java.lang.String)',p:4},
{t:M,n:'bi