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:'bindLimitParametersFirst',u:'#`()',p:5},
{t:M,n:'bindLimitParametersInReverseOrder',u:'#`()',p:6},
{t:M,n:'buildSQLExceptionConverter',u:'#`()',p:7},
{t:M,n:'closeQuote',u:'#`()',p:8},
{t:M,n:'createCaseFragment',u:'#`()',p:9},
{t:M,n:'createOuterJoinFragment',u:'#`()',p:10},
{t:M,n:'dropConstraints',u:'#`()',p:11},
{t:M,n:'dropTemporaryTableAfterUse',u:'#`()',p:12},
{t:M,n:'forUpdateOfColumns',u:'#`()',p:13},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:14},
{t:M,n:'getAddColumnString',u:'#`()',p:15},
{t:M,n:'getAddForeignKeyConstraintString',u:'#`(java.lang.String, java.lang.String[], java.lang.String, java.lang.String[], boolean)',p:16},
{t:M,n:'getAddPrimaryKeyConstraintString',u:'#`(java.lang.String)',p:17},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:18},
{t:M,n:'getCastTypeName',u:'#`(int)',p:19},
{t:M,n:'getColumnComment',u:'#`(java.lang.String)',p:20},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:21},
{t:M,n:'getCreateSequenceStrings',u:'#`(java.lang.String)',p:22},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:23},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:24},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:25},
{t:M,n:'getCurrentTimestampSQLFunctionName',u:'#`()',p:26},
{t:M,n:'getDefaultProperties',u:'#`()',p:27},
{t:M,n:'getDialect',u:'#`()',p:28},
{t:M,n:'getDropForeignKeyString',u:'#`()',p:29},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:30},
{t:M,n:'getDropSequenceStrings',u:'#`(java.lang.String)',p:31},
{t:M,n:'getForUpdateNowaitString',u:'#`()',p:32},
{t:M,n:'getForUpdateString',u:'#`()',p:33},
{t:M,n:'getFunctions',u:'#`()',p:34},
{t:M,n:'getHibernateTypeName',u:'#`(int)',p:35},
{t:M,n:'getIdentityColumnString',u:'#`()',p:36},
{t:M,n:'getIdentityInsertString',u:'#`()',p:37},
{t:M,n:'getIdentitySelectString',u:'#`()',p:38},
{t:M,n:'getKeywords',u:'#`()',p:39},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:40},
{t:M,n:'getLowercaseFunction',u:'#`()',p:41},
{t:M,n:'getMaxAliasLength',u:'#`()',p:42},
{t:M,n:'getNativeIdentifierGeneratorClass',u:'#`()',p:43},
{t:M,n:'getNoColumnsInsertString',u:'#`()',p:44},
{t:M,n:'getNullColumnString',u:'#`()',p:45},
{t:M,n:'getQuerySequencesString',u:'#`()',p:46},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement)',p:47},
{t:M,n:'getSelectClauseNullString',u:'#`(int)',p:48},
{t:M,n:'getSelectGUIDString',u:'#`()',p:49},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:50},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:51},
{t:M,n:'getTableComment',u:'#`(java.lang.String)',p:52},
{t:M,n:'getTableTypeString',u:'#`()',p:53},
{t:M,n:'getTypeName',u:'#`(int)',p:54},
{t:M,n:'getViolatedConstraintNameExtracter',u:'#`()',p:55},
{t:M,n:'hasAlterTable',u:'#`()',p:56},
{t:M,n:'hasDataTypeInIdentityColumn',u:'#`()',p:57},
{t:M,n:'hasSelfReferentialForeignKeyBug',u:'#`()',p:58},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:59},
{t:M,n:'openQuote',u:'#`()',p:60},
{t:M,n:'performTemporaryTableDDLInIsolation',u:'#`()',p:61},
{t:M,n:'qualifyIndexName',u:'#`()',p:62},
{t:M,n:'quote',u:'#`(java.lang.String)',p:63},
{t:M,n:'registerColumnType',u:'#`(int, int, java.lang.String)',p:64},
{t:M,n:'registerFunction',u:'#`(java.lang.String, org.hibernate.dialect.function.SQLFunction)',p:65},
{t:M,n:'registerHibernateType',u:'#`(int, int, java.lang.String)',p:66},
{t:M,n:'registerKeyword',u:'#`(java.lang.String)',p:67},
{t:M,n:'registerResultSetOutParameter',u:'#`(java.sql.CallableStatement, int)',p:68},
{t:M,n:'supportsCascadeDelete',u:'#`()',p:69},
{t:M,n:'supportsColumnCheck',u:'#`()',p:70},
{t:M,n:'supportsCommentOn',u:'#`()',p:71},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:72},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:73},
{t:M,n:'supportsIfExistsAfterTableName',u:'#`()',p:74},
{t:M,n:'supportsIfExistsBeforeTableName',u:'#`()',p:75},
{t:M,n:'supportsInsertSelectIdentity',u:'#`()',p:76},
{t:M,n:'supportsLimit',u:'#`()',p:77},
{t:M,n:'supportsLimitOffset',u:'#`()',p:78},
{t:M,n:'supportsNotNullUnique',u:'#`()',p:79},
{t:M,n:'supportsOuterJoinForUpdate',u:'#`()',p:80},
{t:M,n:'supportsParametersInInsertSelect',u:'#`()',p:81},
{t:M,n:'supportsSequences',u:'#`()',p:82},
{t:M,n:'supportsTableCheck',u:'#`()',p:83},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:84},
{t:M,n:'supportsUnionAll',u:'#`()',p:85},
{t:M,n:'supportsUnique',u:'#`()',p:86},
{t:M,n:'supportsUniqueConstraintInCreateAlterTable',u:'#`()',p:87},
{t:M,n:'supportsVariableLimit',u:'#`()',p:88},
{t:M,n:'toBooleanValueString',u:'#`(boolean)',p:89},
{t:M,n:'toString',u:'#`()',p:90},
{t:M,n:'transformSelectString',u:'#`(java.lang.String)',p:91},
{t:M,n:'useInputStreamToInsertBlob',u:'#`()',p:92},
{t:M,n:'useMaxForLimit',u:'#`()',p:93},
{t:C,n:'DialectFactory',c:'`.html',p:154},
{t:M,n:'buildDialect',u:'#`(java.util.Properties, java.lang.String, int)',p:1},
{t:M,n:'determineDialect',u:'#`(java.lang.String, int)',p:2},
{t:C,n:'FirebirdDialect',c:'`.html',p:157},
{t:M,n:'bindLimitParametersFirst',u:'#`()',p:1},
{t:M,n:'bindLimitParametersInReverseOrder',u:'#`()',p:2},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:3},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:4},
{t:C,n:'FrontBaseDialect',c:'`.html',p:162},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:3},
{t:M,n:'getCurrentTimestampCallString',u:'#`()',p:4},
{t:M,n:'getForUpdateString',u:'#`()',p:5},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:6},
{t:C,n:'HSQLDialect',c:'`.html',p:169},
{t:M,n:'bindLimitParametersFirst',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCreateSequenceStrings',u:'#`(java.lang.String)',p:3},
{t:M,n:'getDropSequenceStrings',u:'#`(java.lang.String)',p:4},
{t:M,n:'getForUpdateString',u:'#`()',p:5},
{t:M,n:'getIdentityColumnString',u:'#`()',p:6},
{t:M,n:'getIdentityInsertString',u:'#`()',p:7},
{t:M,n:'getIdentitySelectString',u:'#`()',p:8},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:9},
{t:M,n:'getQuerySequencesString',u:'#`()',p:10},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:11},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:12},
{t:M,n:'getViolatedConstraintNameExtracter',u:'#`()',p:13},
{t:M,n:'supportsColumnCheck',u:'#`()',p:14},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:15},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:16},
{t:M,n:'supportsIfExistsAfterTableName',u:'#`()',p:17},
{t:M,n:'supportsLimit',u:'#`()',p:18},
{t:M,n:'supportsSequences',u:'#`()',p:19},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:20},
{t:M,n:'supportsUnique',u:'#`()',p:21},
{t:C,n:'InformixDialect',c:'`.html',p:191},
{t:M,n:'getAddColumnString',u:'#`()',p:1},
{t:M,n:'getAddForeignKeyConstraintString',u:'#`(java.lang.String, java.lang.String[], java.lang.String, java.lang.String[], boolean)',p:2},
{t:M,n:'getAddPrimaryKeyConstraintString',u:'#`(java.lang.String)',p:3},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:4},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:5},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:6},
{t:M,n:'getIdentityColumnString',u:'#`(int)',p:7},
{t:M,n:'getIdentitySelectString',u:'#`(java.lang.String, java.lang.String, int)',p:8},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:9},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:10},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:11},
{t:M,n:'getViolatedConstraintNameExtracter',u:'#`()',p:12},
{t:M,n:'hasDataTypeInIdentityColumn',u:'#`()',p:13},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:14},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:15},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:16},
{t:M,n:'supportsLimit',u:'#`()',p:17},
{t:M,n:'supportsLimitOffset',u:'#`()',p:18},
{t:M,n:'supportsSequences',u:'#`()',p:19},
{t:M,n:'supportsVariableLimit',u:'#`()',p:20},
{t:M,n:'useMaxForLimit',u:'#`()',p:21},
{t:C,n:'IngresDialect',c:'`.html',p:213},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:3},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:4},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:5},
{t:M,n:'getLowercaseFunction',u:'#`()',p:6},
{t:M,n:'getNullColumnString',u:'#`()',p:7},
{t:M,n:'getQuerySequencesString',u:'#`()',p:8},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:9},
{t:M,n:'supportsForUpdateOf',u:'#`()',p:10},
{t:M,n:'supportsLimit',u:'#`()',p:11},
{t:M,n:'supportsLimitOffset',u:'#`()',p:12},
{t:M,n:'supportsSequences',u:'#`()',p:13},
{t:M,n:'supportsVariableLimit',u:'#`()',p:14},
{t:M,n:'useMaxForLimit',u:'#`()',p:15},
{t:C,n:'InterbaseDialect',c:'`.html',p:229},
{t:M,n:'bindLimitParametersFirst',u:'#`()',p:1},
{t:M,n:'bindLimitParametersInReverseOrder',u:'#`()',p:2},
{t:M,n:'getAddColumnString',u:'#`()',p:3},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:4},
{t:M,n:'getCurrentTimestampCallString',u:'#`()',p:5},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:6},
{t:M,n:'getForUpdateString',u:'#`()',p:7},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:8},
{t:M,n:'getQuerySequencesString',u:'#`()',p:9},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:10},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:11},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:12},
{t:M,n:'supportsLimit',u:'#`()',p:13},
{t:M,n:'supportsSequences',u:'#`()',p:14},
{t:C,n:'JDataStoreDialect',c:'`.html',p:244},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:3},
{t:M,n:'getIdentityColumnString',u:'#`()',p:4},
{t:M,n:'getIdentitySelectString',u:'#`()',p:5},
{t:M,n:'getNoColumnsInsertString',u:'#`()',p:6},
{t:M,n:'supportsColumnCheck',u:'#`()',p:7},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:8},
{t:M,n:'supportsTableCheck',u:'#`()',p:9},
{t:C,n:'MckoiDialect',c:'`.html',p:254},
{t:M,n:'createCaseFragment',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:3},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:4},
{t:M,n:'getForUpdateString',u:'#`()',p:5},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:6},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:7},
{t:M,n:'supportsSequences',u:'#`()',p:8},
{t:C,n:'MimerSQLDialect',c:'`.html',p:263},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'forUpdateOfColumns',u:'#`()',p:2},
{t:M,n:'getAddColumnString',u:'#`()',p:3},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:4},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:5},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:6},
{t:M,n:'getQuerySequencesString',u:'#`()',p:7},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:8},
{t:M,n:'supportsForUpdate',u:'#`()',p:9},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:10},
{t:M,n:'supportsLimit',u:'#`()',p:11},
{t:M,n:'supportsOuterJoinForUpdate',u:'#`()',p:12},
{t:M,n:'supportsSequences',u:'#`()',p:13},
{t:C,n:'MySQLDialect',c:'`.html',p:277},
{t:M,n:'closeQuote',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getAddForeignKeyConstraintString',u:'#`(java.lang.String, java.lang.String[], java.lang.String, java.lang.String[], boolean)',p:3},
{t:M,n:'getCastTypeName',u:'#`(int)',p:4},
{t:M,n:'getColumnComment',u:'#`(java.lang.String)',p:5},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:6},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:7},
{t:M,n:'getDropForeignKeyString',u:'#`()',p:8},
{t:M,n:'getIdentityColumnString',u:'#`()',p:9},
{t:M,n:'getIdentitySelectString',u:'#`()',p:10},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:11},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement)',p:12},
{t:M,n:'getSelectGUIDString',u:'#`()',p:13},
{t:M,n:'getTableComment',u:'#`(java.lang.String)',p:14},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:15},
{t:M,n:'openQuote',u:'#`()',p:16},
{t:M,n:'qualifyIndexName',u:'#`()',p:17},
{t:M,n:'registerResultSetOutParameter',u:'#`(java.sql.CallableStatement, int)',p:18},
{t:M,n:'supportsCascadeDelete',u:'#`()',p:19},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:20},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:21},
{t:M,n:'supportsIfExistsBeforeTableName',u:'#`()',p:22},
{t:M,n:'supportsLimit',u:'#`()',p:23},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:24},
{t:C,n:'MySQLInnoDBDialect',c:'`.html',p:302},
{t:M,n:'getTableTypeString',u:'#`()',p:1},
{t:M,n:'hasSelfReferentialForeignKeyBug',u:'#`()',p:2},
{t:M,n:'supportsCascadeDelete',u:'#`()',p:3},
{t:C,n:'MySQLMyISAMDialect',c:'`.html',p:306},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getTableTypeString',u:'#`()',p:2},
{t:C,n:'Oracle9Dialect',c:'`.html',p:309},
{t:M,n:'bindLimitParametersInReverseOrder',u:'#`()',p:1},
{t:M,n:'dropConstraints',u:'#`()',p:2},
{t:M,n:'dropTemporaryTableAfterUse',u:'#`()',p:3},
{t:M,n:'forUpdateOfColumns',u:'#`()',p:4},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:5},
{t:M,n:'getAddColumnString',u:'#`()',p:6},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:7},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:8},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:9},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:10},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:11},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:12},
{t:M,n:'getForUpdateNowaitString',u:'#`()',p:13},
{t:M,n:'getForUpdateString',u:'#`(java.lang.String)',p:14},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:15},
{t:M,n:'getQuerySequencesString',u:'#`()',p:16},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement)',p:17},
{t:M,n:'getSelectGUIDString',u:'#`()',p:18},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:19},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:20},
{t:M,n:'getViolatedConstraintNameExtracter',u:'#`()',p:21},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:22},
{t:M,n:'registerResultSetOutParameter',u:'#`(java.sql.CallableStatement, int)',p:23},
{t:M,n:'supportsCommentOn',u:'#`()',p:24},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:25},
{t:M,n:'supportsLimit',u:'#`()',p:26},
{t:M,n:'supportsSequences',u:'#`()',p:27},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:28},
{t:M,n:'supportsUnionAll',u:'#`()',p:29},
{t:M,n:'useMaxForLimit',u:'#`()',p:30},
{t:C,n:'OracleDialect',c:'`.html',p:340},
{t:M,n:'createCaseFragment',u:'#`()',p:1},
{t:M,n:'createOuterJoinFragment',u:'#`()',p:2},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:3},
{t:M,n:'getCurrentTimestampSQLFunctionName',u:'#`()',p:4},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:5},
{t:M,n:'getSelectClauseNullString',u:'#`(int)',p:6},
{t:C,n:'PointbaseDialect',c:'`.html',p:347},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getAddColumnString',u:'#`()',p:2},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:3},
{t:M,n:'getForUpdateString',u:'#`()',p:4},
{t:C,n:'PostgreSQLDialect',c:'`.html',p:352},
{t:M,n:'bindLimitParametersInReverseOrder',u:'#`()',p:1},
{t:M,n:'dropConstraints',u:'#`()',p:2},
{t:M,n:'getAddColumnString',u:'#`()',p:3},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:4},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:5},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:6},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:7},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:8},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:9},
{t:M,n:'getForUpdateString',u:'#`(java.lang.String)',p:10},
{t:M,n:'getIdentityColumnString',u:'#`(int)',p:11},
{t:M,n:'getIdentitySelectString',u:'#`(java.lang.String, java.lang.String, int)',p:12},
{t:M,n:'getLimitString',u:'#`(java.lang.String, boolean)',p:13},
{t:M,n:'getNativeIdentifierGeneratorClass',u:'#`()',p:14},
{t:M,n:'getNoColumnsInsertString',u:'#`()',p:15},
{t:M,n:'getQuerySequencesString',u:'#`()',p:16},
{t:M,n:'getSelectClauseNullString',u:'#`(int)',p:17},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:18},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:19},
{t:M,n:'getViolatedConstraintNameExtracter',u:'#`()',p:20},
{t:M,n:'hasDataTypeInIdentityColumn',u:'#`()',p:21},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',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:'supportsOuterJoinForUpdate',u:'#`()',p:27},
{t:M,n:'supportsSequences',u:'#`()',p:28},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:29},
{t:M,n:'supportsUnionAll',u:'#`()',p:30},
{t:M,n:'toBooleanValueString',u:'#`(boolean)',p:31},
{t:M,n:'useInputStreamToInsertBlob',u:'#`()',p:32},
{t:C,n:'ProgressDialect',c:'`.html',p:385},
{t:M,n:'getAddColumnString',u:'#`()',p:1},
{t:M,n:'hasAlterTable',u:'#`()',p:2},
{t:M,n:'qualifyIndexName',u:'#`()',p:3},
{t:C,n:'RDMSOS2200Dialect',c:'`.html',p:389},
{t:M,n:'createCaseFragment',u:'#`()',p:1},
{t:M,n:'forUpdateOfColumns',u:'#`()',p:2},
{t:M,n:'getAddColumnString',u:'#`()',p:3},
{t:M,n:'getCascadeConstraintsString',u:'#`()',p:4},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:5},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:6},
{t:M,n:'getForUpdateString',u:'#`()',p:7},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:8},
{t:M,n:'getNullColumnString',u:'#`()',p:9},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:10},
{t:M,n:'qualifyIndexName',u:'#`()',p:11},
{t:M,n:'supportsCascadeDelete',u:'#`()',p:12},
{t:M,n:'supportsLimit',u:'#`()',p:13},
{t:M,n:'supportsLimitOffset',u:'#`()',p:14},
{t:M,n:'supportsOuterJoinForUpdate',u:'#`()',p:15},
{t:M,n:'supportsSequences',u:'#`()',p:16},
{t:M,n:'supportsUnionAll',u:'#`()',p:17},
{t:M,n:'supportsUniqueConstraintInCreateAlterTable',u:'#`()',p:18},
{t:M,n:'supportsVariableLimit',u:'#`()',p:19},
{t:C,n:'SAPDBDialect',c:'`.html',p:409},
{t:M,n:'createCaseFragment',u:'#`()',p:1},
{t:M,n:'createOuterJoinFragment',u:'#`()',p:2},
{t:M,n:'dropConstraints',u:'#`()',p:3},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:4},
{t:M,n:'getAddColumnString',u:'#`()',p:5},
{t:M,n:'getAddForeignKeyConstraintString',u:'#`(java.lang.String, java.lang.String[], java.lang.String, java.lang.String[], boolean)',p:6},
{t:M,n:'getAddPrimaryKeyConstraintString',u:'#`(java.lang.String)',p:7},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:8},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:9},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:10},
{t:M,n:'getNullColumnString',u:'#`()',p:11},
{t:M,n:'getQuerySequencesString',u:'#`()',p:12},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:13},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:14},
{t:M,n:'supportsSequences',u:'#`()',p:15},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:16},
{t:C,n:'SQLServerDialect',c:'`.html',p:426},
{t:M,n:'appendIdentitySelectToInsert',u:'#`(java.lang.String)',p:1},
{t:M,n:'appendLockHint',u:'#`(org.hibernate.LockMode, java.lang.String)',p:2},
{t:M,n:'closeQuote',u:'#`()',p:3},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:4},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:5},
{t:M,n:'getNoColumnsInsertString',u:'#`()',p:6},
{t:M,n:'getSelectGUIDString',u:'#`()',p:7},
{t:M,n:'openQuote',u:'#`()',p:8},
{t:M,n:'supportsLimit',u:'#`()',p:9},
{t:M,n:'supportsLimitOffset',u:'#`()',p:10},
{t:M,n:'supportsVariableLimit',u:'#`()',p:11},
{t:M,n:'useMaxForLimit',u:'#`()',p:12},
{t:C,n:'Sybase11Dialect',c:'`.html',p:439},
{t:M,n:'createOuterJoinFragment',u:'#`()',p:1},
{t:C,n:'SybaseAnywhereDialect',c:'`.html',p:441},
{t:M,n:'dropConstraints',u:'#`()',p:1},
{t:M,n:'getNoColumnsInsertString',u:'#`()',p:2},
{t:M,n:'supportsInsertSelectIdentity',u:'#`()',p:3},
{t:C,n:'SybaseDialect',c:'`.html',p:445},
{t:M,n:'appendIdentitySelectToInsert',u:'#`(java.lang.String)',p:1},
{t:M,n:'appendLockHint',u:'#`(org.hibernate.LockMode, java.lang.String)',p:2},
{t:M,n:'dropTemporaryTableAfterUse',u:'#`()',p:3},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:4},
{t:M,n:'getAddColumnString',u:'#`()',p:5},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:6},
{t:M,n:'getForUpdateString',u:'#`()',p:7},
{t:M,n:'getIdentityColumnString',u:'#`()',p:8},
{t:M,n:'getIdentitySelectString',u:'#`()',p:9},
{t:M,n:'getNullColumnString',u:'#`()',p:10},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement)',p:11},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:12},
{t:M,n:'qualifyIndexName',u:'#`()',p:13},
{t:M,n:'registerResultSetOutParameter',u:'#`(java.sql.CallableStatement, int)',p:14},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:15},
{t:M,n:'supportsIdentityColumns',u:'#`()',p:16},
{t:M,n:'supportsInsertSelectIdentity',u:'#`()',p:17},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:18},
{t:C,n:'TimesTenDialect',c:'`.html',p:464},
{t:M,n:'createOuterJoinFragment',u:'#`()',p:1},
{t:M,n:'dropConstraints',u:'#`()',p:2},
{t:M,n:'generateTemporaryTableName',u:'#`(java.lang.String)',p:3},
{t:M,n:'getAddColumnString',u:'#`()',p:4},
{t:M,n:'getCreateSequenceString',u:'#`(java.lang.String)',p:5},
{t:M,n:'getCreateTemporaryTablePostfix',u:'#`()',p:6},
{t:M,n:'getCreateTemporaryTableString',u:'#`()',p:7},
{t:M,n:'getCurrentTimestampSelectString',u:'#`()',p:8},
{t:M,n:'getDropSequenceString',u:'#`(java.lang.String)',p:9},
{t:M,n:'getForUpdateString',u:'#`()',p:10},
{t:M,n:'getLimitString',u:'#`(java.lang.String, int, int)',p:11},
{t:M,n:'getQuerySequencesString',u:'#`()',p:12},
{t:M,n:'getSelectSequenceNextValString',u:'#`(java.lang.String)',p:13},
{t:M,n:'getSequenceNextValString',u:'#`(java.lang.String)',p:14},
{t:M,n:'isCurrentTimestampSelectStringCallable',u:'#`()',p:15},
{t:M,n:'qualifyIndexName',u:'#`()',p:16},
{t:M,n:'supportsColumnCheck',u:'#`()',p:17},
{t:M,n:'supportsCurrentTimestampSelection',u:'#`()',p:18},
{t:M,n:'supportsLimit',u:'#`()',p:19},
{t:M,n:'supportsLimitOffset',u:'#`()',p:20},
{t:M,n:'supportsSequences',u:'#`()',p:21},
{t:M,n:'supportsTableCheck',u:'#`()',p:22},
{t:M,n:'supportsTemporaryTables',u:'#`()',p:23},
{t:M,n:'supportsUnique',u:'#`()',p:24},
{t:M,n:'supportsUniqueConstraintInCreateAlterTable',u:'#`()',p:25},
{t:M,n:'supportsVariableLimit',u:'#`()',p:26},
{t:M,n:'useMaxForLimit',u:'#`()',p:27},
{t:C,n:'TypeNames',c:'`.html',p:492},
{t:M,n:'get',u:'#`(int)',p:1},
{t:M,n:'put',u:'#`(int, int, java.lang.String)',p:2},
{t:P,n:'org.hibernate.dialect.function',u:'package-summary.html',c:'rg/hibernate/dialect/function/',p:2517},
{t:I,n:'SQLFunction',c:'`.html',p:1},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'CastFunction',c:'`.html',p:6},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'CharIndexFunction',c:'`.html',p:11},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'NoArgSQLFunction',c:'`.html',p:16},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'NvlFunction',c:'`.html',p:21},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'PositionSubstringFunction',c:'`.html',p:26},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'SQLFunctionTemplate',c:'`.html',p:31},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'StandardSQLFunction',c:'`.html',p:37},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'VarArgsSQLFunction',c:'`.html',p:43},
{t:M,n:'getReturnType',u:'#`(org.hibernate.type.Type, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'hasArguments',u:'#`()',p:2},
{t:M,n:'hasParenthesesIfNoArguments',u:'#`()',p:3},
{t:M,n:'render',u:'#`(java.util.List, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:P,n:'org.hibernate.event',u:'package-summary.html',c:'rg/hibernate/event/',p:2565},
{t:I,n:'AutoFlushEventListener',c:'`.html',p:1},
{t:M,n:'onAutoFlush',u:'#`(org.hibernate.event.AutoFlushEvent)',p:1},
{t:I,n:'DeleteEventListener',c:'`.html',p:3},
{t:M,n:'onDelete',u:'#`(org.hibernate.event.DeleteEvent)',p:1},
{t:I,n:'DirtyCheckEventListener',c:'`.html',p:5},
{t:M,n:'onDirtyCheck',u:'#`(org.hibernate.event.DirtyCheckEvent)',p:1},
{t:I,n:'EventSource',c:'`.html',p:7},
{t:M,n:'delete',u:'#`(java.lang.String, java.lang.Object, boolean)',p:1},
{t:M,n:'forceFlush',u:'#`(org.hibernate.engine.EntityEntry)',p:2},
{t:M,n:'getActionQueue',u:'#`()',p:3},
{t:M,n:'instantiate',u:'#`(org.hibernate.persister.entity.EntityPersister, java.io.Serializable)',p:4},
{t:M,n:'merge',u:'#`(java.lang.String, java.lang.Object, java.util.Map)',p:5},
{t:M,n:'persist',u:'#`(java.lang.String, java.lang.Object, java.util.Map)',p:6},
{t:M,n:'persistOnFlush',u:'#`(java.lang.String, java.lang.Object, java.util.Map)',p:7},
{t:M,n:'refresh',u:'#`(java.lang.Object, java.util.Map)',p:8},
{t:M,n:'saveOrUpdateCopy',u:'#`(java.lang.String, java.lang.Object, java.util.Map)',p:9},
{t:I,n:'EvictEventListener',c:'`.html',p:17},
{t:M,n:'onEvict',u:'#`(org.hibernate.event.EvictEvent)',p:1},
{t:I,n:'FlushEntityEventListener',c:'`.html',p:19},
{t:M,n:'onFlushEntity',u:'#`(org.hibernate.event.FlushEntityEvent)',p:1},
{t:I,n:'FlushEventListener',c:'`.html',p:21},
{t:M,n:'onFlush',u:'#`(org.hibernate.event.FlushEvent)',p:1},
{t:I,n:'Initializable',c:'`.html',p:23},
{t:M,n:'initialize',u:'#`(org.hibernate.cfg.Configuration)',p:1},
{t:I,n:'InitializeCollectionEventListener',c:'`.html',p:25},
{t:M,n:'onInitializeCollection',u:'#`(org.hibernate.event.InitializeCollectionEvent)',p:1},
{t:I,n:'LoadEventListener',c:'`.html',p:27},
{t:O,n:'GET',u:'#`',p:1},
{t:O,n:'IMMEDIATE_LOAD',u:'#`',p:2},
{t:O,n:'INTERNAL_LOAD_EAGER',u:'#`',p:3},
{t:O,n:'INTERNAL_LOAD_LAZY',u:'#`',p:4},
{t:O,n:'INTERNAL_LOAD_NULLABLE',u:'#`',p:5},
{t:O,n:'LOAD',u:'#`',p:6},
{t:O,n:'RELOAD',u:'#`',p:7},
{t:M,n:'onLoad',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.event.LoadEventListener.LoadType)',p:8},
{t:I,n:'LockEventListener',c:'`.html',p:36},
{t:M,n:'onLock',u:'#`(org.hibernate.event.LockEvent)',p:1},
{t:I,n:'MergeEventListener',c:'`.html',p:38},
{t:M,n:'onMerge',u:'#`(org.hibernate.event.MergeEvent)',p:1},
{t:I,n:'PersistEventListener',c:'`.html',p:40},
{t:M,n:'onPersist',u:'#`(org.hibernate.event.PersistEvent)',p:1},
{t:I,n:'PostDeleteEventListener',c:'`.html',p:42},
{t:M,n:'onPostDelete',u:'#`(org.hibernate.event.PostDeleteEvent)',p:1},
{t:I,n:'PostInsertEventListener',c:'`.html',p:44},
{t:M,n:'onPostInsert',u:'#`(org.hibernate.event.PostInsertEvent)',p:1},
{t:I,n:'PostLoadEventListener',c:'`.html',p:46},
{t:M,n:'onPostLoad',u:'#`(org.hibernate.event.PostLoadEvent)',p:1},
{t:I,n:'PostUpdateEventListener',c:'`.html',p:48},
{t:M,n:'onPostUpdate',u:'#`(org.hibernate.event.PostUpdateEvent)',p:1},
{t:I,n:'PreDeleteEventListener',c:'`.html',p:50},
{t:M,n:'onPreDelete',u:'#`(org.hibernate.event.PreDeleteEvent)',p:1},
{t:I,n:'PreInsertEventListener',c:'`.html',p:52},
{t:M,n:'onPreInsert',u:'#`(org.hibernate.event.PreInsertEvent)',p:1},
{t:I,n:'PreLoadEventListener',c:'`.html',p:54},
{t:M,n:'onPreLoad',u:'#`(org.hibernate.event.PreLoadEvent)',p:1},
{t:I,n:'PreUpdateEventListener',c:'`.html',p:56},
{t:M,n:'onPreUpdate',u:'#`(org.hibernate.event.PreUpdateEvent)',p:1},
{t:I,n:'RefreshEventListener',c:'`.html',p:58},
{t:M,n:'onRefresh',u:'#`(org.hibernate.event.RefreshEvent)',p:1},
{t:I,n:'ReplicateEventListener',c:'`.html',p:60},
{t:M,n:'onReplicate',u:'#`(org.hibernate.event.ReplicateEvent)',p:1},
{t:I,n:'SaveOrUpdateEventListener',c:'`.html',p:62},
{t:M,n:'onSaveOrUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:1},
{t:C,n:'AbstractEvent',c:'`.html',p:64},
{t:M,n:'getSession',u:'#`()',p:1},
{t:C,n:'AutoFlushEvent',c:'`.html',p:66},
{t:M,n:'getQuerySpaces',u:'#`()',p:1},
{t:M,n:'isFlushRequired',u:'#`()',p:2},
{t:M,n:'setFlushRequired',u:'#`(boolean)',p:3},
{t:M,n:'setQuerySpaces',u:'#`(java.util.Set)',p:4},
{t:C,n:'DeleteEvent',c:'`.html',p:71},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getObject',u:'#`()',p:2},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:3},
{t:C,n:'DirtyCheckEvent',c:'`.html',p:75},
{t:M,n:'isDirty',u:'#`()',p:1},
{t:M,n:'setDirty',u:'#`(boolean)',p:2},
{t:C,n:'EventListeners',c:'`.html',p:78},
{t:M,n:'getAutoFlushEventListeners',u:'#`()',p:1},
{t:M,n:'getDeleteEventListeners',u:'#`()',p:2},
{t:M,n:'getDirtyCheckEventListeners',u:'#`()',p:3},
{t:M,n:'getEvictEventListeners',u:'#`()',p:4},
{t:M,n:'getFlushEntityEventListeners',u:'#`()',p:5},
{t:M,n:'getFlushEventListeners',u:'#`()',p:6},
{t:M,n:'getInitializeCollectionEventListeners',u:'#`()',p:7},
{t:M,n:'getListenerClassFor',u:'#`(java.lang.String)',p:8},
{t:M,n:'getLoadEventListeners',u:'#`()',p:9},
{t:M,n:'getLockEventListeners',u:'#`()',p:10},
{t:M,n:'getMergeEventListeners',u:'#`()',p:11},
{t:M,n:'getPersistEventListeners',u:'#`()',p:12},
{t:M,n:'getPersistOnFlushEventListeners',u:'#`()',p:13},
{t:M,n:'getPostCommitDeleteEventListeners',u:'#`()',p:14},
{t:M,n:'getPostCommitInsertEventListeners',u:'#`()',p:15},
{t:M,n:'getPostCommitUpdateEventListeners',u:'#`()',p:16},
{t:M,n:'getPostDeleteEventListeners',u:'#`()',p:17},
{t:M,n:'getPostInsertEventListeners',u:'#`()',p:18},
{t:M,n:'getPostLoadEventListeners',u:'#`()',p:19},
{t:M,n:'getPostUpdateEventListeners',u:'#`()',p:20},
{t:M,n:'getPreDeleteEventListeners',u:'#`()',p:21},
{t:M,n:'getPreInsertEventListeners',u:'#`()',p:22},
{t:M,n:'getPreLoadEventListeners',u:'#`()',p:23},
{t:M,n:'getPreUpdateEventListeners',u:'#`()',p:24},
{t:M,n:'getRefreshEventListeners',u:'#`()',p:25},
{t:M,n:'getReplicateEventListeners',u:'#`()',p:26},
{t:M,n:'getSaveEventListeners',u:'#`()',p:27},
{t:M,n:'getSaveOrUpdateCopyEventListeners',u:'#`()',p:28},
{t:M,n:'getSaveOrUpdateEventListeners',u:'#`()',p:29},
{t:M,n:'getUpdateEventListeners',u:'#`()',p:30},
{t:M,n:'initializeListeners',u:'#`(org.hibernate.cfg.Configuration)',p:31},
{t:M,n:'setAutoFlushEventListeners',u:'#`(org.hibernate.event.AutoFlushEventListener[])',p:32},
{t:M,n:'setDeleteEventListeners',u:'#`(org.hibernate.event.DeleteEventListener[])',p:33},
{t:M,n:'setDirtyCheckEventListeners',u:'#`(org.hibernate.event.DirtyCheckEventListener[])',p:34},
{t:M,n:'setEvictEventListeners',u:'#`(org.hibernate.event.EvictEventListener[])',p:35},
{t:M,n:'setFlushEntityEventListeners',u:'#`(org.hibernate.event.FlushEntityEventListener[])',p:36},
{t:M,n:'setFlushEventListeners',u:'#`(org.hibernate.event.FlushEventListener[])',p:37},
{t:M,n:'setInitializeCollectionEventListeners',u:'#`(org.hibernate.event.InitializeCollectionEventListener[])',p:38},
{t:M,n:'setLoadEventListeners',u:'#`(org.hibernate.event.LoadEventListener[])',p:39},
{t:M,n:'setLockEventListeners',u:'#`(org.hibernate.event.LockEventListener[])',p:40},
{t:M,n:'setMergeEventListeners',u:'#`(org.hibernate.event.MergeEventListener[])',p:41},
{t:M,n:'setPersistEventListeners',u:'#`(org.hibernate.event.PersistEventListener[])',p:42},
{t:M,n:'setPersistOnFlushEventListeners',u:'#`(org.hibernate.event.PersistEventListener[])',p:43},
{t:M,n:'setPostCommitDeleteEventListeners',u:'#`(org.hibernate.event.PostDeleteEventListener[])',p:44},
{t:M,n:'setPostCommitInsertEventListeners',u:'#`(org.hibernate.event.PostInsertEventListener[])',p:45},
{t:M,n:'setPostCommitUpdateEventListeners',u:'#`(org.hibernate.event.PostUpdateEventListener[])',p:46},
{t:M,n:'setPostDeleteEventListeners',u:'#`(org.hibernate.event.PostDeleteEventListener[])',p:47},
{t:M,n:'setPostInsertEventListeners',u:'#`(org.hibernate.event.PostInsertEventListener[])',p:48},
{t:M,n:'setPostLoadEventListeners',u:'#`(org.hibernate.event.PostLoadEventListener[])',p:49},
{t:M,n:'setPostUpdateEventListeners',u:'#`(org.hibernate.event.PostUpdateEventListener[])',p:50},
{t:M,n:'setPreDeleteEventListeners',u:'#`(org.hibernate.event.PreDeleteEventListener[])',p:51},
{t:M,n:'setPreInsertEventListeners',u:'#`(org.hibernate.event.PreInsertEventListener[])',p:52},
{t:M,n:'setPreLoadEventListeners',u:'#`(org.hibernate.event.PreLoadEventListener[])',p:53},
{t:M,n:'setPreUpdateEventListeners',u:'#`(org.hibernate.event.PreUpdateEventListener[])',p:54},
{t:M,n:'setRefreshEventListeners',u:'#`(org.hibernate.event.RefreshEventListener[])',p:55},
{t:M,n:'setReplicateEventListeners',u:'#`(org.hibernate.event.ReplicateEventListener[])',p:56},
{t:M,n:'setSaveEventListeners',u:'#`(org.hibernate.event.SaveOrUpdateEventListener[])',p:57},
{t:M,n:'setSaveOrUpdateCopyEventListeners',u:'#`(org.hibernate.event.MergeEventListener[])',p:58},
{t:M,n:'setSaveOrUpdateEventListeners',u:'#`(org.hibernate.event.SaveOrUpdateEventListener[])',p:59},
{t:M,n:'setUpdateEventListeners',u:'#`(org.hibernate.event.SaveOrUpdateEventListener[])',p:60},
{t:C,n:'EvictEvent',c:'`.html',p:139},
{t:M,n:'getObject',u:'#`()',p:1},
{t:M,n:'setObject',u:'#`(java.lang.Object)',p:2},
{t:C,n:'FlushEntityEvent',c:'`.html',p:142},
{t:M,n:'getDatabaseSnapshot',u:'#`()',p:1},
{t:M,n:'getDirtyProperties',u:'#`()',p:2},
{t:M,n:'getEntity',u:'#`()',p:3},
{t:M,n:'getEntityEntry',u:'#`()',p:4},
{t:M,n:'getPropertyValues',u:'#`()',p:5},
{t:M,n:'hasDatabaseSnapshot',u:'#`()',p:6},
{t:M,n:'hasDirtyCollection',u:'#`()',p:7},
{t:M,n:'isDirtyCheckHandledByInterceptor',u:'#`()',p:8},
{t:M,n:'isDirtyCheckPossible',u:'#`()',p:9},
{t:M,n:'setDatabaseSnapshot',u:'#`(java.lang.Object[])',p:10},
{t:M,n:'setDirtyCheckHandledByInterceptor',u:'#`(boolean)',p:11},
{t:M,n:'setDirtyCheckPossible',u:'#`(boolean)',p:12},
{t:M,n:'setDirtyProperties',u:'#`(int[])',p:13},
{t:M,n:'setHasDirtyCollection',u:'#`(boolean)',p:14},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object[])',p:15},
{t:C,n:'FlushEvent',u:'`.html',p:158},
{t:C,n:'InitializeCollectionEvent',c:'`.html',p:159},
{t:M,n:'getCollection',u:'#`()',p:1},
{t:C,n:'LoadEvent',c:'`.html',p:161},
{t:O,n:'DEFAULT_LOCK_MODE',u:'#`',p:1},
{t:M,n:'getEntityClassName',u:'#`()',p:2},
{t:M,n:'getEntityId',u:'#`()',p:3},
{t:M,n:'getInstanceToLoad',u:'#`()',p:4},
{t:M,n:'getLockMode',u:'#`()',p:5},
{t:M,n:'getResult',u:'#`()',p:6},
{t:M,n:'isAssociationFetch',u:'#`()',p:7},
{t:M,n:'setEntityClassName',u:'#`(java.lang.String)',p:8},
{t:M,n:'setEntityId',u:'#`(java.io.Serializable)',p:9},
{t:M,n:'setInstanceToLoad',u:'#`(java.lang.Object)',p:10},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:11},
{t:M,n:'setResult',u:'#`(java.lang.Object)',p:12},
{t:C,n:'LockEvent',c:'`.html',p:174},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getLockMode',u:'#`()',p:2},
{t:M,n:'getObject',u:'#`()',p:3},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:4},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:5},
{t:M,n:'setObject',u:'#`(java.lang.Object)',p:6},
{t:C,n:'MergeEvent',c:'`.html',p:181},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getOriginal',u:'#`()',p:3},
{t:M,n:'getRequestedId',u:'#`()',p:4},
{t:M,n:'getResult',u:'#`()',p:5},
{t:M,n:'setEntity',u:'#`(java.lang.Object)',p:6},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:7},
{t:M,n:'setOriginal',u:'#`(java.lang.Object)',p:8},
{t:M,n:'setRequestedId',u:'#`(java.io.Serializable)',p:9},
{t:M,n:'setResult',u:'#`(java.lang.Object)',p:10},
{t:C,n:'PersistEvent',c:'`.html',p:192},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getObject',u:'#`()',p:2},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:3},
{t:M,n:'setObject',u:'#`(java.lang.Object)',p:4},
{t:C,n:'PostDeleteEvent',c:'`.html',p:197},
{t:M,n:'getDeletedState',u:'#`()',p:1},
{t:M,n:'getEntity',u:'#`()',p:2},
{t:M,n:'getId',u:'#`()',p:3},
{t:M,n:'getPersister',u:'#`()',p:4},
{t:C,n:'PostInsertEvent',c:'`.html',p:202},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getPersister',u:'#`()',p:3},
{t:M,n:'getState',u:'#`()',p:4},
{t:C,n:'PostLoadEvent',c:'`.html',p:207},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getPersister',u:'#`()',p:3},
{t:M,n:'setEntity',u:'#`(java.lang.Object)',p:4},
{t:M,n:'setId',u:'#`(java.io.Serializable)',p:5},
{t:M,n:'setPersister',u:'#`(org.hibernate.persister.entity.EntityPersister)',p:6},
{t:C,n:'PostUpdateEvent',c:'`.html',p:214},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getOldState',u:'#`()',p:3},
{t:M,n:'getPersister',u:'#`()',p:4},
{t:M,n:'getState',u:'#`()',p:5},
{t:C,n:'PreDeleteEvent',c:'`.html',p:220},
{t:M,n:'getDeletedState',u:'#`()',p:1},
{t:M,n:'getEntity',u:'#`()',p:2},
{t:M,n:'getId',u:'#`()',p:3},
{t:M,n:'getPersister',u:'#`()',p:4},
{t:C,n:'PreInsertEvent',c:'`.html',p:225},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getPersister',u:'#`()',p:3},
{t:M,n:'getSource',u:'#`()',p:4},
{t:M,n:'getState',u:'#`()',p:5},
{t:C,n:'PreLoadEvent',c:'`.html',p:231},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getPersister',u:'#`()',p:3},
{t:M,n:'getState',u:'#`()',p:4},
{t:M,n:'setEntity',u:'#`(java.lang.Object)',p:5},
{t:M,n:'setId',u:'#`(java.io.Serializable)',p:6},
{t:M,n:'setPersister',u:'#`(org.hibernate.persister.entity.EntityPersister)',p:7},
{t:M,n:'setState',u:'#`(java.lang.Object[])',p:8},
{t:C,n:'PreUpdateEvent',c:'`.html',p:240},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getId',u:'#`()',p:2},
{t:M,n:'getOldState',u:'#`()',p:3},
{t:M,n:'getPersister',u:'#`()',p:4},
{t:M,n:'getSource',u:'#`()',p:5},
{t:M,n:'getState',u:'#`()',p:6},
{t:C,n:'RefreshEvent',c:'`.html',p:247},
{t:M,n:'getLockMode',u:'#`()',p:1},
{t:M,n:'getObject',u:'#`()',p:2},
{t:C,n:'ReplicateEvent',c:'`.html',p:250},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getObject',u:'#`()',p:2},
{t:M,n:'getReplicationMode',u:'#`()',p:3},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:4},
{t:M,n:'setObject',u:'#`(java.lang.Object)',p:5},
{t:M,n:'setReplicationMode',u:'#`(org.hibernate.ReplicationMode)',p:6},
{t:C,n:'SaveOrUpdateEvent',c:'`.html',p:257},
{t:M,n:'getEntity',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getEntry',u:'#`()',p:3},
{t:M,n:'getObject',u:'#`()',p:4},
{t:M,n:'getRequestedId',u:'#`()',p:5},
{t:M,n:'getResultId',u:'#`()',p:6},
{t:M,n:'setEntity',u:'#`(java.lang.Object)',p:7},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:8},
{t:M,n:'setEntry',u:'#`(org.hibernate.engine.EntityEntry)',p:9},
{t:M,n:'setObject',u:'#`(java.lang.Object)',p:10},
{t:M,n:'setRequestedId',u:'#`(java.io.Serializable)',p:11},
{t:M,n:'setResultId',u:'#`(java.io.Serializable)',p:12},
{t:P,n:'org.hibernate.event.def',u:'package-summary.html',c:'rg/hibernate/event/def/',p:2835},
{t:C,n:'AbstractFlushingEventListener',c:'`.html',p:1},
{t:M,n:'flushEverythingToExecutions',u:'#`(org.hibernate.event.FlushEvent)',p:1},
{t:M,n:'getAnything',u:'#`()',p:2},
{t:M,n:'getCascadingAction',u:'#`()',p:3},
{t:M,n:'performExecutions',u:'#`(org.hibernate.event.EventSource)',p:4},
{t:M,n:'postFlush',u:'#`(org.hibernate.engine.SessionImplementor)',p:5},
{t:C,n:'AbstractLockUpgradeEventListener',c:'`.html',p:7},
{t:M,n:'upgradeLock',u:'#`(java.lang.Object, org.hibernate.engine.EntityEntry, org.hibernate.LockMode, org.hibernate.engine.SessionImplementor)',p:1},
{t:C,n:'AbstractReassociateEventListener',c:'`.html',p:9},
{t:M,n:'reassociate',u:'#`(org.hibernate.event.AbstractEvent, java.lang.Object, java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:1},
{t:C,n:'AbstractSaveEventListener',c:'`.html',p:11},
{t:O,n:'DELETED',u:'#`',p:1},
{t:O,n:'DETACHED',u:'#`',p:2},
{t:O,n:'PERSISTENT',u:'#`',p:3},
{t:O,n:'TRANSIENT',u:'#`',p:4},
{t:M,n:'cascadeAfterSave',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.lang.Object)',p:5},
{t:M,n:'cascadeBeforeSave',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.lang.Object)',p:6},
{t:M,n:'getAssumedUnsaved',u:'#`()',p:7},
{t:M,n:'getCascadeAction',u:'#`()',p:8},
{t:M,n:'getEntityState',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.EntityEntry, org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'getLoggableName',u:'#`(java.lang.String, java.lang.Object)',p:10},
{t:M,n:'getMergeMap',u:'#`(java.lang.Object)',p:11},
{t:M,n:'invokeSaveLifecycle',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.event.EventSource)',p:12},
{t:M,n:'isVersionIncrementDisabled',u:'#`()',p:13},
{t:M,n:'performSave',u:'#`(java.lang.Object, java.io.Serializable, org.hibernate.persister.entity.EntityPersister, boolean, java.lang.Object, org.hibernate.event.EventSource)',p:14},
{t:M,n:'performSaveOrReplicate',u:'#`(java.lang.Object, org.hibernate.engine.EntityKey, org.hibernate.persister.entity.EntityPersister, boolean, java.lang.Object, org.hibernate.event.EventSource)',p:15},
{t:M,n:'saveWithGeneratedId',u:'#`(java.lang.Object, java.lang.String, java.lang.Object, org.hibernate.event.EventSource)',p:16},
{t:M,n:'saveWithRequestedId',u:'#`(java.lang.Object, java.io.Serializable, java.lang.String, java.lang.Object, org.hibernate.event.EventSource)',p:17},
{t:M,n:'substituteValuesIfNecessary',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.SessionImplementor)',p:18},
{t:M,n:'validate',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.event.EventSource)',p:19},
{t:M,n:'visitCollectionsBeforeSave',u:'#`(java.io.Serializable, java.lang.Object[], org.hibernate.type.Type[], org.hibernate.event.EventSource)',p:20},
{t:C,n:'AbstractVisitor',c:'`.html',p:32},
{t:M,n:'processEntityPropertyValues',u:'#`(java.lang.Object[], org.hibernate.type.Type[])',p:1},
{t:C,n:'DefaultAutoFlushEventListener',c:'`.html',p:34},
{t:M,n:'onAutoFlush',u:'#`(org.hibernate.event.AutoFlushEvent)',p:1},
{t:C,n:'DefaultDeleteEventListener',c:'`.html',p:36},
{t:M,n:'cascadeAfterDelete',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object)',p:1},
{t:M,n:'cascadeBeforeDelete',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, org.hibernate.engine.EntityEntry)',p:2},
{t:M,n:'deleteEntity',u:'#`(org.hibernate.event.EventSource, java.lang.Object, org.hibernate.engine.EntityEntry, boolean, org.hibernate.persister.entity.EntityPersister)',p:3},
{t:M,n:'invokeDeleteLifecycle',u:'#`(org.hibernate.event.EventSource, java.lang.Object, org.hibernate.persister.entity.EntityPersister)',p:4},
{t:M,n:'onDelete',u:'#`(org.hibernate.event.DeleteEvent)',p:5},
{t:C,n:'DefaultDirtyCheckEventListener',c:'`.html',p:42},
{t:M,n:'onDirtyCheck',u:'#`(org.hibernate.event.DirtyCheckEvent)',p:1},
{t:C,n:'DefaultEvictEventListener',c:'`.html',p:44},
{t:M,n:'doEvict',u:'#`(java.lang.Object, org.hibernate.engine.EntityKey, org.hibernate.persister.entity.EntityPersister, org.hibernate.event.EventSource)',p:1},
{t:M,n:'onEvict',u:'#`(org.hibernate.event.EvictEvent)',p:2},
{t:C,n:'DefaultFlushEntityEventListener',c:'`.html',p:47},
{t:M,n:'checkId',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, java.io.Serializable, org.hibernate.EntityMode)',p:1},
{t:M,n:'dirtyCheck',u:'#`(org.hibernate.event.FlushEntityEvent)',p:2},
{t:M,n:'handleInterception',u:'#`(org.hibernate.event.FlushEntityEvent)',p:3},
{t:M,n:'invokeInterceptor',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object, org.hibernate.engine.EntityEntry, java.lang.Object[], org.hibernate.persister.entity.EntityPersister)',p:4},
{t:M,n:'isUpdateNecessary',u:'#`(org.hibernate.event.FlushEntityEvent)',p:5},
{t:M,n:'onFlushEntity',u:'#`(org.hibernate.event.FlushEntityEvent)',p:6},
{t:M,n:'validate',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.Status, org.hibernate.EntityMode)',p:7},
{t:C,n:'DefaultFlushEventListener',c:'`.html',p:55},
{t:M,n:'onFlush',u:'#`(org.hibernate.event.FlushEvent)',p:1},
{t:C,n:'DefaultInitializeCollectionEventListener',c:'`.html',p:57},
{t:M,n:'onInitializeCollection',u:'#`(org.hibernate.event.InitializeCollectionEvent)',p:1},
{t:C,n:'DefaultLoadEventListener',c:'`.html',p:59},
{t:O,n:'DEFAULT_LOCK_MODE',u:'#`',p:1},
{t:M,n:'doLoad',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType)',p:2},
{t:M,n:'load',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType)',p:3},
{t:M,n:'loadFromDatasource',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType)',p:4},
{t:M,n:'loadFromSecondLevelCache',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.event.LoadEventListener.LoadType)',p:5},
{t:M,n:'loadFromSessionCache',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType)',p:6},
{t:M,n:'lockAndLoad',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType, org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'onLoad',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.event.LoadEventListener.LoadType)',p:8},
{t:M,n:'proxyOrLoad',u:'#`(org.hibernate.event.LoadEvent, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, org.hibernate.event.LoadEventListener.LoadType)',p:9},
{t:C,n:'DefaultLockEventListener',c:'`.html',p:69},
{t:M,n:'onLock',u:'#`(org.hibernate.event.LockEvent)',p:1},
{t:C,n:'DefaultMergeEventListener',c:'`.html',p:71},
{t:M,n:'cascadeAfterSave',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'cascadeBeforeSave',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.lang.Object)',p:2},
{t:M,n:'cascadeOnMerge',u:'#`(org.hibernate.event.EventSource, org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.util.Map)',p:3},
{t:M,n:'copyValues',u:'#`(org.hibernate.persister.entity.EntityPersister, java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.util.Map)',p:4},
{t:M,n:'entityIsDetached',u:'#`(org.hibernate.event.MergeEvent, java.util.Map)',p:5},
{t:M,n:'entityIsPersistent',u:'#`(org.hibernate.event.MergeEvent, java.util.Map)',p:6},
{t:M,n:'entityIsTransient',u:'#`(org.hibernate.event.MergeEvent, java.util.Map)',p:7},
{t:M,n:'getAssumedUnsaved',u:'#`()',p:8},
{t:M,n:'getCascadeAction',u:'#`()',p:9},
{t:M,n:'getMergeMap',u:'#`(java.lang.Object)',p:10},
{t:M,n:'onMerge',u:'#`(org.hibernate.event.MergeEvent)',p:11},
{t:C,n:'DefaultPersistEventListener',c:'`.html',p:83},
{t:M,n:'entityIsPersistent',u:'#`(org.hibernate.event.PersistEvent, java.util.Map)',p:1},
{t:M,n:'entityIsTransient',u:'#`(org.hibernate.event.PersistEvent, java.util.Map)',p:2},
{t:M,n:'getAssumedUnsaved',u:'#`()',p:3},
{t:M,n:'getCascadeAction',u:'#`()',p:4},
{t:M,n:'onPersist',u:'#`(org.hibernate.event.PersistEvent)',p:5},
{t:C,n:'DefaultPersistOnFlushEventListener',c:'`.html',p:89},
{t:M,n:'getCascadeAction',u:'#`()',p:1},
{t:C,n:'DefaultPostLoadEventListener',c:'`.html',p:91},
{t:M,n:'onPostLoad',u:'#`(org.hibernate.event.PostLoadEvent)',p:1},
{t:C,n:'DefaultPreLoadEventListener',c:'`.html',p:93},
{t:M,n:'onPreLoad',u:'#`(org.hibernate.event.PreLoadEvent)',p:1},
{t:C,n:'DefaultRefreshEventListener',c:'`.html',p:95},
{t:M,n:'onRefresh',u:'#`(org.hibernate.event.RefreshEvent)',p:1},
{t:C,n:'DefaultReplicateEventListener',c:'`.html',p:97},
{t:M,n:'getCascadeAction',u:'#`()',p:1},
{t:M,n:'isVersionIncrementDisabled',u:'#`()',p:2},
{t:M,n:'onReplicate',u:'#`(org.hibernate.event.ReplicateEvent)',p:3},
{t:M,n:'substituteValuesIfNecessary',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object[], org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'visitCollectionsBeforeSave',u:'#`(java.io.Serializable, java.lang.Object[], org.hibernate.type.Type[], org.hibernate.event.EventSource)',p:5},
{t:C,n:'DefaultSaveEventListener',c:'`.html',p:103},
{t:M,n:'performSaveOrUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:1},
{t:M,n:'reassociateIfUninitializedProxy',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'saveWithGeneratedOrRequestedId',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:3},
{t:C,n:'DefaultSaveOrUpdateCopyEventListener',c:'`.html',p:107},
{t:M,n:'getCascadeAction',u:'#`()',p:1},
{t:C,n:'DefaultSaveOrUpdateEventListener',c:'`.html',p:109},
{t:M,n:'entityIsDetached',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:1},
{t:M,n:'entityIsPersistent',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:2},
{t:M,n:'entityIsTransient',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:3},
{t:M,n:'getCascadeAction',u:'#`()',p:4},
{t:M,n:'getUpdateId',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, java.io.Serializable, org.hibernate.EntityMode)',p:5},
{t:M,n:'invokeUpdateLifecycle',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.event.EventSource)',p:6},
{t:M,n:'onSaveOrUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:7},
{t:M,n:'performSaveOrUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:8},
{t:M,n:'performUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent, java.lang.Object, org.hibernate.persister.entity.EntityPersister)',p:9},
{t:M,n:'reassociateIfUninitializedProxy',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'saveWithGeneratedOrRequestedId',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:11},
{t:C,n:'DefaultUpdateEventListener',c:'`.html',p:121},
{t:M,n:'getUpdateId',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, java.io.Serializable, org.hibernate.EntityMode)',p:1},
{t:M,n:'performSaveOrUpdate',u:'#`(org.hibernate.event.SaveOrUpdateEvent)',p:2},
{t:C,n:'DirtyCollectionSearchVisitor',u:'`.html',p:124},
{t:C,n:'EvictVisitor',c:'`.html',p:125},
{t:M,n:'evictCollection',u:'#`(java.lang.Object, org.hibernate.type.CollectionType)',p:1},
{t:C,n:'FlushVisitor',u:'`.html',p:127},
{t:C,n:'OnLockVisitor',u:'`.html',p:128},
{t:C,n:'OnReplicateVisitor',u:'`.html',p:129},
{t:C,n:'OnUpdateVisitor',u:'`.html',p:130},
{t:C,n:'ProxyVisitor',c:'`.html',p:131},
{t:M,n:'isOwnerUnchanged',u:'#`(org.hibernate.collection.PersistentCollection, org.hibernate.persister.collection.CollectionPersister, java.io.Serializable)',p:1},
{t:M,n:'reattachCollection',u:'#`(org.hibernate.collection.PersistentCollection, org.hibernate.type.CollectionType)',p:2},
{t:C,n:'ReattachVisitor',c:'`.html',p:134},
{t:M,n:'removeCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, org.hibernate.event.EventSource)',p:1},
{t:C,n:'WrapVisitor',u:'`.html',p:136},
{t:P,n:'org.hibernate.id',u:'package-summary.html',c:'rg/hibernate/id/',p:2972},
{t:I,n:'Configurable',c:'`.html',p:1},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:1},
{t:I,n:'IdentifierGenerator',c:'`.html',p:3},
{t:O,n:'ENTITY_NAME',u:'#`',p:1},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:I,n:'PersistentIdentifierGenerator',c:'`.html',p:6},
{t:O,n:'CATALOG',u:'#`',p:1},
{t:O,n:'PK',u:'#`',p:2},
{t:O,n:'SCHEMA',u:'#`',p:3},
{t:O,n:'SQL',u:'#`',p:4},
{t:O,n:'TABLE',u:'#`',p:5},
{t:O,n:'TABLES',u:'#`',p:6},
{t:M,n:'generatorKey',u:'#`()',p:7},
{t:M,n:'sqlCreateStrings',u:'#`(org.hibernate.dialect.Dialect)',p:8},
{t:M,n:'sqlDropStrings',u:'#`(org.hibernate.dialect.Dialect)',p:9},
{t:I,n:'PostInsertIdentifierGenerator',c:'`.html',p:16},
{t:M,n:'getGenerated',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:1},
{t:I,n:'PostInsertIdentityPersister',c:'`.html',p:18},
{t:M,n:'getIdentitySelectString',u:'#`()',p:1},
{t:M,n:'getRootTableKeyColumnNames',u:'#`()',p:2},
{t:M,n:'getSelectByUniqueKeyString',u:'#`(java.lang.String)',p:3},
{t:C,n:'AbstractPostInsertGenerator',c:'`.html',p:22},
{t:M,n:'bindParameters',u:'#`(org.hibernate.engine.SessionImplementor, java.sql.PreparedStatement, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:1},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:M,n:'getGenerated',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:3},
{t:M,n:'getResult',u:'#`(org.hibernate.engine.SessionImplementor, java.sql.ResultSet, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:4},
{t:M,n:'getSQL',u:'#`(org.hibernate.id.PostInsertIdentityPersister)',p:5},
{t:C,n:'AbstractUUIDGenerator',c:'`.html',p:28},
{t:M,n:'getCount',u:'#`()',p:1},
{t:M,n:'getHiTime',u:'#`()',p:2},
{t:M,n:'getIP',u:'#`()',p:3},
{t:M,n:'getJVM',u:'#`()',p:4},
{t:M,n:'getLoTime',u:'#`()',p:5},
{t:C,n:'Assigned',c:'`.html',p:34},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:C,n:'ForeignGenerator',c:'`.html',p:37},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:C,n:'GUIDGenerator',c:'`.html',p:40},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:C,n:'IdentifierGeneratorFactory',c:'`.html',p:42},
{t:O,n:'POST_INSERT_INDICATOR',u:'#`',p:1},
{t:O,n:'SHORT_CIRCUIT_INDICATOR',u:'#`',p:2},
{t:M,n:'create',u:'#`(java.lang.String, org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:3},
{t:M,n:'createNumber',u:'#`(long, java.lang.Class)',p:4},
{t:M,n:'get',u:'#`(java.sql.ResultSet, org.hibernate.type.Type)',p:5},
{t:M,n:'getGeneratedIdentity',u:'#`(java.sql.ResultSet, org.hibernate.type.Type)',p:6},
{t:M,n:'getIdentifierGeneratorClass',u:'#`(java.lang.String, org.hibernate.dialect.Dialect)',p:7},
{t:C,n:'IdentityGenerator',c:'`.html',p:50},
{t:M,n:'getResult',u:'#`(org.hibernate.engine.SessionImplementor, java.sql.ResultSet, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:1},
{t:M,n:'getSQL',u:'#`(org.hibernate.id.PostInsertIdentityPersister)',p:2},
{t:C,n:'IncrementGenerator',c:'`.html',p:53},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:C,n:'MultipleHiLoPerTableGenerator',c:'`.html',p:56},
{t:O,n:'DEFAULT_TABLE',u:'#`',p:1},
{t:O,n:'ID_TABLE',u:'#`',p:2},
{t:O,n:'MAX_LO',u:'#`',p:3},
{t:O,n:'PK_COLUMN_NAME',u:'#`',p:4},
{t:O,n:'PK_LENGTH_NAME',u:'#`',p:5},
{t:O,n:'PK_VALUE_NAME',u:'#`',p:6},
{t:O,n:'VALUE_COLUMN_NAME',u:'#`',p:7},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:8},
{t:M,n:'doWorkInCurrentTransaction',u:'#`(java.sql.Connection, java.lang.String)',p:9},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:10},
{t:M,n:'generatorKey',u:'#`()',p:11},
{t:M,n:'sqlCreateStrings',u:'#`(org.hibernate.dialect.Dialect)',p:12},
{t:M,n:'sqlDropStrings',u:'#`(org.hibernate.dialect.Dialect)',p:13},
{t:C,n:'SelectGenerator',c:'`.html',p:70},
{t:M,n:'bindParameters',u:'#`(org.hibernate.engine.SessionImplementor, java.sql.PreparedStatement, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:1},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'getResult',u:'#`(org.hibernate.engine.SessionImplementor, java.sql.ResultSet, java.lang.Object, org.hibernate.id.PostInsertIdentityPersister)',p:3},
{t:M,n:'getSQL',u:'#`(org.hibernate.id.PostInsertIdentityPersister)',p:4},
{t:C,n:'SequenceGenerator',c:'`.html',p:75},
{t:O,n:'PARAMETERS',u:'#`',p:1},
{t:O,n:'SEQUENCE',u:'#`',p:2},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:3},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:4},
{t:M,n:'generatorKey',u:'#`()',p:5},
{t:M,n:'sqlCreateStrings',u:'#`(org.hibernate.dialect.Dialect)',p:6},
{t:M,n:'sqlDropStrings',u:'#`(org.hibernate.dialect.Dialect)',p:7},
{t:C,n:'SequenceHiLoGenerator',c:'`.html',p:83},
{t:O,n:'MAX_LO',u:'#`',p:1},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'TableGenerator',c:'`.html',p:87},
{t:O,n:'COLUMN',u:'#`',p:1},
{t:O,n:'DEFAULT_COLUMN_NAME',u:'#`',p:2},
{t:O,n:'DEFAULT_TABLE_NAME',u:'#`',p:3},
{t:O,n:'TABLE',u:'#`',p:4},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:5},
{t:M,n:'doWorkInCurrentTransaction',u:'#`(java.sql.Connection, java.lang.String)',p:6},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:7},
{t:M,n:'generatorKey',u:'#`()',p:8},
{t:M,n:'sqlCreateStrings',u:'#`(org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'sqlDropStrings',u:'#`(org.hibernate.dialect.Dialect)',p:10},
{t:C,n:'TableHiLoGenerator',c:'`.html',p:98},
{t:O,n:'MAX_LO',u:'#`',p:1},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'UUIDHexGenerator',c:'`.html',p:102},
{t:M,n:'configure',u:'#`(org.hibernate.type.Type, java.util.Properties, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'format',u:'#`(int)',p:2},
{t:M,n:'generate',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'main',u:'#`(java.lang.String[])',p:4},
{t:C,n:'IdentifierGenerationException',u:'`.html',p:107},
{t:P,n:'org.hibernate.jdbc',u:'package-summary.html',c:'rg/hibernate/jdbc/',p:3080},
{t:I,n:'Batcher',c:'`.html',p:1},
{t:M,n:'abortBatch',u:'#`(java.sql.SQLException)',p:1},
{t:M,n:'addToBatch',u:'#`(int)',p:2},
{t:M,n:'cancelLastQuery',u:'#`()',p:3},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:4},
{t:M,n:'closeQueryStatement',u:'#`(java.sql.PreparedStatement, java.sql.ResultSet)',p:5},
{t:M,n:'closeStatement',u:'#`(java.sql.PreparedStatement)',p:6},
{t:M,n:'closeStatements',u:'#`()',p:7},
{t:M,n:'executeBatch',u:'#`()',p:8},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement, org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'hasOpenResources',u:'#`()',p:10},
{t:M,n:'openConnection',u:'#`()',p:11},
{t:M,n:'openResourceStatsAsString',u:'#`()',p:12},
{t:M,n:'prepareBatchCallableStatement',u:'#`(java.lang.String)',p:13},
{t:M,n:'prepareBatchStatement',u:'#`(java.lang.String)',p:14},
{t:M,n:'prepareCallableQueryStatement',u:'#`(java.lang.String, boolean, org.hibernate.ScrollMode)',p:15},
{t:M,n:'prepareCallableStatement',u:'#`(java.lang.String)',p:16},
{t:M,n:'prepareQueryStatement',u:'#`(java.lang.String, boolean, org.hibernate.ScrollMode)',p:17},
{t:M,n:'prepareSelectStatement',u:'#`(java.lang.String)',p:18},
{t:M,n:'prepareStatement',u:'#`(java.lang.String)',p:19},
{t:M,n:'setTransactionTimeout',u:'#`(int)',p:20},
{t:M,n:'unsetTransactionTimeout',u:'#`()',p:21},
{t:I,n:'BatcherFactory',c:'`.html',p:23},
{t:M,n:'createBatcher',u:'#`(org.hibernate.jdbc.ConnectionManager, org.hibernate.Interceptor)',p:1},
{t:C,n:'AbstractBatcher',c:'`.html',p:25},
{t:O,n:'log',u:'#`',p:1},
{t:O,n:'SQL_LOG',u:'#`',p:2},
{t:M,n:'abortBatch',u:'#`(java.sql.SQLException)',p:3},
{t:M,n:'cancelLastQuery',u:'#`()',p:4},
{t:M,n:'closeConnection',u:'#`(java.sql.Connection)',p:5},
{t:M,n:'closeQueryStatement',u:'#`(java.sql.PreparedStatement, java.sql.ResultSet)',p:6},
{t:M,n:'closeStatement',u:'#`(java.sql.PreparedStatement)',p:7},
{t:M,n:'closeStatements',u:'#`()',p:8},
{t:M,n:'doExecuteBatch',u:'#`(java.sql.PreparedStatement)',p:9},
{t:M,n:'executeBatch',u:'#`()',p:10},
{t:M,n:'getFactory',u:'#`()',p:11},
{t:M,n:'getResultSet',u:'#`(java.sql.CallableStatement, org.hibernate.dialect.Dialect)',p:12},
{t:M,n:'getStatement',u:'#`()',p:13},
{t:M,n:'hasOpenResources',u:'#`()',p:14},
{t:M,n:'openConnection',u:'#`()',p:15},
{t:M,n:'openResourceStatsAsString',u:'#`()',p:16},
{t:M,n:'prepareBatchCallableStatement',u:'#`(java.lang.String)',p:17},
{t:M,n:'prepareBatchStatement',u:'#`(java.lang.String)',p:18},
{t:M,n:'prepareCallableQueryStatement',u:'#`(java.lang.String, boolean, org.hibernate.ScrollMode)',p:19},
{t:M,n:'prepareCallableStatement',u:'#`(java.lang.String)',p:20},
{t:M,n:'prepareQueryStatement',u:'#`(java.lang.String, boolean, org.hibernate.ScrollMode)',p:21},
{t:M,n:'prepareSelectStatement',u:'#`(java.lang.String)',p:22},
{t:M,n:'prepareStatement',u:'#`(java.lang.String)',p:23},
{t:M,n:'setTransactionTimeout',u:'#`(int)',p:24},
{t:M,n:'unsetTransactionTimeout',u:'#`()',p:25},
{t:C,n:'BatchingBatcher',c:'`.html',p:51},
{t:M,n:'addToBatch',u:'#`(int)',p:1},
{t:M,n:'doExecuteBatch',u:'#`(java.sql.PreparedStatement)',p:2},
{t:C,n:'BatchingBatcherFactory',c:'`.html',p:54},
{t:M,n:'createBatcher',u:'#`(org.hibernate.jdbc.ConnectionManager, org.hibernate.Interceptor)',p:1},
{t:C,n:'BorrowedConnectionProxy',c:'`.html',p:56},
{t:M,n:'generateProxy',u:'#`(org.hibernate.jdbc.JDBCContext)',p:1},
{t:M,n:'invoke',u:'#`(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])',p:2},
{t:C,n:'ColumnNameCache',c:'`.html',p:59},
{t:M,n:'getIndexForColumnName',u:'#`(java.lang.String, org.hibernate.jdbc.ResultSetWrapper)',p:1},
{t:C,n:'ConnectionManager',c:'`.html',p:61},
{t:M,n:'afterStatement',u:'#`()',p:1},
{t:M,n:'afterTransaction',u:'#`()',p:2},
{t:M,n:'close',u:'#`()',p:3},
{t:M,n:'getBatcher',u:'#`()',p:4},
{t:M,n:'getConnection',u:'#`()',p:5},
{t:M,n:'getFactory',u:'#`()',p:6},
{t:M,n:'isAggressiveRelease',u:'#`()',p:7},
{t:M,n:'isAutoCommit',u:'#`()',p:8},
{t:M,n:'isCurrentlyConnected',u:'#`()',p:9},
{t:M,n:'isReadyForSerialization',u:'#`()',p:10},
{t:M,n:'isSuppliedConnection',u:'#`()',p:11},
{t:M,n:'manualDisconnect',u:'#`()',p:12},
{t:M,n:'manualReconnect',u:'#`()',p:13},
{t:C,n:'JDBCContext',c:'`.html',p:75},
{t:M,n:'afterNontransactionalQuery',u:'#`(boolean)',p:1},
{t:M,n:'afterTransactionBegin',u:'#`(org.hibernate.Transaction)',p:2},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean, org.hibernate.Transaction)',p:3},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:4},
{t:M,n:'connection',u:'#`()',p:5},
{t:M,n:'connectionCleanedUp',u:'#`()',p:6},
{t:M,n:'connectionOpened',u:'#`()',p:7},
{t:M,n:'getConnectionManager',u:'#`()',p:8},
{t:M,n:'getFactory',u:'#`()',p:9},
{t:M,n:'getTransaction',u:'#`()',p:10},
{t:M,n:'isTransactionInProgress',u:'#`()',p:11},
{t:M,n:'registerCallbackIfNecessary',u:'#`()',p:12},
{t:M,n:'registerSynchronizationIfPossible',u:'#`()',p:13},
{t:M,n:'userConnection',u:'#`()',p:14},
{t:C,n:'NonBatchingBatcher',c:'`.html',p:90},
{t:M,n:'addToBatch',u:'#`(int)',p:1},
{t:M,n:'doExecuteBatch',u:'#`(java.sql.PreparedStatement)',p:2},
{t:C,n:'NonBatchingBatcherFactory',c:'`.html',p:93},
{t:M,n:'createBatcher',u:'#`(org.hibernate.jdbc.ConnectionManager, org.hibernate.Interceptor)',p:1},
{t:C,n:'ResultSetWrapper',c:'`.html',p:95},
{t:M,n:'absolute',u:'#`(int)',p:1},
{t:M,n:'afterLast',u:'#`()',p:2},
{t:M,n:'beforeFirst',u:'#`()',p:3},
{t:M,n:'cancelRowUpdates',u:'#`()',p:4},
{t:M,n:'clearWarnings',u:'#`()',p:5},
{t:M,n:'close',u:'#`()',p:6},
{t:M,n:'deleteRow',u:'#`()',p:7},
{t:M,n:'findColumn',u:'#`(java.lang.String)',p:8},
{t:M,n:'first',u:'#`()',p:9},
{t:M,n:'getArray',u:'#`(int)',p:10},
{t:M,n:'getAsciiStream',u:'#`(int)',p:11},
{t:M,n:'getBigDecimal',u:'#`(int)',p:12},
{t:M,n:'getBinaryStream',u:'#`(int)',p:13},
{t:M,n:'getBlob',u:'#`(int)',p:14},
{t:M,n:'getBoolean',u:'#`(int)',p:15},
{t:M,n:'getByte',u:'#`(int)',p:16},
{t:M,n:'getBytes',u:'#`(int)',p:17},
{t:M,n:'getCharacterStream',u:'#`(int)',p:18},
{t:M,n:'getClob',u:'#`(int)',p:19},
{t:M,n:'getConcurrency',u:'#`()',p:20},
{t:M,n:'getCursorName',u:'#`()',p:21},
{t:M,n:'getDate',u:'#`(int)',p:22},
{t:M,n:'getDouble',u:'#`(int)',p:23},
{t:M,n:'getFetchDirection',u:'#`()',p:24},
{t:M,n:'getFetchSize',u:'#`()',p:25},
{t:M,n:'getFloat',u:'#`(int)',p:26},
{t:M,n:'getInt',u:'#`(int)',p:27},
{t:M,n:'getLong',u:'#`(int)',p:28},
{t:M,n:'getMetaData',u:'#`()',p:29},
{t:M,n:'getObject',u:'#`(int)',p:30},
{t:M,n:'getRef',u:'#`(int)',p:31},
{t:M,n:'getRow',u:'#`()',p:32},
{t:M,n:'getShort',u:'#`(int)',p:33},
{t:M,n:'getStatement',u:'#`()',p:34},
{t:M,n:'getString',u:'#`(int)',p:35},
{t:M,n:'getTime',u:'#`(int)',p:36},
{t:M,n:'getTimestamp',u:'#`(int)',p:37},
{t:M,n:'getType',u:'#`()',p:38},
{t:M,n:'getUnicodeStream',u:'#`(int)',p:39},
{t:M,n:'getURL',u:'#`(int)',p:40},
{t:M,n:'getWarnings',u:'#`()',p:41},
{t:M,n:'insertRow',u:'#`()',p:42},
{t:M,n:'isAfterLast',u:'#`()',p:43},
{t:M,n:'isBeforeFirst',u:'#`()',p:44},
{t:M,n:'isFirst',u:'#`()',p:45},
{t:M,n:'isLast',u:'#`()',p:46},
{t:M,n:'last',u:'#`()',p:47},
{t:M,n:'moveToCurrentRow',u:'#`()',p:48},
{t:M,n:'moveToInsertRow',u:'#`()',p:49},
{t:M,n:'next',u:'#`()',p:50},
{t:M,n:'previous',u:'#`()',p:51},
{t:M,n:'refreshRow',u:'#`()',p:52},
{t:M,n:'relative',u:'#`(int)',p:53},
{t:M,n:'rowDeleted',u:'#`()',p:54},
{t:M,n:'rowInserted',u:'#`()',p:55},
{t:M,n:'rowUpdated',u:'#`()',p:56},
{t:M,n:'setFetchDirection',u:'#`(int)',p:57},
{t:M,n:'setFetchSize',u:'#`(int)',p:58},
{t:M,n:'updateArray',u:'#`(int, java.sql.Array)',p:59},
{t:M,n:'updateAsciiStream',u:'#`(int, java.io.InputStream, int)',p:60},
{t:M,n:'updateBigDecimal',u:'#`(int, java.math.BigDecimal)',p:61},
{t:M,n:'updateBinaryStream',u:'#`(int, java.io.InputStream, int)',p:62},
{t:M,n:'updateBlob',u:'#`(int, java.sql.Blob)',p:63},
{t:M,n:'updateBoolean',u:'#`(int, boolean)',p:64},
{t:M,n:'updateByte',u:'#`(int, byte)',p:65},
{t:M,n:'updateBytes',u:'#`(int, byte[])',p:66},
{t:M,n:'updateCharacterStream',u:'#`(int, java.io.Reader, int)',p:67},
{t:M,n:'updateClob',u:'#`(int, java.sql.Clob)',p:68},
{t:M,n:'updateDate',u:'#`(int, java.sql.Date)',p:69},
{t:M,n:'updateDouble',u:'#`(int, double)',p:70},
{t:M,n:'updateFloat',u:'#`(int, float)',p:71},
{t:M,n:'updateInt',u:'#`(int, int)',p:72},
{t:M,n:'updateLong',u:'#`(int, long)',p:73},
{t:M,n:'updateNull',u:'#`(int)',p:74},
{t:M,n:'updateObject',u:'#`(int, java.lang.Object)',p:75},
{t:M,n:'updateRef',u:'#`(int, java.sql.Ref)',p:76},
{t:M,n:'updateRow',u:'#`()',p:77},
{t:M,n:'updateShort',u:'#`(int, short)',p:78},
{t:M,n:'updateString',u:'#`(int, java.lang.String)',p:79},
{t:M,n:'updateTime',u:'#`(int, java.sql.Time)',p:80},
{t:M,n:'updateTimestamp',u:'#`(int, java.sql.Timestamp)',p:81},
{t:M,n:'wasNull',u:'#`()',p:82},
{t:P,n:'org.hibernate.loader',u:'package-summary.html',c:'rg/hibernate/loader/',p:3258},
{t:I,n:'CollectionAliases',c:'`.html',p:1},
{t:M,n:'getSuffix',u:'#`()',p:1},
{t:M,n:'getSuffixedElementAliases',u:'#`()',p:2},
{t:M,n:'getSuffixedIdentifierAlias',u:'#`()',p:3},
{t:M,n:'getSuffixedIndexAliases',u:'#`()',p:4},
{t:M,n:'getSuffixedKeyAliases',u:'#`()',p:5},
{t:I,n:'EntityAliases',c:'`.html',p:7},
{t:M,n:'getRowIdAlias',u:'#`()',p:1},
{t:M,n:'getSuffixedDiscriminatorAlias',u:'#`()',p:2},
{t:M,n:'getSuffixedKeyAliases',u:'#`()',p:3},
{t:M,n:'getSuffixedPropertyAliases',u:'#`()',p:4},
{t:M,n:'getSuffixedVersionAliases',u:'#`()',p:5},
{t:C,n:'AbstractEntityJoinWalker',c:'`.html',p:13},
{t:M,n:'getAlias',u:'#`()',p:1},
{t:M,n:'getComment',u:'#`()',p:2},
{t:M,n:'getPersister',u:'#`()',p:3},
{t:M,n:'getWhereFragment',u:'#`()',p:4},
{t:M,n:'initAll',u:'#`(java.lang.String, java.lang.String, org.hibernate.LockMode)',p:5},
{t:M,n:'initProjection',u:'#`(java.lang.String, java.lang.String, java.lang.String, java.lang.String, org.hibernate.LockMode)',p:6},
{t:M,n:'isJoinedFetchEnabled',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, org.hibernate.engine.CascadeStyle)',p:7},
{t:M,n:'toString',u:'#`()',p:8},
{t:C,n:'BasicLoader',c:'`.html',p:22},
{t:O,n:'NO_SUFFIX',u:'#`',p:1},
{t:M,n:'generateSuffixes',u:'#`(int)',p:2},
{t:M,n:'getCollectionAliases',u:'#`()',p:3},
{t:M,n:'getCollectionSuffixes',u:'#`()',p:4},
{t:M,n:'getEntityAliases',u:'#`()',p:5},
{t:M,n:'getSuffixes',u:'#`()',p:6},
{t:M,n:'postInstantiate',u:'#`()',p:7},
{t:C,n:'ColumnEntityAliases',c:'`.html',p:30},
{t:M,n:'getDiscriminatorAlias',u:'#`(org.hibernate.persister.entity.Loadable, java.lang.String)',p:1},
{t:M,n:'getIdentifierAliases',u:'#`(org.hibernate.persister.entity.Loadable, java.lang.String)',p:2},
{t:M,n:'getPropertyAliases',u:'#`(org.hibernate.persister.entity.Loadable, int)',p:3},
{t:C,n:'DefaultEntityAliases',c:'`.html',p:34},
{t:M,n:'getDiscriminatorAlias',u:'#`(org.hibernate.persister.entity.Loadable, java.lang.String)',p:1},
{t:M,n:'getIdentifierAliases',u:'#`(org.hibernate.persister.entity.Loadable, java.lang.String)',p:2},
{t:M,n:'getPropertyAliases',u:'#`(org.hibernate.persister.entity.Loadable, int)',p:3},
{t:M,n:'getRowIdAlias',u:'#`()',p:4},
{t:M,n:'getSuffixedDiscriminatorAlias',u:'#`()',p:5},
{t:M,n:'getSuffixedKeyAliases',u:'#`()',p:6},
{t:M,n:'getSuffixedPropertyAliases',u:'#`()',p:7},
{t:M,n:'getSuffixedVersionAliases',u:'#`()',p:8},
{t:C,n:'GeneratedCollectionAliases',c:'`.html',p:43},
{t:M,n:'getSuffix',u:'#`()',p:1},
{t:M,n:'getSuffixedElementAliases',u:'#`()',p:2},
{t:M,n:'getSuffixedIdentifierAlias',u:'#`()',p:3},
{t:M,n:'getSuffixedIndexAliases',u:'#`()',p:4},
{t:M,n:'getSuffixedKeyAliases',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'JoinWalker',c:'`.html',p:50},
{t:O,n:'aliases',u:'#`',p:1},
{t:O,n:'associations',u:'#`',p:2},
{t:O,n:'collectionOwners',u:'#`',p:3},
{t:O,n:'collectionPersisters',u:'#`',p:4},
{t:O,n:'collectionSuffixes',u:'#`',p:5},
{t:O,n:'lockModeArray',u:'#`',p:6},
{t:O,n:'ownerAssociationTypes',u:'#`',p:7},
{t:O,n:'owners',u:'#`',p:8},
{t:O,n:'persisters',u:'#`',p:9},
{t:O,n:'sql',u:'#`',p:10},
{t:O,n:'suffixes',u:'#`',p:11},
{t:M,n:'countCollectionPersisters',u:'#`(java.util.List)',p:12},
{t:M,n:'countEntityPersisters',u:'#`(java.util.List)',p:13},
{t:M,n:'generateRootAlias',u:'#`(java.lang.String)',p:14},
{t:M,n:'generateTableAlias',u:'#`(int, java.lang.String, org.hibernate.persister.entity.Joinable)',p:15},
{t:M,n:'getAliases',u:'#`()',p:16},
{t:M,n:'getCollectionOwners',u:'#`()',p:17},
{t:M,n:'getCollectionPersisters',u:'#`()',p:18},
{t:M,n:'getCollectionSuffixes',u:'#`()',p:19},
{t:M,n:'getDialect',u:'#`()',p:20},
{t:M,n:'getEnabledFilters',u:'#`()',p:21},
{t:M,n:'getFactory',u:'#`()',p:22},
{t:M,n:'getJoinType',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, java.lang.String, java.lang.String, java.lang.String[], boolean, int, org.hibernate.engine.CascadeStyle)',p:23},
{t:M,n:'getLockModeArray',u:'#`()',p:24},
{t:M,n:'getOwnerAssociationTypes',u:'#`()',p:25},
{t:M,n:'getOwners',u:'#`()',p:26},
{t:M,n:'getPersisters',u:'#`()',p:27},
{t:M,n:'getSQLString',u:'#`()',p:28},
{t:M,n:'getSuffixes',u:'#`()',p:29},
{t:M,n:'initPersisters',u:'#`(java.util.List, org.hibernate.LockMode)',p:30},
{t:M,n:'isDuplicateAssociation',u:'#`(java.lang.String, java.lang.String[])',p:31},
{t:M,n:'isJoinable',u:'#`(int, java.util.Set, java.lang.String, java.lang.String[], org.hibernate.type.AssociationType, int)',p:32},
{t:M,n:'isJoinedFetchEnabled',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, org.hibernate.engine.CascadeStyle)',p:33},
{t:M,n:'isJoinedFetchEnabledInMapping',u:'#`(org.hibernate.FetchMode, org.hibernate.type.AssociationType)',p:34},
{t:M,n:'isTooDeep',u:'#`(int)',p:35},
{t:M,n:'isTooManyCollections',u:'#`()',p:36},
{t:M,n:'mergeOuterJoins',u:'#`(java.util.List)',p:37},
{t:M,n:'orderBy',u:'#`(java.util.List)',p:38},
{t:M,n:'selectString',u:'#`(java.util.List)',p:39},
{t:M,n:'setAliases',u:'#`(java.lang.String[])',p:40},
{t:M,n:'setCollectionOwners',u:'#`(int[])',p:41},
{t:M,n:'setCollectionPersisters',u:'#`(org.hibernate.persister.collection.CollectionPersister[])',p:42},
{t:M,n:'setCollectionSuffixes',u:'#`(java.lang.String[])',p:43},
{t:M,n:'setLockModeArray',u:'#`(org.hibernate.LockMode[])',p:44},
{t:M,n:'setOwnerAssociationTypes',u:'#`(org.hibernate.type.EntityType[])',p:45},
{t:M,n:'setOwners',u:'#`(int[])',p:46},
{t:M,n:'setPersisters',u:'#`(org.hibernate.persister.entity.Loadable[])',p:47},
{t:M,n:'setSql',u:'#`(java.lang.String)',p:48},
{t:M,n:'setSuffixes',u:'#`(java.lang.String[])',p:49},
{t:M,n:'walkCollectionTree',u:'#`(org.hibernate.persister.collection.QueryableCollection, java.lang.String)',p:50},
{t:M,n:'walkEntityTree',u:'#`(org.hibernate.persister.entity.OuterJoinLoadable, java.lang.String)',p:51},
{t:M,n:'whereString',u:'#`(java.lang.String, java.lang.String[], int)',p:52},
{t:C,n:'Loader',c:'`.html',p:103},
{t:M,n:'applyLocks',u:'#`(java.lang.String, java.util.Map, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'autoDiscoverTypes',u:'#`(java.sql.ResultSet)',p:2},
{t:M,n:'bindNamedParameters',u:'#`(java.sql.PreparedStatement, java.util.Map, int, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'bindPositionalParameters',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, int, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'checkScrollability',u:'#`()',p:5},
{t:M,n:'doList',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:6},
{t:M,n:'getAliases',u:'#`()',p:7},
{t:M,n:'getCollectionAliases',u:'#`()',p:8},
{t:M,n:'getCollectionOwners',u:'#`()',p:9},
{t:M,n:'getCollectionPersisters',u:'#`()',p:10},
{t:M,n:'getEntityAliases',u:'#`()',p:11},
{t:M,n:'getEntityEagerPropertyFetches',u:'#`()',p:12},
{t:M,n:'getEntityPersisters',u:'#`()',p:13},
{t:M,n:'getFactory',u:'#`()',p:14},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:15},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:16},
{t:M,n:'getOwnerAssociationTypes',u:'#`()',p:17},
{t:M,n:'getOwners',u:'#`()',p:18},
{t:M,n:'getQueryIdentifier',u:'#`()',p:19},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:20},
{t:M,n:'getResultList',u:'#`(java.util.List)',p:21},
{t:M,n:'getResultSet',u:'#`(java.sql.PreparedStatement, boolean, boolean, org.hibernate.engine.RowSelection, org.hibernate.engine.SessionImplementor)',p:22},
{t:M,n:'getSQLString',u:'#`()',p:23},
{t:M,n:'hasSubselectLoadableCollections',u:'#`()',p:24},
{t:M,n:'isSingleRowLoader',u:'#`()',p:25},
{t:M,n:'isSubselectLoadingEnabled',u:'#`()',p:26},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters, java.util.Set, org.hibernate.type.Type[])',p:27},
{t:M,n:'loadCollection',u:'#`(org.hibernate.engine.SessionImplementor, java.io.Serializable, org.hibernate.type.Type)',p:28},
{t:M,n:'loadCollectionBatch',u:'#`(org.hibernate.engine.SessionImplementor, java.io.Serializable[], org.hibernate.type.Type)',p:29},
{t:M,n:'loadCollectionSubselect',u:'#`(org.hibernate.engine.SessionImplementor, java.io.Serializable[], java.lang.Object[], org.hibernate.type.Type[], java.util.Map, org.hibernate.type.Type)',p:30},
{t:M,n:'loadEntity',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object, java.lang.Object, org.hibernate.type.Type, org.hibernate.type.Type, org.hibernate.persister.entity.EntityPersister)',p:31},
{t:M,n:'loadEntityBatch',u:'#`(org.hibernate.engine.SessionImplementor, java.io.Serializable[], org.hibernate.type.Type, java.lang.Object, java.lang.String, java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:32},
{t:M,n:'loadSequentialRowsForward',u:'#`(java.sql.ResultSet, org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters, boolean)',p:33},
{t:M,n:'loadSequentialRowsReverse',u:'#`(java.sql.ResultSet, org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters, boolean, boolean)',p:34},
{t:M,n:'loadSingleRow',u:'#`(java.sql.ResultSet, org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters, boolean)',p:35},
{t:M,n:'needsFetchingScroll',u:'#`()',p:36},
{t:M,n:'postInstantiate',u:'#`()',p:37},
{t:M,n:'prepareQueryStatement',u:'#`(org.hibernate.engine.QueryParameters, boolean, org.hibernate.engine.SessionImplementor)',p:38},
{t:M,n:'preprocessSQL',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters, org.hibernate.dialect.Dialect)',p:39},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.type.Type[], org.hibernate.hql.HolderInstantiator, org.hibernate.engine.SessionImplementor)',p:40},
{t:M,n:'toString',u:'#`()',p:41},
{t:M,n:'upgradeLocks',u:'#`()',p:42},
{t:C,n:'OuterJoinableAssociation',c:'`.html',p:146},
{t:M,n:'addJoins',u:'#`(org.hibernate.sql.JoinFragment)',p:1},
{t:M,n:'addManyToManyJoin',u:'#`(org.hibernate.sql.JoinFragment, org.hibernate.persister.collection.QueryableCollection)',p:2},
{t:M,n:'getJoinable',u:'#`()',p:3},
{t:M,n:'getJoinableType',u:'#`()',p:4},
{t:M,n:'getJoinType',u:'#`()',p:5},
{t:M,n:'getOwner',u:'#`(java.util.List)',p:6},
{t:M,n:'getRHSAlias',u:'#`()',p:7},
{t:M,n:'getRHSUniqueKeyName',u:'#`()',p:8},
{t:M,n:'isCollection',u:'#`()',p:9},
{t:M,n:'isManyToManyWith',u:'#`(org.hibernate.loader.OuterJoinableAssociation)',p:10},
{t:M,n:'validateJoin',u:'#`(java.lang.String)',p:11},
{t:C,n:'OuterJoinLoader',c:'`.html',p:158},
{t:O,n:'aliases',u:'#`',p:1},
{t:O,n:'collectionOwners',u:'#`',p:2},
{t:O,n:'collectionPersisters',u:'#`',p:3},
{t:O,n:'collectionSuffixes',u:'#`',p:4},
{t:O,n:'lockModeArray',u:'#`',p:5},
{t:O,n:'ownerAssociationTypes',u:'#`',p:6},
{t:O,n:'owners',u:'#`',p:7},
{t:O,n:'persisters',u:'#`',p:8},
{t:O,n:'sql',u:'#`',p:9},
{t:O,n:'suffixes',u:'#`',p:10},
{t:M,n:'getAliases',u:'#`()',p:11},
{t:M,n:'getCollectionOwners',u:'#`()',p:12},
{t:M,n:'getCollectionPersisters',u:'#`()',p:13},
{t:M,n:'getCollectionSuffixes',u:'#`()',p:14},
{t:M,n:'getDialect',u:'#`()',p:15},
{t:M,n:'getEnabledFilters',u:'#`()',p:16},
{t:M,n:'getEntityPersisters',u:'#`()',p:17},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:18},
{t:M,n:'getOwnerAssociationTypes',u:'#`()',p:19},
{t:M,n:'getOwners',u:'#`()',p:20},
{t:M,n:'getSQLString',u:'#`()',p:21},
{t:M,n:'getSuffixes',u:'#`()',p:22},
{t:M,n:'initFromWalker',u:'#`(org.hibernate.loader.JoinWalker)',p:23},
{t:P,n:'org.hibernate.loader.collection',u:'package-summary.html',c:'rg/hibernate/loader/collection/',p:3440},
{t:I,n:'CollectionInitializer',c:'`.html',p:1},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:C,n:'BasicCollectionJoinWalker',c:'`.html',p:3},
{t:M,n:'getJoinType',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, java.lang.String, java.util.Set, java.lang.String, java.lang.String[], boolean, int)',p:1},
{t:M,n:'toString',u:'#`()',p:2},
{t:C,n:'BasicCollectionLoader',u:'`.html',p:6},
{t:C,n:'BatchingCollectionInitializer',c:'`.html',p:7},
{t:M,n:'createBatchingCollectionInitializer',u:'#`(org.hibernate.persister.collection.QueryableCollection, int, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:1},
{t:M,n:'createBatchingOneToManyInitializer',u:'#`(org.hibernate.persister.collection.QueryableCollection, int, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:2},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:3},
{t:C,n:'CollectionJoinWalker',c:'`.html',p:11},
{t:M,n:'whereString',u:'#`(java.lang.String, java.lang.String[], java.lang.String, int)',p:1},
{t:C,n:'CollectionLoader',c:'`.html',p:13},
{t:M,n:'getKeyType',u:'#`()',p:1},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'isSubselectLoadingEnabled',u:'#`()',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'OneToManyJoinWalker',c:'`.html',p:18},
{t:M,n:'isDuplicateAssociation',u:'#`(java.lang.String, java.lang.String[])',p:1},
{t:M,n:'toString',u:'#`()',p:2},
{t:C,n:'OneToManyLoader',u:'`.html',p:21},
{t:C,n:'SubselectCollectionLoader',c:'`.html',p:22},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:1},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'SubselectOneToManyLoader',c:'`.html',p:25},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:1},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:P,n:'org.hibernate.loader.criteria',u:'package-summary.html',c:'rg/hibernate/loader/criteria/',p:3468},
{t:C,n:'CriteriaJoinWalker',c:'`.html',p:1},
{t:M,n:'generateRootAlias',u:'#`(java.lang.String)',p:1},
{t:M,n:'generateTableAlias',u:'#`(int, java.lang.String, org.hibernate.persister.entity.Joinable)',p:2},
{t:M,n:'getComment',u:'#`()',p:3},
{t:M,n:'getJoinType',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, java.lang.String, java.lang.String, java.lang.String[], boolean, int, org.hibernate.engine.CascadeStyle)',p:4},
{t:M,n:'getQuerySpaces',u:'#`()',p:5},
{t:M,n:'getResultTypes',u:'#`()',p:6},
{t:M,n:'getUserAliases',u:'#`()',p:7},
{t:M,n:'getWhereFragment',u:'#`()',p:8},
{t:C,n:'CriteriaLoader',c:'`.html',p:10},
{t:M,n:'applyLocks',u:'#`(java.lang.String, java.util.Map, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:2},
{t:M,n:'getQuerySpaces',u:'#`()',p:3},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'getResultList',u:'#`(java.util.List)',p:5},
{t:M,n:'isSubselectLoadingEnabled',u:'#`()',p:6},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.ScrollMode)',p:8},
{t:C,n:'CriteriaQueryTranslator',c:'`.html',p:19},
{t:O,n:'ROOT_SQL_ALIAS',u:'#`',p:1},
{t:M,n:'generateSQLAlias',u:'#`()',p:2},
{t:M,n:'getColumn',u:'#`(org.hibernate.Criteria, java.lang.String)',p:3},
{t:M,n:'getColumnsUsingProjection',u:'#`(org.hibernate.Criteria, java.lang.String)',p:4},
{t:M,n:'getCriteria',u:'#`(java.lang.String)',p:5},
{t:M,n:'getEntityName',u:'#`(org.hibernate.Criteria)',p:6},
{t:M,n:'getFactory',u:'#`()',p:7},
{t:M,n:'getGroupBy',u:'#`()',p:8},
{t:M,n:'getIdentifierColumns',u:'#`(org.hibernate.Criteria)',p:9},
{t:M,n:'getIdentifierType',u:'#`(org.hibernate.Criteria)',p:10},
{t:M,n:'getOrderBy',u:'#`()',p:11},
{t:M,n:'getProjectedAliases',u:'#`()',p:12},
{t:M,n:'getProjectedColumnAliases',u:'#`()',p:13},
{t:M,n:'getProjectedTypes',u:'#`()',p:14},
{t:M,n:'getPropertyName',u:'#`(java.lang.String)',p:15},
{t:M,n:'getQueryParameters',u:'#`()',p:16},
{t:M,n:'getQuerySpaces',u:'#`()',p:17},
{t:M,n:'getRootCriteria',u:'#`()',p:18},
{t:M,n:'getRootSQLALias',u:'#`()',p:19},
{t:M,n:'getSelect',u:'#`()',p:20},
{t:M,n:'getSQLAlias',u:'#`(org.hibernate.Criteria)',p:21},
{t:M,n:'getSQLAliasCount',u:'#`()',p:22},
{t:M,n:'getType',u:'#`(org.hibernate.Criteria, java.lang.String)',p:23},
{t:M,n:'getTypedIdentifierValue',u:'#`(org.hibernate.Criteria, java.lang.Object)',p:24},
{t:M,n:'getTypedValue',u:'#`(org.hibernate.Criteria, java.lang.String, java.lang.Object)',p:25},
{t:M,n:'getTypeUsingProjection',u:'#`(org.hibernate.Criteria, java.lang.String)',p:26},
{t:M,n:'getWhereCondition',u:'#`()',p:27},
{t:M,n:'hasProjection',u:'#`()',p:28},
{t:M,n:'isJoin',u:'#`(java.lang.String)',p:29},
{t:P,n:'org.hibernate.loader.custom',u:'package-summary.html',c:'rg/hibernate/loader/custom/',p:3517},
{t:I,n:'CustomQuery',c:'`.html',p:1},
{t:M,n:'getCollectionAliases',u:'#`()',p:1},
{t:M,n:'getCollectionOwner',u:'#`()',p:2},
{t:M,n:'getCollectionRoles',u:'#`()',p:3},
{t:M,n:'getEntityAliases',u:'#`()',p:4},
{t:M,n:'getEntityNames',u:'#`()',p:5},
{t:M,n:'getEntityOwners',u:'#`()',p:6},
{t:M,n:'getLockModes',u:'#`()',p:7},
{t:M,n:'getNamedParameterBindPoints',u:'#`()',p:8},
{t:M,n:'getQuerySpaces',u:'#`()',p:9},
{t:M,n:'getScalarColumnAliases',u:'#`()',p:10},
{t:M,n:'getScalarTypes',u:'#`()',p:11},
{t:M,n:'getSQL',u:'#`()',p:12},
{t:C,n:'ColumnCollectionAliases',c:'`.html',p:14},
{t:M,n:'getSuffix',u:'#`()',p:1},
{t:M,n:'getSuffixedElementAliases',u:'#`()',p:2},
{t:M,n:'getSuffixedIdentifierAlias',u:'#`()',p:3},
{t:M,n:'getSuffixedIndexAliases',u:'#`()',p:4},
{t:M,n:'getSuffixedKeyAliases',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'CustomLoader',c:'`.html',p:21},
{t:M,n:'autoDiscoverTypes',u:'#`(java.sql.ResultSet)',p:1},
{t:M,n:'getCollectionAliases',u:'#`()',p:2},
{t:M,n:'getCollectionOwners',u:'#`()',p:3},
{t:M,n:'getCollectionPersisters',u:'#`()',p:4},
{t:M,n:'getEntityAliases',u:'#`()',p:5},
{t:M,n:'getEntityPersisters',u:'#`()',p:6},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:7},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:8},
{t:M,n:'getOwners',u:'#`()',p:9},
{t:M,n:'getQueryIdentifier',u:'#`()',p:10},
{t:M,n:'getQuerySpaces',u:'#`()',p:11},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'getSQLString',u:'#`()',p:13},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:14},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:15},
{t:C,n:'SQLCustomQuery',c:'`.html',p:37},
{t:M,n:'getCollectionAliases',u:'#`()',p:1},
{t:M,n:'getCollectionOwner',u:'#`()',p:2},
{t:M,n:'getCollectionRoles',u:'#`()',p:3},
{t:M,n:'getEntityAliases',u:'#`()',p:4},
{t:M,n:'getEntityNames',u:'#`()',p:5},
{t:M,n:'getEntityOwners',u:'#`()',p:6},
{t:M,n:'getLockModes',u:'#`()',p:7},
{t:M,n:'getNamedParameterBindPoints',u:'#`()',p:8},
{t:M,n:'getQuerySpaces',u:'#`()',p:9},
{t:M,n:'getScalarColumnAliases',u:'#`()',p:10},
{t:M,n:'getScalarTypes',u:'#`()',p:11},
{t:M,n:'getSQL',u:'#`()',p:12},
{t:C,n:'SQLQueryCollectionReturn',c:'`.html',p:50},
{t:M,n:'getOwnerEntityName',u:'#`()',p:1},
{t:M,n:'getOwnerProperty',u:'#`()',p:2},
{t:C,n:'SQLQueryJoinReturn',c:'`.html',p:53},
{t:M,n:'getOwnerAlias',u:'#`()',p:1},
{t:M,n:'getOwnerProperty',u:'#`()',p:2},
{t:C,n:'SQLQueryParser',c:'`.html',p:56},
{t:M,n:'getNamedParameters',u:'#`()',p:1},
{t:M,n:'process',u:'#`()',p:2},
{t:M,n:'queryHasAliases',u:'#`()',p:3},
{t:C,n:'SQLQueryReturn',c:'`.html',p:60},
{t:O,n:'propertyResults',u:'#`',p:1},
{t:M,n:'getAlias',u:'#`()',p:2},
{t:M,n:'getLockMode',u:'#`()',p:3},
{t:M,n:'getPropertyResultsMap',u:'#`()',p:4},
{t:C,n:'SQLQueryReturnProcessor',c:'`.html',p:65},
{t:M,n:'getAlias2OwnerAlias',u:'#`()',p:1},
{t:M,n:'getAlias2Persister',u:'#`()',p:2},
{t:M,n:'getAlias2Return',u:'#`()',p:3},
{t:M,n:'getAliases',u:'#`()',p:4},
{t:M,n:'getCollectionAliases',u:'#`()',p:5},
{t:M,n:'getCollectionOwnerAliases',u:'#`()',p:6},
{t:M,n:'getCollectionPersisters',u:'#`()',p:7},
{t:M,n:'getCollectionPropertyResults',u:'#`()',p:8},
{t:M,n:'getLockModes',u:'#`()',p:9},
{t:M,n:'getPersisters',u:'#`()',p:10},
{t:M,n:'getPropertyResults',u:'#`()',p:11},
{t:M,n:'getScalarColumnAliases',u:'#`()',p:12},
{t:M,n:'getScalarTypes',u:'#`()',p:13},
{t:M,n:'process',u:'#`()',p:14},
{t:C,n:'SQLQueryRootReturn',c:'`.html',p:80},
{t:M,n:'getReturnEntityName',u:'#`()',p:1},
{t:C,n:'SQLQueryScalarReturn',c:'`.html',p:82},
{t:M,n:'getColumnAlias',u:'#`()',p:1},
{t:M,n:'getType',u:'#`()',p:2},
{t:P,n:'org.hibernate.loader.entity',u:'package-summary.html',c:'rg/hibernate/loader/entity/',p:3602},
{t:I,n:'UniqueEntityLoader',c:'`.html',p:1},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:C,n:'AbstractEntityLoader',c:'`.html',p:3},
{t:O,n:'entityName',u:'#`',p:1},
{t:O,n:'log',u:'#`',p:2},
{t:O,n:'persister',u:'#`',p:3},
{t:O,n:'uniqueKeyType',u:'#`',p:4},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'isSingleRowLoader',u:'#`()',p:6},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:7},
{t:C,n:'BatchingEntityLoader',c:'`.html',p:11},
{t:M,n:'createBatchingEntityLoader',u:'#`(org.hibernate.persister.entity.OuterJoinLoadable, int, org.hibernate.LockMode, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:1},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'CascadeEntityJoinWalker',c:'`.html',p:14},
{t:M,n:'getComment',u:'#`()',p:1},
{t:M,n:'isJoinedFetchEnabled',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, org.hibernate.engine.CascadeStyle)',p:2},
{t:M,n:'isTooManyCollections',u:'#`()',p:3},
{t:C,n:'CascadeEntityLoader',u:'`.html',p:18},
{t:C,n:'CollectionElementLoader',c:'`.html',p:19},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'isSingleRowLoader',u:'#`()',p:2},
{t:M,n:'loadElement',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object, java.lang.Object)',p:3},
{t:C,n:'EntityJoinWalker',c:'`.html',p:23},
{t:M,n:'getComment',u:'#`()',p:1},
{t:M,n:'isJoinedFetchEnabled',u:'#`(org.hibernate.type.AssociationType, org.hibernate.FetchMode, org.hibernate.engine.CascadeStyle)',p:2},
{t:C,n:'EntityLoader',c:'`.html',p:26},
{t:M,n:'isSingleRowLoader',u:'#`()',p:1},
{t:M,n:'loadByUniqueKey',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:P,n:'org.hibernate.loader.hql',u:'package-summary.html',c:'rg/hibernate/loader/hql/',p:3631},
{t:C,n:'QueryLoader',c:'`.html',p:1},
{t:M,n:'applyLocks',u:'#`(java.lang.String, java.util.Map, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'getAliases',u:'#`()',p:2},
{t:M,n:'getCollectionOwners',u:'#`()',p:3},
{t:M,n:'getCollectionPersisters',u:'#`()',p:4},
{t:M,n:'getCollectionSuffixes',u:'#`()',p:5},
{t:M,n:'getEntityEagerPropertyFetches',u:'#`()',p:6},
{t:M,n:'getEntityPersisters',u:'#`()',p:7},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:8},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:9},
{t:M,n:'getOwnerAssociationTypes',u:'#`()',p:10},
{t:M,n:'getOwners',u:'#`()',p:11},
{t:M,n:'getQueryIdentifier',u:'#`()',p:12},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:13},
{t:M,n:'getResultList',u:'#`(java.util.List)',p:14},
{t:M,n:'getSqlAliasSuffixes',u:'#`()',p:15},
{t:M,n:'getSQLString',u:'#`()',p:16},
{t:M,n:'getSuffixes',u:'#`()',p:17},
{t:M,n:'isSubselectLoadingEnabled',u:'#`()',p:18},
{t:M,n:'iterate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.event.EventSource)',p:19},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:20},
{t:M,n:'needsFetchingScroll',u:'#`()',p:21},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:22},
{t:M,n:'upgradeLocks',u:'#`()',p:23},
{t:M,n:'validateScrollability',u:'#`()',p:24},
{t:P,n:'org.hibernate.persister',u:'package-summary.html',c:'rg/hibernate/persister/',p:3657},
{t:C,n:'PersisterFactory',c:'`.html',p:1},
{t:M,n:'createClassPersister',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.cache.CacheConcurrencyStrategy, org.hibernate.engine.SessionFactoryImplementor, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'createCollectionPersister',u:'#`(org.hibernate.cfg.Configuration, org.hibernate.mapping.Collection, org.hibernate.cache.CacheConcurrencyStrategy, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:P,n:'org.hibernate.persister.collection',u:'package-summary.html',c:'rg/hibernate/persister/collection/',p:3661},
{t:I,n:'CollectionPersister',c:'`.html',p:1},
{t:M,n:'deleteRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'elementExists',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'getCache',u:'#`()',p:3},
{t:M,n:'getCacheEntryStructure',u:'#`()',p:4},
{t:M,n:'getCollectionMetadata',u:'#`()',p:5},
{t:M,n:'getCollectionSpaces',u:'#`()',p:6},
{t:M,n:'getCollectionType',u:'#`()',p:7},
{t:M,n:'getElementByIndex',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:8},
{t:M,n:'getElementClass',u:'#`()',p:9},
{t:M,n:'getElementColumnAliases',u:'#`(java.lang.String)',p:10},
{t:M,n:'getElementNodeName',u:'#`()',p:11},
{t:M,n:'getElementType',u:'#`()',p:12},
{t:M,n:'getFactory',u:'#`()',p:13},
{t:M,n:'getIdentifierColumnAlias',u:'#`(java.lang.String)',p:14},
{t:M,n:'getIdentifierGenerator',u:'#`()',p:15},
{t:M,n:'getIdentifierType',u:'#`()',p:16},
{t:M,n:'getIndexColumnAliases',u:'#`(java.lang.String)',p:17},
{t:M,n:'getIndexNodeName',u:'#`()',p:18},
{t:M,n:'getIndexType',u:'#`()',p:19},
{t:M,n:'getKeyColumnAliases',u:'#`(java.lang.String)',p:20},
{t:M,n:'getKeyType',u:'#`()',p:21},
{t:M,n:'getManyToManyFilterFragment',u:'#`(java.lang.String, java.util.Map)',p:22},
{t:M,n:'getNodeName',u:'#`()',p:23},
{t:M,n:'getOwnerEntityPersister',u:'#`()',p:24},
{t:M,n:'getRole',u:'#`()',p:25},
{t:M,n:'getSize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:26},
{t:M,n:'hasCache',u:'#`()',p:27},
{t:M,n:'hasIndex',u:'#`()',p:28},
{t:M,n:'hasOrdering',u:'#`()',p:29},
{t:M,n:'hasOrphanDelete',u:'#`()',p:30},
{t:M,n:'indexExists',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:32},
{t:M,n:'insertRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:33},
{t:M,n:'isAffectedByEnabledFilters',u:'#`(org.hibernate.engine.SessionImplementor)',p:34},
{t:M,n:'isArray',u:'#`()',p:35},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:36},
{t:M,n:'isExtraLazy',u:'#`()',p:37},
{t:M,n:'isInverse',u:'#`()',p:38},
{t:M,n:'isLazy',u:'#`()',p:39},
{t:M,n:'isManyToMany',u:'#`()',p:40},
{t:M,n:'isMutable',u:'#`()',p:41},
{t:M,n:'isOneToMany',u:'#`()',p:42},
{t:M,n:'isPrimitiveArray',u:'#`()',p:43},
{t:M,n:'isVersioned',u:'#`()',p:44},
{t:M,n:'postInstantiate',u:'#`()',p:45},
{t:M,n:'readElement',u:'#`(java.sql.ResultSet, java.lang.Object, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:46},
{t:M,n:'readIdentifier',u:'#`(java.sql.ResultSet, java.lang.String, org.hibernate.engine.SessionImplementor)',p:47},
{t:M,n:'readIndex',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:48},
{t:M,n:'readKey',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:49},
{t:M,n:'recreate',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:50},
{t:M,n:'remove',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:51},
{t:M,n:'updateRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:52},
{t:I,n:'QueryableCollection',c:'`.html',p:54},
{t:M,n:'getElementColumnNames',u:'#`()',p:1},
{t:M,n:'getElementPersister',u:'#`()',p:2},
{t:M,n:'getFetchMode',u:'#`()',p:3},
{t:M,n:'getIndexColumnNames',u:'#`()',p:4},
{t:M,n:'getIndexFormulas',u:'#`()',p:5},
{t:M,n:'getSQLOrderByString',u:'#`(java.lang.String)',p:6},
{t:M,n:'hasWhere',u:'#`()',p:7},
{t:M,n:'selectFragment',u:'#`(java.lang.String, java.lang.String)',p:8},
{t:I,n:'SQLLoadableCollection',c:'`.html',p:63},
{t:M,n:'getCollectionPropertyColumnAliases',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:M,n:'getIdentifierColumnName',u:'#`()',p:2},
{t:C,n:'AbstractCollectionPersister',c:'`.html',p:66},
{t:O,n:'batchSize',u:'#`',p:1},
{t:O,n:'elementColumnAliases',u:'#`',p:2},
{t:O,n:'elementColumnIsInPrimaryKey',u:'#`',p:3},
{t:O,n:'elementColumnIsSettable',u:'#`',p:4},
{t:O,n:'elementColumnNames',u:'#`',p:5},
{t:O,n:'elementFormulas',u:'#`',p:6},
{t:O,n:'elementFormulaTemplates',u:'#`',p:7},
{t:O,n:'elementIsPureFormula',u:'#`',p:8},
{t:O,n:'elementType',u:'#`',p:9},
{t:O,n:'hasIdentifier',u:'#`',p:10},
{t:O,n:'hasIndex',u:'#`',p:11},
{t:O,n:'hasWhere',u:'#`',p:12},
{t:O,n:'identifierColumnName',u:'#`',p:13},
{t:O,n:'indexColumnAliases',u:'#`',p:14},
{t:O,n:'indexColumnIsSettable',u:'#`',p:15},
{t:O,n:'indexColumnNames',u:'#`',p:16},
{t:O,n:'indexContainsFormula',u:'#`',p:17},
{t:O,n:'indexFormulas',u:'#`',p:18},
{t:O,n:'indexFormulaTemplates',u:'#`',p:19},
{t:O,n:'keyColumnAliases',u:'#`',p:20},
{t:O,n:'keyColumnNames',u:'#`',p:21},
{t:O,n:'qualifiedTableName',u:'#`',p:22},
{t:O,n:'sqlWhereString',u:'#`',p:23},
{t:M,n:'appendElementColumns',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String)',p:24},
{t:M,n:'appendIdentifierColumns',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String)',p:25},
{t:M,n:'appendIndexColumns',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String)',p:26},
{t:M,n:'createCollectionInitializer',u:'#`(java.util.Map)',p:27},
{t:M,n:'createSubselectInitializer',u:'#`(org.hibernate.engine.SubselectFetch, org.hibernate.engine.SessionImplementor)',p:28},
{t:M,n:'decrementIndexByBase',u:'#`(java.lang.Object)',p:29},
{t:M,n:'deleteRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:30},
{t:M,n:'doUpdateRows',u:'#`(java.io.Serializable, org.hibernate.collection.PersistentCollection, org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'elementExists',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:32},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:33},
{t:M,n:'generateDeleteRowString',u:'#`()',p:34},
{t:M,n:'generateDeleteString',u:'#`()',p:35},
{t:M,n:'generateDetectRowByElementString',u:'#`()',p:36},
{t:M,n:'generateDetectRowByIndexString',u:'#`()',p:37},
{t:M,n:'generateInsertRowString',u:'#`()',p:38},
{t:M,n:'generateSelectFragment',u:'#`(java.lang.String, java.lang.String)',p:39},
{t:M,n:'generateSelectRowByIndexString',u:'#`()',p:40},
{t:M,n:'generateSelectSizeString',u:'#`(boolean)',p:41},
{t:M,n:'generateUpdateRowString',u:'#`()',p:42},
{t:M,n:'getAppropriateInitializer',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:43},
{t:M,n:'getCache',u:'#`()',p:44},
{t:M,n:'getCacheEntryStructure',u:'#`()',p:45},
{t:M,n:'getCollectionMetadata',u:'#`()',p:46},
{t:M,n:'getCollectionPropertyColumnAliases',u:'#`(java.lang.String, java.lang.String)',p:47},
{t:M,n:'getCollectionSpaces',u:'#`()',p:48},
{t:M,n:'getCollectionType',u:'#`()',p:49},
{t:M,n:'getDialect',u:'#`()',p:50},
{t:M,n:'getElementByIndex',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:51},
{t:M,n:'getElementClass',u:'#`()',p:52},
{t:M,n:'getElementColumnAliases',u:'#`(java.lang.String)',p:53},
{t:M,n:'getElementColumnNames',u:'#`()',p:54},
{t:M,n:'getElementNodeName',u:'#`()',p:55},
{t:M,n:'getElementPersister',u:'#`()',p:56},
{t:M,n:'getElementType',u:'#`()',p:57},
{t:M,n:'getFactory',u:'#`()',p:58},
{t:M,n:'getFetchMode',u:'#`()',p:59},
{t:M,n:'getIdentifierColumnAlias',u:'#`(java.lang.String)',p:60},
{t:M,n:'getIdentifierColumnName',u:'#`()',p:61},
{t:M,n:'getIdentifierGenerator',u:'#`()',p:62},
{t:M,n:'getIdentifierType',u:'#`()',p:63},
{t:M,n:'getIndexColumnAliases',u:'#`(java.lang.String)',p:64},
{t:M,n:'getIndexColumnNames',u:'#`()',p:65},
{t:M,n:'getIndexFormulas',u:'#`()',p:66},
{t:M,n:'getIndexNodeName',u:'#`()',p:67},
{t:M,n:'getIndexType',u:'#`()',p:68},
{t:M,n:'getKeyColumnAliases',u:'#`(java.lang.String)',p:69},
{t:M,n:'getKeyColumnNames',u:'#`()',p:70},
{t:M,n:'getKeyType',u:'#`()',p:71},
{t:M,n:'getManyToManyFilterFragment',u:'#`(java.lang.String, java.util.Map)',p:72},
{t:M,n:'getName',u:'#`()',p:73},
{t:M,n:'getNodeName',u:'#`()',p:74},
{t:M,n:'getOwnerEntityName',u:'#`()',p:75},
{t:M,n:'getOwnerEntityPersister',u:'#`()',p:76},
{t:M,n:'getRole',u:'#`()',p:77},
{t:M,n:'getSize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:78},
{t:M,n:'getSQLDeleteRowString',u:'#`()',p:79},
{t:M,n:'getSQLDeleteString',u:'#`()',p:80},
{t:M,n:'getSQLExceptionConverter',u:'#`()',p:81},
{t:M,n:'getSQLInsertRowString',u:'#`()',p:82},
{t:M,n:'getSQLOrderByString',u:'#`(java.lang.String)',p:83},
{t:M,n:'getSQLUpdateRowString',u:'#`()',p:84},
{t:M,n:'getSQLWhereString',u:'#`(java.lang.String)',p:85},
{t:M,n:'getTableName',u:'#`()',p:86},
{t:M,n:'getType',u:'#`()',p:87},
{t:M,n:'hasCache',u:'#`()',p:88},
{t:M,n:'hasIndex',u:'#`()',p:89},
{t:M,n:'hasOrdering',u:'#`()',p:90},
{t:M,n:'hasOrphanDelete',u:'#`()',p:91},
{t:M,n:'hasWhere',u:'#`()',p:92},
{t:M,n:'incrementIndexByBase',u:'#`(java.lang.Object)',p:93},
{t:M,n:'indexExists',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:94},
{t:M,n:'initCollectionPropertyMap',u:'#`()',p:95},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:96},
{t:M,n:'insertRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:97},
{t:M,n:'isAffectedByEnabledFilters',u:'#`(org.hibernate.engine.SessionImplementor)',p:98},
{t:M,n:'isArray',u:'#`()',p:99},
{t:M,n:'isCollection',u:'#`()',p:100},
{t:M,n:'isDeleteAllCallable',u:'#`()',p:101},
{t:M,n:'isDeleteCallable',u:'#`()',p:102},
{t:M,n:'isExtraLazy',u:'#`()',p:103},
{t:M,n:'isInsertCallable',u:'#`()',p:104},
{t:M,n:'isInverse',u:'#`()',p:105},
{t:M,n:'isLazy',u:'#`()',p:106},
{t:M,n:'isManyToMany',u:'#`()',p:107},
{t:M,n:'isMutable',u:'#`()',p:108},
{t:M,n:'isPrimitiveArray',u:'#`()',p:109},
{t:M,n:'isRowDeleteEnabled',u:'#`()',p:110},
{t:M,n:'isRowInsertEnabled',u:'#`()',p:111},
{t:M,n:'isSubselectLoadable',u:'#`()',p:112},
{t:M,n:'isUpdateCallable',u:'#`()',p:113},
{t:M,n:'isVersioned',u:'#`()',p:114},
{t:M,n:'logStaticSQL',u:'#`()',p:115},
{t:M,n:'oneToManyFilterFragment',u:'#`(java.lang.String)',p:116},
{t:M,n:'postInstantiate',u:'#`()',p:117},
{t:M,n:'readElement',u:'#`(java.sql.ResultSet, java.lang.Object, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:118},
{t:M,n:'readIdentifier',u:'#`(java.sql.ResultSet, java.lang.String, org.hibernate.engine.SessionImplementor)',p:119},
{t:M,n:'readIndex',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:120},
{t:M,n:'readKey',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor)',p:121},
{t:M,n:'recreate',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:122},
{t:M,n:'remove',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:123},
{t:M,n:'selectFragment',u:'#`(java.lang.String, java.lang.String)',p:124},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:125},
{t:M,n:'toString',u:'#`()',p:126},
{t:M,n:'toType',u:'#`(java.lang.String)',p:127},
{t:M,n:'updateRows',u:'#`(org.hibernate.collection.PersistentCollection, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:128},
{t:M,n:'writeElement',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:129},
{t:M,n:'writeElementToWhere',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:130},
{t:M,n:'writeIdentifier',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:131},
{t:M,n:'writeIndex',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:132},
{t:M,n:'writeIndexToWhere',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:133},
{t:M,n:'writeKey',u:'#`(java.sql.PreparedStatement, java.io.Serializable, int, org.hibernate.engine.SessionImplementor)',p:134},
{t:C,n:'BasicCollectionPersister',c:'`.html',p:201},
{t:M,n:'consumesCollectionAlias',u:'#`()',p:1},
{t:M,n:'consumesEntityAlias',u:'#`()',p:2},
{t:M,n:'createCollectionInitializer',u:'#`(java.util.Map)',p:3},
{t:M,n:'createSubselectInitializer',u:'#`(org.hibernate.engine.SubselectFetch, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'doUpdateRows',u:'#`(java.io.Serializable, org.hibernate.collection.PersistentCollection, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'fromJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:6},
{t:M,n:'generateDeleteRowString',u:'#`()',p:7},
{t:M,n:'generateDeleteString',u:'#`()',p:8},
{t:M,n:'generateInsertRowString',u:'#`()',p:9},
{t:M,n:'generateUpdateRowString',u:'#`()',p:10},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:11},
{t:M,n:'isManyToMany',u:'#`()',p:12},
{t:M,n:'isOneToMany',u:'#`()',p:13},
{t:M,n:'selectFragment',u:'#`(org.hibernate.persister.entity.Joinable, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)',p:14},
{t:M,n:'whereJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:15},
{t:C,n:'CollectionPropertyMapping',c:'`.html',p:217},
{t:M,n:'getType',u:'#`()',p:1},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:2},
{t:M,n:'toType',u:'#`(java.lang.String)',p:3},
{t:C,n:'CollectionPropertyNames',c:'`.html',p:221},
{t:O,n:'COLLECTION_ELEMENTS',u:'#`',p:1},
{t:O,n:'COLLECTION_INDEX',u:'#`',p:2},
{t:O,n:'COLLECTION_INDICES',u:'#`',p:3},
{t:O,n:'COLLECTION_MAX_ELEMENT',u:'#`',p:4},
{t:O,n:'COLLECTION_MAX_INDEX',u:'#`',p:5},
{t:O,n:'COLLECTION_MIN_ELEMENT',u:'#`',p:6},
{t:O,n:'COLLECTION_MIN_INDEX',u:'#`',p:7},
{t:O,n:'COLLECTION_SIZE',u:'#`',p:8},
{t:C,n:'CompositeElementPropertyMapping',c:'`.html',p:230},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getType',u:'#`()',p:2},
{t:C,n:'ElementPropertyMapping',c:'`.html',p:233},
{t:M,n:'getType',u:'#`()',p:1},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:2},
{t:M,n:'toType',u:'#`(java.lang.String)',p:3},
{t:C,n:'NamedQueryCollectionInitializer',c:'`.html',p:237},
{t:M,n:'initialize',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:C,n:'OneToManyPersister',c:'`.html',p:239},
{t:M,n:'consumesCollectionAlias',u:'#`()',p:1},
{t:M,n:'consumesEntityAlias',u:'#`()',p:2},
{t:M,n:'createCollectionInitializer',u:'#`(java.util.Map)',p:3},
{t:M,n:'createSubselectInitializer',u:'#`(org.hibernate.engine.SubselectFetch, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'doUpdateRows',u:'#`(java.io.Serializable, org.hibernate.collection.PersistentCollection, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:6},
{t:M,n:'fromJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:7},
{t:M,n:'generateDeleteRowString',u:'#`()',p:8},
{t:M,n:'generateDeleteString',u:'#`()',p:9},
{t:M,n:'generateInsertRowString',u:'#`()',p:10},
{t:M,n:'generateUpdateRowString',u:'#`()',p:11},
{t:M,n:'getElementByIndex',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:12},
{t:M,n:'getTableName',u:'#`()',p:13},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:14},
{t:M,n:'isManyToMany',u:'#`()',p:15},
{t:M,n:'isOneToMany',u:'#`()',p:16},
{t:M,n:'isRowDeleteEnabled',u:'#`()',p:17},
{t:M,n:'isRowInsertEnabled',u:'#`()',p:18},
{t:M,n:'selectFragment',u:'#`(org.hibernate.persister.entity.Joinable, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)',p:19},
{t:M,n:'whereJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:20},
{t:P,n:'org.hibernate.persister.entity',u:'package-summary.html',c:'rg/hibernate/persister/entity/',p:3921},
{t:I,n:'EntityPersister',c:'`.html',p:1},
{t:O,n:'ENTITY_ID',u:'#`',p:1},
{t:M,n:'afterInitialize',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'afterReassociate',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'createProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'delete',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'findDirty',u:'#`(java.lang.Object[], java.lang.Object[], java.lang.Object, org.hibernate.engine.SessionImplementor)',p:6},
{t:M,n:'findModified',u:'#`(java.lang.Object[], java.lang.Object[], java.lang.Object, org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'getCache',u:'#`()',p:8},
{t:M,n:'getCacheEntryStructure',u:'#`()',p:9},
{t:M,n:'getClassMetadata',u:'#`()',p:10},
{t:M,n:'getConcreteProxyClass',u:'#`(org.hibernate.EntityMode)',p:11},
{t:M,n:'getCurrentVersion',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'getDatabaseSnapshot',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:13},
{t:M,n:'getEntityName',u:'#`()',p:14},
{t:M,n:'getFactory',u:'#`()',p:15},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:16},
{t:M,n:'getIdentifierGenerator',u:'#`()',p:17},
{t:M,n:'getIdentifierPropertyName',u:'#`()',p:18},
{t:M,n:'getIdentifierType',u:'#`()',p:19},
{t:M,n:'getMappedClass',u:'#`(org.hibernate.EntityMode)',p:20},
{t:M,n:'getNaturalIdentifierProperties',u:'#`()',p:21},
{t:M,n:'getNaturalIdentifierSnapshot',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:22},
{t:M,n:'getPropertyCascadeStyles',u:'#`()',p:23},
{t:M,n:'getPropertyCheckability',u:'#`()',p:24},
{t:M,n:'getPropertyInsertability',u:'#`()',p:25},
{t:M,n:'getPropertyInsertGeneration',u:'#`()',p:26},
{t:M,n:'getPropertyLaziness',u:'#`()',p:27},
{t:M,n:'getPropertyNames',u:'#`()',p:28},
{t:M,n:'getPropertyNullability',u:'#`()',p:29},
{t:M,n:'getPropertySpaces',u:'#`()',p:30},
{t:M,n:'getPropertyType',u:'#`(java.lang.String)',p:31},
{t:M,n:'getPropertyTypes',u:'#`()',p:32},
{t:M,n:'getPropertyUpdateability',u:'#`()',p:33},
{t:M,n:'getPropertyUpdateGeneration',u:'#`()',p:34},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int, org.hibernate.EntityMode)',p:35},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:36},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:37},
{t:M,n:'getPropertyVersionability',u:'#`()',p:38},
{t:M,n:'getQuerySpaces',u:'#`()',p:39},
{t:M,n:'getRootEntityName',u:'#`()',p:40},
{t:M,n:'getSubclassEntityPersister',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor, org.hibernate.EntityMode)',p:41},
{t:M,n:'getVersion',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:42},
{t:M,n:'getVersionProperty',u:'#`()',p:43},
{t:M,n:'getVersionType',u:'#`()',p:44},
{t:M,n:'guessEntityMode',u:'#`(java.lang.Object)',p:45},
{t:M,n:'hasCache',u:'#`()',p:46},
{t:M,n:'hasCascades',u:'#`()',p:47},
{t:M,n:'hasCollections',u:'#`()',p:48},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:49},
{t:M,n:'hasIdentifierPropertyOrEmbeddedCompositeIdentifier',u:'#`()',p:50},
{t:M,n:'hasInsertGeneratedProperties',u:'#`()',p:51},
{t:M,n:'hasLazyProperties',u:'#`()',p:52},
{t:M,n:'hasMutableProperties',u:'#`()',p:53},
{t:M,n:'hasNaturalIdentifier',u:'#`()',p:54},
{t:M,n:'hasProxy',u:'#`()',p:55},
{t:M,n:'hasSubselectLoadableCollections',u:'#`()',p:56},
{t:M,n:'hasUninitializedLazyProperties',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:57},
{t:M,n:'hasUpdateGeneratedProperties',u:'#`()',p:58},
{t:M,n:'implementsLifecycle',u:'#`(org.hibernate.EntityMode)',p:59},
{t:M,n:'implementsValidatable',u:'#`(org.hibernate.EntityMode)',p:60},
{t:M,n:'insert',u:'#`(java.lang.Object[], java.lang.Object, org.hibernate.engine.SessionImplementor)',p:61},
{t:M,n:'instantiate',u:'#`(java.io.Serializable, org.hibernate.EntityMode)',p:62},
{t:M,n:'isBatchLoadable',u:'#`()',p:63},
{t:M,n:'isCacheInvalidationRequired',u:'#`()',p:64},
{t:M,n:'isIdentifierAssignedByInsert',u:'#`()',p:65},
{t:M,n:'isInherited',u:'#`()',p:66},
{t:M,n:'isInstance',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:67},
{t:M,n:'isInstrumented',u:'#`(org.hibernate.EntityMode)',p:68},
{t:M,n:'isLazyPropertiesCacheable',u:'#`()',p:69},
{t:M,n:'isMutable',u:'#`()',p:70},
{t:M,n:'isSelectBeforeUpdateRequired',u:'#`()',p:71},
{t:M,n:'isSubclassEntityName',u:'#`(java.lang.String)',p:72},
{t:M,n:'isTransient',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:73},
{t:M,n:'isVersioned',u:'#`()',p:74},
{t:M,n:'isVersionPropertyGenerated',u:'#`()',p:75},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.LockMode, org.hibernate.engine.SessionImplementor)',p:76},
{t:M,n:'lock',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object, org.hibernate.LockMode, org.hibernate.engine.SessionImplementor)',p:77},
{t:M,n:'postInstantiate',u:'#`()',p:78},
{t:M,n:'processInsertGeneratedProperties',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object[], org.hibernate.engine.SessionImplementor)',p:79},
{t:M,n:'processUpdateGeneratedProperties',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object[], org.hibernate.engine.SessionImplementor)',p:80},
{t:M,n:'resetIdentifier',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object, org.hibernate.EntityMode)',p:81},
{t:M,n:'setIdentifier',u:'#`(java.lang.Object, java.io.Serializable, org.hibernate.EntityMode)',p:82},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, int, java.lang.Object, org.hibernate.EntityMode)',p:83},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:84},
{t:M,n:'update',u:'#`(java.io.Serializable, java.lang.Object[], int[], boolean, java.lang.Object[], java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:85},
{t:I,n:'Joinable',c:'`.html',p:87},
{t:M,n:'consumesCollectionAlias',u:'#`()',p:1},
{t:M,n:'consumesEntityAlias',u:'#`()',p:2},
{t:M,n:'filterFragment',u:'#`(java.lang.String, java.util.Map)',p:3},
{t:M,n:'fromJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:4},
{t:M,n:'getKeyColumnNames',u:'#`()',p:5},
{t:M,n:'getName',u:'#`()',p:6},
{t:M,n:'getTableName',u:'#`()',p:7},
{t:M,n:'isCollection',u:'#`()',p:8},
{t:M,n:'oneToManyFilterFragment',u:'#`(java.lang.String)',p:9},
{t:M,n:'selectFragment',u:'#`(org.hibernate.persister.entity.Joinable, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)',p:10},
{t:M,n:'whereJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:11},
{t:I,n:'Loadable',c:'`.html',p:99},
{t:O,n:'ROWID_ALIAS',u:'#`',p:1},
{t:M,n:'getDiscriminatorAlias',u:'#`(java.lang.String)',p:2},
{t:M,n:'getDiscriminatorColumnName',u:'#`()',p:3},
{t:M,n:'getDiscriminatorType',u:'#`()',p:4},
{t:M,n:'getIdentifierAliases',u:'#`(java.lang.String)',p:5},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:6},
{t:M,n:'getPropertyAliases',u:'#`(java.lang.String, int)',p:7},
{t:M,n:'getPropertyColumnNames',u:'#`(int)',p:8},
{t:M,n:'getSubclassForDiscriminatorValue',u:'#`(java.lang.Object)',p:9},
{t:M,n:'hasRowId',u:'#`()',p:10},
{t:M,n:'hasSubclasses',u:'#`()',p:11},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.io.Serializable, java.lang.Object, org.hibernate.persister.entity.Loadable, java.lang.String[][], boolean, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'isAbstract',u:'#`()',p:13},
{t:I,n:'OuterJoinLoadable',c:'`.html',p:113},
{t:M,n:'countSubclassProperties',u:'#`()',p:1},
{t:M,n:'fromTableFragment',u:'#`(java.lang.String)',p:2},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:3},
{t:M,n:'getEntityType',u:'#`()',p:4},
{t:M,n:'getFetchMode',u:'#`(int)',p:5},
{t:M,n:'getPropertyColumnNames',u:'#`(java.lang.String)',p:6},
{t:M,n:'getPropertyTableName',u:'#`(java.lang.String)',p:7},
{t:M,n:'getSubclassPropertyColumnNames',u:'#`(int)',p:8},
{t:M,n:'getSubclassPropertyName',u:'#`(int)',p:9},
{t:M,n:'getSubclassPropertyTableName',u:'#`(int)',p:10},
{t:M,n:'getSubclassPropertyType',u:'#`(int)',p:11},
{t:M,n:'isDefinedOnSubclass',u:'#`(int)',p:12},
{t:M,n:'isSubclassPropertyNullable',u:'#`(int)',p:13},
{t:M,n:'selectFragment',u:'#`(java.lang.String, java.lang.String)',p:14},
{t:M,n:'toColumns',u:'#`(java.lang.String, int)',p:15},
{t:I,n:'PropertyMapping',c:'`.html',p:129},
{t:M,n:'getType',u:'#`()',p:1},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:2},
{t:M,n:'toType',u:'#`(java.lang.String)',p:3},
{t:I,n:'Queryable',c:'`.html',p:133},
{t:M,n:'generateFilterConditionAlias',u:'#`(java.lang.String)',p:1},
{t:M,n:'getConstraintOrderedTableNameClosure',u:'#`()',p:2},
{t:M,n:'getContraintOrderedTableKeyColumnClosure',u:'#`()',p:3},
{t:M,n:'getDiscriminatorSQLValue',u:'#`()',p:4},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:5},
{t:M,n:'getMappedSuperclass',u:'#`()',p:6},
{t:M,n:'getSubclassPropertyTableNumber',u:'#`(java.lang.String)',p:7},
{t:M,n:'getSubclassTableName',u:'#`(int)',p:8},
{t:M,n:'getTemporaryIdTableDDL',u:'#`()',p:9},
{t:M,n:'getTemporaryIdTableName',u:'#`()',p:10},
{t:M,n:'identifierSelectFragment',u:'#`(java.lang.String, java.lang.String)',p:11},
{t:M,n:'isAbstract',u:'#`()',p:12},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:13},
{t:M,n:'isMultiTable',u:'#`()',p:14},
{t:M,n:'isVersionPropertyInsertable',u:'#`()',p:15},
{t:M,n:'propertySelectFragment',u:'#`(java.lang.String, java.lang.String, boolean)',p:16},
{t:I,n:'SQLLoadable',c:'`.html',p:150},
{t:M,n:'getSubclassPropertyColumnAliases',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:M,n:'getSubclassPropertyColumnNames',u:'#`(java.lang.String)',p:2},
{t:M,n:'getType',u:'#`()',p:3},
{t:M,n:'selectFragment',u:'#`(java.lang.String, java.lang.String)',p:4},
{t:I,n:'UniqueKeyLoadable',c:'`.html',p:155},
{t:M,n:'getPropertyIndex',u:'#`(java.lang.String)',p:1},
{t:M,n:'loadByUniqueKey',u:'#`(java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'AbstractEntityPersister',c:'`.html',p:158},
{t:O,n:'customSQLDelete',u:'#`',p:1},
{t:O,n:'customSQLInsert',u:'#`',p:2},
{t:O,n:'customSQLUpdate',u:'#`',p:3},
{t:O,n:'deleteCallable',u:'#`',p:4},
{t:O,n:'ENTITY_CLASS',u:'#`',p:5},
{t:O,n:'insertCallable',u:'#`',p:6},
{t:O,n:'propertyMapping',u:'#`',p:7},
{t:O,n:'rowIdName',u:'#`',p:8},
{t:O,n:'updateCallable',u:'#`',p:9},
{t:M,n:'addDiscriminatorToInsert',u:'#`(org.hibernate.sql.Insert)',p:10},
{t:M,n:'addDiscriminatorToSelect',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String, java.lang.String)',p:11},
{t:M,n:'afterInitialize',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'afterReassociate',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:13},
{t:M,n:'check',u:'#`(int, java.io.Serializable, int)',p:14},
{t:M,n:'concretePropertySelectFragment',u:'#`(java.lang.String, boolean[])',p:15},
{t:M,n:'concretePropertySelectFragmentSansLeadingComma',u:'#`(java.lang.String, boolean[])',p:16},
{t:M,n:'consumesCollectionAlias',u:'#`()',p:17},
{t:M,n:'consumesEntityAlias',u:'#`()',p:18},
{t:M,n:'countSubclassProperties',u:'#`()',p:19},
{t:M,n:'createEntityLoader',u:'#`(org.hibernate.LockMode)',p:20},
{t:M,n:'createFrom',u:'#`(int, java.lang.String)',p:21},
{t:M,n:'createJoin',u:'#`(int[], java.lang.String)',p:22},
{t:M,n:'createProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:23},
{t:M,n:'createQueryLoader',u:'#`()',p:24},
{t:M,n:'createSelect',u:'#`(int[], int[])',p:25},
{t:M,n:'createUniqueKeyLoaders',u:'#`()',p:26},
{t:M,n:'createWhereByKey',u:'#`(int, java.lang.String)',p:27},
{t:M,n:'dehydrate',u:'#`(java.io.Serializable, java.lang.Object[], boolean[], boolean[][], int, java.sql.PreparedStatement, org.hibernate.engine.SessionImplementor)',p:28},
{t:M,n:'delete',u:'#`(java.io.Serializable, java.lang.Object, int, java.lang.Object, java.lang.String, org.hibernate.engine.SessionImplementor)',p:29},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:30},
{t:M,n:'findDirty',u:'#`(java.lang.Object[], java.lang.Object[], java.lang.Object, org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'findModified',u:'#`(java.lang.Object[], java.lang.Object[], java.lang.Object, org.hibernate.engine.SessionImplementor)',p:32},
{t:M,n:'fromJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:33},
{t:M,n:'generateDeleteString',u:'#`(int)',p:34},
{t:M,n:'generateFilterConditionAlias',u:'#`(java.lang.String)',p:35},
{t:M,n:'generateInsertGeneratedValuesSelectString',u:'#`()',p:36},
{t:M,n:'generateInsertString',u:'#`(boolean[], int)',p:37},
{t:M,n:'generateLazySelectString',u:'#`()',p:38},
{t:M,n:'generateLockString',u:'#`(org.hibernate.LockMode)',p:39},
{t:M,n:'generateSelectVersionString',u:'#`()',p:40},
{t:M,n:'generateSnapshotSelectString',u:'#`()',p:41},
{t:M,n:'generateTableAlias',u:'#`(java.lang.String, int)',p:42},
{t:M,n:'generateUpdateGeneratedValuesSelectString',u:'#`()',p:43},
{t:M,n:'generateUpdateString',u:'#`(boolean[], int, boolean)',p:44},
{t:M,n:'getCache',u:'#`()',p:45},
{t:M,n:'getCacheEntryStructure',u:'#`()',p:46},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:47},
{t:M,n:'getClassMetadata',u:'#`()',p:48},
{t:M,n:'getConcreteProxyClass',u:'#`(org.hibernate.EntityMode)',p:49},
{t:M,n:'getCurrentVersion',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:50},
{t:M,n:'getDatabaseSnapshot',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:51},
{t:M,n:'getDiscriminatorAlias',u:'#`()',p:52},
{t:M,n:'getDiscriminatorColumnName',u:'#`()',p:53},
{t:M,n:'getDiscriminatorFormulaTemplate',u:'#`()',p:54},
{t:M,n:'getEntityMetamodel',u:'#`()',p:55},
{t:M,n:'getEntityName',u:'#`()',p:56},
{t:M,n:'getEntityType',u:'#`()',p:57},
{t:M,n:'getFactory',u:'#`()',p:58},
{t:M,n:'getFetchMode',u:'#`(int)',p:59},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:60},
{t:M,n:'getIdentifierAliases',u:'#`()',p:61},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:62},
{t:M,n:'getIdentifierColumnSpan',u:'#`()',p:63},
{t:M,n:'getIdentifierGenerator',u:'#`()',p:64},
{t:M,n:'getIdentifierPropertyName',u:'#`()',p:65},
{t:M,n:'getIdentifierType',u:'#`()',p:66},
{t:M,n:'getIdentitySelectString',u:'#`()',p:67},
{t:M,n:'getKeyColumnNames',u:'#`()',p:68},
{t:M,n:'getKeyColumns',u:'#`(int)',p:69},
{t:M,n:'getLazyProperties',u:'#`()',p:70},
{t:M,n:'getMappedClass',u:'#`(org.hibernate.EntityMode)',p:71},
{t:M,n:'getMappedSuperclass',u:'#`()',p:72},
{t:M,n:'getName',u:'#`()',p:73},
{t:M,n:'getNaturalIdentifierProperties',u:'#`()',p:74},
{t:M,n:'getNaturalIdentifierSnapshot',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:75},
{t:M,n:'getNonLazyPropertyUpdateability',u:'#`()',p:76},
{t:M,n:'getPropertiesToInsert',u:'#`(java.lang.Object[])',p:77},
{t:M,n:'getPropertiesToUpdate',u:'#`(int[], boolean)',p:78},
{t:M,n:'getPropertyAliases',u:'#`(java.lang.String, int)',p:79},
{t:M,n:'getPropertyCascadeStyles',u:'#`()',p:80},
{t:M,n:'getPropertyCheckability',u:'#`()',p:81},
{t:M,n:'getPropertyColumnNames',u:'#`(int)',p:82},
{t:M,n:'getPropertyColumnSpan',u:'#`(int)',p:83},
{t:M,n:'getPropertyIndex',u:'#`(java.lang.String)',p:84},
{t:M,n:'getPropertyInsertability',u:'#`()',p:85},
{t:M,n:'getPropertyInsertGeneration',u:'#`()',p:86},
{t:M,n:'getPropertyLaziness',u:'#`()',p:87},
{t:M,n:'getPropertyNames',u:'#`()',p:88},
{t:M,n:'getPropertyNullability',u:'#`()',p:89},
{t:M,n:'getPropertySpan',u:'#`()',p:90},
{t:M,n:'getPropertySubclassNames',u:'#`()',p:91},
{t:M,n:'getPropertyTableNumbers',u:'#`()',p:92},
{t:M,n:'getPropertyTableNumbersInSelect',u:'#`()',p:93},
{t:M,n:'getPropertyType',u:'#`(java.lang.String)',p:94},
{t:M,n:'getPropertyTypes',u:'#`()',p:95},
{t:M,n:'getPropertyUpdateability',u:'#`()',p:96},
{t:M,n:'getPropertyUpdateGeneration',u:'#`()',p:97},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int, org.hibernate.EntityMode)',p:98},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:99},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:100},
{t:M,n:'getPropertyVersionability',u:'#`()',p:101},
{t:M,n:'getQuerySpaces',u:'#`()',p:102},
{t:M,n:'getRootEntityName',u:'#`()',p:103},
{t:M,n:'getRootTableKeyColumnNames',u:'#`()',p:104},
{t:M,n:'getSelectByUniqueKeyString',u:'#`(java.lang.String)',p:105},
{t:M,n:'getSequentialSelect',u:'#`(java.lang.String)',p:106},
{t:M,n:'getSQLDeleteStrings',u:'#`()',p:107},
{t:M,n:'getSQLIdentityInsertString',u:'#`()',p:108},
{t:M,n:'getSQLInsertStrings',u:'#`()',p:109},
{t:M,n:'getSQLLazySelectString',u:'#`()',p:110},
{t:M,n:'getSQLLazyUpdateByRowIdStrings',u:'#`()',p:111},
{t:M,n:'getSQLLazyUpdateStrings',u:'#`()',p:112},
{t:M,n:'getSQLSnapshotSelectString',u:'#`()',p:113},
{t:M,n:'getSQLUpdateByRowIdStrings',u:'#`()',p:114},
{t:M,n:'getSQLUpdateStrings',u:'#`()',p:115},
{t:M,n:'getSQLWhereString',u:'#`(java.lang.String)',p:116},
{t:M,n:'getSubclassColumnAliasClosure',u:'#`()',p:117},
{t:M,n:'getSubclassColumnClosure',u:'#`()',p:118},
{t:M,n:'getSubclassColumnLazyiness',u:'#`()',p:119},
{t:M,n:'getSubclassColumnTableNumberClosure',u:'#`()',p:120},
{t:M,n:'getSubclassEntityPersister',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor, org.hibernate.EntityMode)',p:121},
{t:M,n:'getSubclassFormulaAliasClosure',u:'#`()',p:122},
{t:M,n:'getSubclassFormulaClosure',u:'#`()',p:123},
{t:M,n:'getSubclassFormulaLazyiness',u:'#`()',p:124},
{t:M,n:'getSubclassFormulaTableNumberClosure',u:'#`()',p:125},
{t:M,n:'getSubclassFormulaTemplateClosure',u:'#`()',p:126},
{t:M,n:'getSubclassPropertyColumnAliases',u:'#`(java.lang.String, java.lang.String)',p:127},
{t:M,n:'getSubclassPropertyColumnNameClosure',u:'#`()',p:128},
{t:M,n:'getSubclassPropertyColumnNames',u:'#`(int)',p:129},
{t:M,n:'getSubclassPropertyFormulaTemplateClosure',u:'#`()',p:130},
{t:M,n:'getSubclassPropertyName',u:'#`(int)',p:131},
{t:M,n:'getSubclassPropertyNameClosure',u:'#`()',p:132},
{t:M,n:'getSubclassPropertySubclassNameClosure',u:'#`()',p:133},
{t:M,n:'getSubclassPropertyTableNumber',u:'#`(int)',p:134},
{t:M,n:'getSubclassPropertyType',u:'#`(int)',p:135},
{t:M,n:'getSubclassPropertyTypeClosure',u:'#`()',p:136},
{t:M,n:'getSubclassTableKeyColumns',u:'#`(int)',p:137},
{t:M,n:'getSubclassTableName',u:'#`(int)',p:138},
{t:M,n:'getSubclassTableSpan',u:'#`()',p:139},
{t:M,n:'getTableName',u:'#`(int)',p:140},
{t:M,n:'getTableSpan',u:'#`()',p:141},
{t:M,n:'getTableUpdateNeeded',u:'#`(int[], boolean)',p:142},
{t:M,n:'getTemporaryIdTableDDL',u:'#`()',p:143},
{t:M,n:'getTemporaryIdTableName',u:'#`()',p:144},
{t:M,n:'getTuplizer',u:'#`(org.hibernate.EntityMode)',p:145},
{t:M,n:'getType',u:'#`()',p:146},
{t:M,n:'getVersion',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:147},
{t:M,n:'getVersionColumnName',u:'#`()',p:148},
{t:M,n:'getVersionedTableName',u:'#`()',p:149},
{t:M,n:'getVersionProperty',u:'#`()',p:150},
{t:M,n:'getVersionSelectString',u:'#`()',p:151},
{t:M,n:'getVersionType',u:'#`()',p:152},
{t:M,n:'guessEntityMode',u:'#`(java.lang.Object)',p:153},
{t:M,n:'hasCache',u:'#`()',p:154},
{t:M,n:'hasCascades',u:'#`()',p:155},
{t:M,n:'hasCollections',u:'#`()',p:156},
{t:M,n:'hasEmbeddedCompositeIdentifier',u:'#`()',p:157},
{t:M,n:'hasFormulaProperties',u:'#`()',p:158},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:159},
{t:M,n:'hasIdentifierPropertyOrEmbeddedCompositeIdentifier',u:'#`()',p:160},
{t:M,n:'hasInsertGeneratedProperties',u:'#`()',p:161},
{t:M,n:'hasLazyProperties',u:'#`()',p:162},
{t:M,n:'hasMutableProperties',u:'#`()',p:163},
{t:M,n:'hasNaturalIdentifier',u:'#`()',p:164},
{t:M,n:'hasProxy',u:'#`()',p:165},
{t:M,n:'hasRowId',u:'#`()',p:166},
{t:M,n:'hasSequentialSelect',u:'#`()',p:167},
{t:M,n:'hasSubclasses',u:'#`()',p:168},
{t:M,n:'hasSubselectLoadableCollections',u:'#`()',p:169},
{t:M,n:'hasUninitializedLazyProperties',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:170},
{t:M,n:'hasUpdateGeneratedProperties',u:'#`()',p:171},
{t:M,n:'hasWhere',u:'#`()',p:172},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.io.Serializable, java.lang.Object, org.hibernate.persister.entity.Loadable, java.lang.String[][], boolean, org.hibernate.engine.SessionImplementor)',p:173},
{t:M,n:'identifierSelectFragment',u:'#`(java.lang.String, java.lang.String)',p:174},
{t:M,n:'implementsLifecycle',u:'#`(org.hibernate.EntityMode)',p:175},
{t:M,n:'implementsValidatable',u:'#`(org.hibernate.EntityMode)',p:176},
{t:M,n:'initializeLazyProperty',u:'#`(java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:177},
{t:M,n:'initLockers',u:'#`()',p:178},
{t:M,n:'initPropertyPaths',u:'#`(org.hibernate.engine.Mapping)',p:179},
{t:M,n:'initSubclassPropertyAliasesMap',u:'#`(org.hibernate.mapping.PersistentClass)',p:180},
{t:M,n:'insert',u:'#`(java.lang.Object[], boolean[], java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:181},
{t:M,n:'instantiate',u:'#`(java.io.Serializable, org.hibernate.EntityMode)',p:182},
{t:M,n:'isAbstract',u:'#`()',p:183},
{t:M,n:'isBatchable',u:'#`()',p:184},
{t:M,n:'isBatchLoadable',u:'#`()',p:185},
{t:M,n:'isCacheInvalidationRequired',u:'#`()',p:186},
{t:M,n:'isClassOrSuperclassTable',u:'#`(int)',p:187},
{t:M,n:'isCollection',u:'#`()',p:188},
{t:M,n:'isDefinedOnSubclass',u:'#`(int)',p:189},
{t:M,n:'isDeleteCallable',u:'#`(int)',p:190},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:191},
{t:M,n:'isIdentifierAssignedByInsert',u:'#`()',p:192},
{t:M,n:'isInherited',u:'#`()',p:193},
{t:M,n:'isInsertCallable',u:'#`(int)',p:194},
{t:M,n:'isInstance',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:195},
{t:M,n:'isInstrumented',u:'#`(org.hibernate.EntityMode)',p:196},
{t:M,n:'isInverseSubclassTable',u:'#`(int)',p:197},
{t:M,n:'isInverseTable',u:'#`(int)',p:198},
{t:M,n:'isLazyPropertiesCacheable',u:'#`()',p:199},
{t:M,n:'isMultiTable',u:'#`()',p:200},
{t:M,n:'isMutable',u:'#`()',p:201},
{t:M,n:'isNullableSubclassTable',u:'#`(int)',p:202},
{t:M,n:'isNullableTable',u:'#`(int)',p:203},
{t:M,n:'isPolymorphic',u:'#`()',p:204},
{t:M,n:'isPropertyOfTable',u:'#`(int, int)',p:205},
{t:M,n:'isSelectBeforeUpdateRequired',u:'#`()',p:206},
{t:M,n:'isSubclassEntityName',u:'#`(java.lang.String)',p:207},
{t:M,n:'isSubclassPropertyDeferred',u:'#`(java.lang.String, java.lang.String)',p:208},
{t:M,n:'isSubclassPropertyNullable',u:'#`(int)',p:209},
{t:M,n:'isSubclassTableLazy',u:'#`(int)',p:210},
{t:M,n:'isSubclassTableSequentialSelect',u:'#`(int)',p:211},
{t:M,n:'isTableCascadeDeleteEnabled',u:'#`(int)',p:212},
{t:M,n:'isTransient',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:213},
{t:M,n:'isUpdateCallable',u:'#`(int)',p:214},
{t:M,n:'isVersioned',u:'#`()',p:215},
{t:M,n:'isVersionPropertyGenerated',u:'#`()',p:216},
{t:M,n:'isVersionPropertyInsertable',u:'#`()',p:217},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.LockMode, org.hibernate.engine.SessionImplementor)',p:218},
{t:M,n:'loadByUniqueKey',u:'#`(java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:219},
{t:M,n:'lock',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object, org.hibernate.LockMode, org.hibernate.engine.SessionImplementor)',p:220},
{t:M,n:'logStaticSQL',u:'#`()',p:221},
{t:M,n:'oneToManyFilterFragment',u:'#`(java.lang.String)',p:222},
{t:M,n:'optimisticLockMode',u:'#`()',p:223},
{t:M,n:'postConstruct',u:'#`(org.hibernate.engine.Mapping)',p:224},
{t:M,n:'postInstantiate',u:'#`()',p:225},
{t:M,n:'processInsertGeneratedProperties',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object[], org.hibernate.engine.SessionImplementor)',p:226},
{t:M,n:'processUpdateGeneratedProperties',u:'#`(java.io.Serializable, java.lang.Object, java.lang.Object[], org.hibernate.engine.SessionImplementor)',p:227},
{t:M,n:'propertySelectFragment',u:'#`(java.lang.String, java.lang.String, boolean)',p:228},
{t:M,n:'renderSelect',u:'#`(int[], int[], int[])',p:229},
{t:M,n:'resetIdentifier',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object, org.hibernate.EntityMode)',p:230},
{t:M,n:'selectFragment',u:'#`(org.hibernate.persister.entity.Joinable, java.lang.String, java.lang.String, java.lang.String, java.lang.String, boolean)',p:231},
{t:M,n:'setIdentifier',u:'#`(java.lang.Object, java.io.Serializable, org.hibernate.EntityMode)',p:232},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, int, java.lang.Object, org.hibernate.EntityMode)',p:233},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:234},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:235},
{t:M,n:'toString',u:'#`()',p:236},
{t:M,n:'toType',u:'#`(java.lang.String)',p:237},
{t:M,n:'update',u:'#`(java.io.Serializable, java.lang.Object[], int[], boolean, java.lang.Object[], java.lang.Object, java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:238},
{t:M,n:'updateOrInsert',u:'#`(java.io.Serializable, java.lang.Object[], java.lang.Object[], java.lang.Object, boolean[], int, java.lang.Object, java.lang.Object, java.lang.String, org.hibernate.engine.SessionImplementor)',p:239},
{t:M,n:'useDynamicInsert',u:'#`()',p:240},
{t:M,n:'useDynamicUpdate',u:'#`()',p:241},
{t:M,n:'useGetGeneratedKeys',u:'#`()',p:242},
{t:M,n:'useInsertSelectIdentity',u:'#`()',p:243},
{t:M,n:'whereJoinFragment',u:'#`(java.lang.String, boolean, boolean)',p:244},
{t:C,n:'AbstractPropertyMapping',c:'`.html',p:403},
{t:M,n:'addPropertyPath',u:'#`(java.lang.String, org.hibernate.type.Type, java.lang.String[], java.lang.String[])',p:1},
{t:M,n:'getColumnNames',u:'#`(java.lang.String)',p:2},
{t:M,n:'getEntityName',u:'#`()',p:3},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:4},
{t:M,n:'initComponentPropertyPaths',u:'#`(java.lang.String, org.hibernate.type.AbstractComponentType, java.lang.String[], java.lang.String[], org.hibernate.engine.Mapping)',p:5},
{t:M,n:'initIdentifierPropertyPaths',u:'#`(java.lang.String, org.hibernate.type.EntityType, java.lang.String[], org.hibernate.engine.Mapping)',p:6},
{t:M,n:'initPropertyPaths',u:'#`(java.lang.String, org.hibernate.type.Type, java.lang.String[], java.lang.String[], org.hibernate.engine.Mapping)',p:7},
{t:M,n:'throwPropertyException',u:'#`(java.lang.String)',p:8},
{t:M,n:'toColumns',u:'#`(java.lang.String)',p:9},
{t:M,n:'toType',u:'#`(java.lang.String)',p:10},
{t:C,n:'BasicEntityPropertyMapping',c:'`.html',p:414},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:2},
{t:M,n:'getType',u:'#`()',p:3},
{t:M,n:'toColumns',u:'#`(java.lang.String, java.lang.String)',p:4},
{t:C,n:'JoinedSubclassEntityPersister',c:'`.html',p:419},
{t:M,n:'addDiscriminatorToSelect',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String, java.lang.String)',p:1},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:2},
{t:M,n:'fromTableFragment',u:'#`(java.lang.String)',p:3},
{t:M,n:'generateFilterConditionAlias',u:'#`(java.lang.String)',p:4},
{t:M,n:'getConstraintOrderedTableNameClosure',u:'#`()',p:5},
{t:M,n:'getContraintOrderedTableKeyColumnClosure',u:'#`()',p:6},
{t:M,n:'getDiscriminatorSQLValue',u:'#`()',p:7},
{t:M,n:'getDiscriminatorType',u:'#`()',p:8},
{t:M,n:'getIdentifierColumnNames',u:'#`()',p:9},
{t:M,n:'getKeyColumns',u:'#`(int)',p:10},
{t:M,n:'getPropertySpaces',u:'#`()',p:11},
{t:M,n:'getPropertyTableName',u:'#`(java.lang.String)',p:12},
{t:M,n:'getPropertyTableNumbers',u:'#`()',p:13},
{t:M,n:'getPropertyTableNumbersInSelect',u:'#`()',p:14},
{t:M,n:'getSubclassColumnTableNumberClosure',u:'#`()',p:15},
{t:M,n:'getSubclassForDiscriminatorValue',u:'#`(java.lang.Object)',p:16},
{t:M,n:'getSubclassFormulaTableNumberClosure',u:'#`()',p:17},
{t:M,n:'getSubclassPropertyTableName',u:'#`(int)',p:18},
{t:M,n:'getSubclassPropertyTableNumber',u:'#`(int)',p:19},
{t:M,n:'getSubclassTableKeyColumns',u:'#`(int)',p:20},
{t:M,n:'getSubclassTableName',u:'#`(int)',p:21},
{t:M,n:'getSubclassTableSpan',u:'#`()',p:22},
{t:M,n:'getTableName',u:'#`()',p:23},
{t:M,n:'getTableSpan',u:'#`()',p:24},
{t:M,n:'isClassOrSuperclassTable',u:'#`(int)',p:25},
{t:M,n:'isMultiTable',u:'#`()',p:26},
{t:M,n:'isPropertyOfTable',u:'#`(int, int)',p:27},
{t:M,n:'isTableCascadeDeleteEnabled',u:'#`(int)',p:28},
{t:M,n:'toColumns',u:'#`(java.lang.String, java.lang.String)',p:29},
{t:C,n:'NamedQueryLoader',c:'`.html',p:449},
{t:M,n:'load',u:'#`(java.io.Serializable, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:C,n:'SingleTableEntityPersister',c:'`.html',p:451},
{t:M,n:'addDiscriminatorToInsert',u:'#`(org.hibernate.sql.Insert)',p:1},
{t:M,n:'addDiscriminatorToSelect',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String, java.lang.String)',p:2},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:3},
{t:M,n:'fromTableFragment',u:'#`(java.lang.String)',p:4},
{t:M,n:'getConstraintOrderedTableNameClosure',u:'#`()',p:5},
{t:M,n:'getContraintOrderedTableKeyColumnClosure',u:'#`()',p:6},
{t:M,n:'getDiscriminatorAlias',u:'#`()',p:7},
{t:M,n:'getDiscriminatorColumnName',u:'#`()',p:8},
{t:M,n:'getDiscriminatorFormula',u:'#`()',p:9},
{t:M,n:'getDiscriminatorFormulaTemplate',u:'#`()',p:10},
{t:M,n:'getDiscriminatorSQLValue',u:'#`()',p:11},
{t:M,n:'getDiscriminatorType',u:'#`()',p:12},
{t:M,n:'getKeyColumns',u:'#`(int)',p:13},
{t:M,n:'getPropertySpaces',u:'#`()',p:14},
{t:M,n:'getPropertyTableName',u:'#`(java.lang.String)',p:15},
{t:M,n:'getPropertyTableNumbers',u:'#`()',p:16},
{t:M,n:'getPropertyTableNumbersInSelect',u:'#`()',p:17},
{t:M,n:'getSequentialSelect',u:'#`(java.lang.String)',p:18},
{t:M,n:'getSubclassClosure',u:'#`()',p:19},
{t:M,n:'getSubclassColumnTableNumberClosure',u:'#`()',p:20},
{t:M,n:'getSubclassForDiscriminatorValue',u:'#`(java.lang.Object)',p:21},
{t:M,n:'getSubclassFormulaTableNumberClosure',u:'#`()',p:22},
{t:M,n:'getSubclassPropertyTableName',u:'#`(int)',p:23},
{t:M,n:'getSubclassPropertyTableNumber',u:'#`(int)',p:24},
{t:M,n:'getSubclassTableKeyColumns',u:'#`(int)',p:25},
{t:M,n:'getSubclassTableName',u:'#`(int)',p:26},
{t:M,n:'getSubclassTableSpan',u:'#`()',p:27},
{t:M,n:'getTableName',u:'#`()',p:28},
{t:M,n:'getTableSpan',u:'#`()',p:29},
{t:M,n:'hasSequentialSelect',u:'#`()',p:30},
{t:M,n:'isClassOrSuperclassTable',u:'#`(int)',p:31},
{t:M,n:'isDiscriminatorFormula',u:'#`()',p:32},
{t:M,n:'isInverseSubclassTable',u:'#`(int)',p:33},
{t:M,n:'isInverseTable',u:'#`(int)',p:34},
{t:M,n:'isMultiTable',u:'#`()',p:35},
{t:M,n:'isNullableSubclassTable',u:'#`(int)',p:36},
{t:M,n:'isNullableTable',u:'#`(int)',p:37},
{t:M,n:'isPropertyOfTable',u:'#`(int, int)',p:38},
{t:M,n:'isSubclassPropertyDeferred',u:'#`(java.lang.String, java.lang.String)',p:39},
{t:M,n:'isSubclassTableLazy',u:'#`(int)',p:40},
{t:M,n:'isSubclassTableSequentialSelect',u:'#`(int)',p:41},
{t:M,n:'isTableCascadeDeleteEnabled',u:'#`(int)',p:42},
{t:M,n:'oneToManyFilterFragment',u:'#`(java.lang.String)',p:43},
{t:M,n:'postInstantiate',u:'#`()',p:44},
{t:C,n:'UnionSubclassEntityPersister',c:'`.html',p:496},
{t:M,n:'addDiscriminatorToSelect',u:'#`(org.hibernate.sql.SelectFragment, java.lang.String, java.lang.String)',p:1},
{t:M,n:'filterFragment',u:'#`(java.lang.String)',p:2},
{t:M,n:'fromTableFragment',u:'#`(java.lang.String)',p:3},
{t:M,n:'generateSelectString',u:'#`(org.hibernate.LockMode)',p:4},
{t:M,n:'generateSubquery',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.engine.Mapping)',p:5},
{t:M,n:'getConstraintOrderedTableNameClosure',u:'#`()',p:6},
{t:M,n:'getContraintOrderedTableKeyColumnClosure',u:'#`()',p:7},
{t:M,n:'getDiscriminatorFormula',u:'#`()',p:8},
{t:M,n:'getDiscriminatorSQLValue',u:'#`()',p:9},
{t:M,n:'getDiscriminatorType',u:'#`()',p:10},
{t:M,n:'getKeyColumns',u:'#`(int)',p:11},
{t:M,n:'getPropertySpaces',u:'#`()',p:12},
{t:M,n:'getPropertyTableName',u:'#`(java.lang.String)',p:13},
{t:M,n:'getPropertyTableNumbers',u:'#`()',p:14},
{t:M,n:'getPropertyTableNumbersInSelect',u:'#`()',p:15},
{t:M,n:'getQuerySpaces',u:'#`()',p:16},
{t:M,n:'getSubclassClosure',u:'#`()',p:17},
{t:M,n:'getSubclassColumnTableNumberClosure',u:'#`()',p:18},
{t:M,n:'getSubclassForDiscriminatorValue',u:'#`(java.lang.Object)',p:19},
{t:M,n:'getSubclassFormulaTableNumberClosure',u:'#`()',p:20},
{t:M,n:'getSubclassPropertyTableName',u:'#`(int)',p:21},
{t:M,n:'getSubclassPropertyTableNumber',u:'#`(int)',p:22},
{t:M,n:'getSubclassTableKeyColumns',u:'#`(int)',p:23},
{t:M,n:'getSubclassTableName',u:'#`(int)',p:24},
{t:M,n:'getSubclassTableSpan',u:'#`()',p:25},
{t:M,n:'getTableHasColumns',u:'#`()',p:26},
{t:M,n:'getTableName',u:'#`()',p:27},
{t:M,n:'getTableSpan',u:'#`()',p:28},
{t:M,n:'isClassOrSuperclassTable',u:'#`(int)',p:29},
{t:M,n:'isDiscriminatorFormula',u:'#`()',p:30},
{t:M,n:'isMultiTable',u:'#`()',p:31},
{t:M,n:'isPropertyOfTable',u:'#`(int, int)',p:32},
{t:M,n:'isTableCascadeDeleteEnabled',u:'#`(int)',p:33},
{t:P,n:'org.hibernate.property',u:'package-summary.html',c:'rg/hibernate/property/',p:4451},
{t:I,n:'Getter',c:'`.html',p:1},
{t:M,n:'get',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getForInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'getMethod',u:'#`()',p:3},
{t:M,n:'getMethodName',u:'#`()',p:4},
{t:M,n:'getReturnType',u:'#`()',p:5},
{t:I,n:'PropertyAccessor',c:'`.html',p:7},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:I,n:'Setter',c:'`.html',p:10},
{t:M,n:'getMethod',u:'#`()',p:1},
{t:M,n:'getMethodName',u:'#`()',p:2},
{t:M,n:'set',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:3},
{t:C,n:'BackrefPropertyAccessor',c:'`.html',p:14},
{t:O,n:'UNKNOWN',u:'#`',p:1},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:3},
{t:C,n:'BasicPropertyAccessor',c:'`.html',p:18},
{t:M,n:'createGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:3},
{t:C,n:'ChainedPropertyAccessor',c:'`.html',p:22},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'DirectPropertyAccessor',c:'`.html',p:25},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'Dom4jAccessor',c:'`.html',p:28},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'EmbeddedPropertyAccessor',c:'`.html',p:31},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'IndexPropertyAccessor',c:'`.html',p:34},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'MapAccessor',c:'`.html',p:37},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'NoopAccessor',c:'`.html',p:40},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:1},
{t:M,n:'getSetter',u:'#`(java.lang.Class, java.lang.String)',p:2},
{t:C,n:'PropertyAccessorFactory',c:'`.html',p:43},
{t:M,n:'getDom4jPropertyAccessor',u:'#`(java.lang.String, org.hibernate.type.Type, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'getDynamicMapPropertyAccessor',u:'#`()',p:2},
{t:M,n:'getPropertyAccessor',u:'#`(java.lang.Class, java.lang.String)',p:3},
{t:P,n:'org.hibernate.proxy',u:'package-summary.html',c:'rg/hibernate/proxy/',p:4498},
{t:I,n:'HibernateProxy',c:'`.html',p:1},
{t:M,n:'getHibernateLazyInitializer',u:'#`()',p:1},
{t:M,n:'writeReplace',u:'#`()',p:2},
{t:I,n:'LazyInitializer',c:'`.html',p:4},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getImplementation',u:'#`()',p:3},
{t:M,n:'getPersistentClass',u:'#`()',p:4},
{t:M,n:'getSession',u:'#`()',p:5},
{t:M,n:'initialize',u:'#`()',p:6},
{t:M,n:'isUninitialized',u:'#`()',p:7},
{t:M,n:'isUnwrap',u:'#`()',p:8},
{t:M,n:'setIdentifier',u:'#`(java.io.Serializable)',p:9},
{t:M,n:'setImplementation',u:'#`(java.lang.Object)',p:10},
{t:M,n:'setSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'setUnwrap',u:'#`(boolean)',p:12},
{t:I,n:'ProxyFactory',c:'`.html',p:17},
{t:M,n:'getProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'postInstantiate',u:'#`(java.lang.String, java.lang.Class, java.util.Set, java.lang.reflect.Method, java.lang.reflect.Method, org.hibernate.type.AbstractComponentType)',p:2},
{t:C,n:'AbstractLazyInitializer',c:'`.html',p:20},
{t:M,n:'getEntityName',u:'#`()',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'getImplementation',u:'#`()',p:3},
{t:M,n:'getSession',u:'#`()',p:4},
{t:M,n:'getTarget',u:'#`()',p:5},
{t:M,n:'initialize',u:'#`()',p:6},
{t:M,n:'isUninitialized',u:'#`()',p:7},
{t:M,n:'isUnwrap',u:'#`()',p:8},
{t:M,n:'setIdentifier',u:'#`(java.io.Serializable)',p:9},
{t:M,n:'setImplementation',u:'#`(java.lang.Object)',p:10},
{t:M,n:'setSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'setUnwrap',u:'#`(boolean)',p:12},
{t:C,n:'BasicLazyInitializer',c:'`.html',p:33},
{t:O,n:'componentIdType',u:'#`',p:1},
{t:O,n:'getIdentifierMethod',u:'#`',p:2},
{t:O,n:'INVOKE_IMPLEMENTATION',u:'#`',p:3},
{t:O,n:'overridesEquals',u:'#`',p:4},
{t:O,n:'persistentClass',u:'#`',p:5},
{t:O,n:'setIdentifierMethod',u:'#`',p:6},
{t:M,n:'getPersistentClass',u:'#`()',p:7},
{t:M,n:'invoke',u:'#`(java.lang.reflect.Method, java.lang.Object[], java.lang.Object)',p:8},
{t:M,n:'serializableProxy',u:'#`()',p:9},
{t:C,n:'CGLIBLazyInitializer',c:'`.html',p:43},
{t:M,n:'getProxy',u:'#`(java.lang.Class, java.lang.String, java.lang.Class, java.lang.Class[], java.lang.reflect.Method, java.lang.reflect.Method, org.hibernate.type.AbstractComponentType, java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getProxyFactory',u:'#`(java.lang.Class, java.lang.Class[])',p:2},
{t:M,n:'intercept',u:'#`(java.lang.Object, java.lang.reflect.Method, java.lang.Object[], net.sf.cglib.proxy.MethodProxy)',p:3},
{t:M,n:'serializableProxy',u:'#`()',p:4},
{t:C,n:'CGLIBProxyFactory',c:'`.html',p:48},
{t:O,n:'NO_CLASSES',u:'#`',p:1},
{t:M,n:'getProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'postInstantiate',u:'#`(java.lang.String, java.lang.Class, java.util.Set, java.lang.reflect.Method, java.lang.reflect.Method, org.hibernate.type.AbstractComponentType)',p:3},
{t:C,n:'Dom4jLazyInitializer',c:'`.html',p:52},
{t:M,n:'getElement',u:'#`()',p:1},
{t:M,n:'getPersistentClass',u:'#`()',p:2},
{t:C,n:'Dom4jProxy',c:'`.html',p:55},
{t:M,n:'accept',u:'#`(org.dom4j.Visitor)',p:1},
{t:M,n:'add',u:'#`(org.dom4j.Attribute)',p:2},
{t:M,n:'addAttribute',u:'#`(org.dom4j.QName, java.lang.String)',p:3},
{t:M,n:'addCDATA',u:'#`(java.lang.String)',p:4},
{t:M,n:'addComment',u:'#`(java.lang.String)',p:5},
{t:M,n:'addElement',u:'#`(org.dom4j.QName)',p:6},
{t:M,n:'addEntity',u:'#`(java.lang.String, java.lang.String)',p:7},
{t:M,n:'additionalNamespaces',u:'#`()',p:8},
{t:M,n:'addNamespace',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'addProcessingInstruction',u:'#`(java.lang.String, java.util.Map)',p:10},
{t:M,n:'addText',u:'#`(java.lang.String)',p:11},
{t:M,n:'appendAttributes',u:'#`(org.dom4j.Element)',p:12},
{t:M,n:'appendContent',u:'#`(org.dom4j.Branch)',p:13},
{t:M,n:'asXML',u:'#`()',p:14},
{t:M,n:'asXPathResult',u:'#`(org.dom4j.Element)',p:15},
{t:M,n:'attribute',u:'#`(int)',p:16},
{t:M,n:'attributeCount',u:'#`()',p:17},
{t:M,n:'attributeIterator',u:'#`()',p:18},
{t:M,n:'attributes',u:'#`()',p:19},
{t:M,n:'attributeValue',u:'#`(org.dom4j.QName)',p:20},
{t:M,n:'clearContent',u:'#`()',p:21},
{t:M,n:'clone',u:'#`()',p:22},
{t:M,n:'content',u:'#`()',p:23},
{t:M,n:'createCopy',u:'#`()',p:24},
{t:M,n:'createXPath',u:'#`(java.lang.String)',p:25},
{t:M,n:'declaredNamespaces',u:'#`()',p:26},
{t:M,n:'detach',u:'#`()',p:27},
{t:M,n:'element',u:'#`(org.dom4j.QName)',p:28},
{t:M,n:'elementByID',u:'#`(java.lang.String)',p:29},
{t:M,n:'elementIterator',u:'#`()',p:30},
{t:M,n:'elements',u:'#`()',p:31},
{t:M,n:'elementText',u:'#`(org.dom4j.QName)',p:32},
{t:M,n:'elementTextTrim',u:'#`(org.dom4j.QName)',p:33},
{t:M,n:'getData',u:'#`()',p:34},
{t:M,n:'getDocument',u:'#`()',p:35},
{t:M,n:'getHibernateLazyInitializer',u:'#`()',p:36},
{t:M,n:'getName',u:'#`()',p:37},
{t:M,n:'getNamespace',u:'#`()',p:38},
{t:M,n:'getNamespaceForPrefix',u:'#`(java.lang.String)',p:39},
{t:M,n:'getNamespaceForURI',u:'#`(java.lang.String)',p:40},
{t:M,n:'getNamespacePrefix',u:'#`()',p:41},
{t:M,n:'getNamespacesForURI',u:'#`(java.lang.String)',p:42},
{t:M,n:'getNamespaceURI',u:'#`()',p:43},
{t:M,n:'getNodeType',u:'#`()',p:44},
{t:M,n:'getNodeTypeName',u:'#`()',p:45},
{t:M,n:'getParent',u:'#`()',p:46},
{t:M,n:'getPath',u:'#`()',p:47},
{t:M,n:'getQName',u:'#`()',p:48},
{t:M,n:'getQualifiedName',u:'#`()',p:49},
{t:M,n:'getStringValue',u:'#`()',p:50},
{t:M,n:'getText',u:'#`()',p:51},
{t:M,n:'getTextTrim',u:'#`()',p:52},
{t:M,n:'getUniquePath',u:'#`()',p:53},
{t:M,n:'getXPathResult',u:'#`(int)',p:54},
{t:M,n:'hasContent',u:'#`()',p:55},
{t:M,n:'hasMixedContent',u:'#`()',p:56},
{t:M,n:'indexOf',u:'#`(org.dom4j.Node)',p:57},
{t:M,n:'isReadOnly',u:'#`()',p:58},
{t:M,n:'isRootElement',u:'#`()',p:59},
{t:M,n:'isTextOnly',u:'#`()',p:60},
{t:M,n:'matches',u:'#`(java.lang.String)',p:61},
{t:M,n:'node',u:'#`(int)',p:62},
{t:M,n:'nodeCount',u:'#`()',p:63},
{t:M,n:'nodeIterator',u:'#`()',p:64},
{t:M,n:'normalize',u:'#`()',p:65},
{t:M,n:'numberValueOf',u:'#`(java.lang.String)',p:66},
{t:M,n:'processingInstruction',u:'#`(java.lang.String)',p:67},
{t:M,n:'processingInstructions',u:'#`()',p:68},
{t:M,n:'remove',u:'#`(org.dom4j.Attribute)',p:69},
{t:M,n:'removeProcessingInstruction',u:'#`(java.lang.String)',p:70},
{t:M,n:'selectNodes',u:'#`(java.lang.String)',p:71},
{t:M,n:'selectObject',u:'#`(java.lang.String)',p:72},
{t:M,n:'selectSingleNode',u:'#`(java.lang.String)',p:73},
{t:M,n:'setAttributes',u:'#`(java.util.List)',p:74},
{t:M,n:'setAttributeValue',u:'#`(org.dom4j.QName, java.lang.String)',p:75},
{t:M,n:'setContent',u:'#`(java.util.List)',p:76},
{t:M,n:'setData',u:'#`(java.lang.Object)',p:77},
{t:M,n:'setDocument',u:'#`(org.dom4j.Document)',p:78},
{t:M,n:'setName',u:'#`(java.lang.String)',p:79},
{t:M,n:'setParent',u:'#`(org.dom4j.Element)',p:80},
{t:M,n:'setProcessingInstructions',u:'#`(java.util.List)',p:81},
{t:M,n:'setQName',u:'#`(org.dom4j.QName)',p:82},
{t:M,n:'setText',u:'#`(java.lang.String)',p:83},
{t:M,n:'supportsParent',u:'#`()',p:84},
{t:M,n:'valueOf',u:'#`(java.lang.String)',p:85},
{t:M,n:'write',u:'#`(java.io.Writer)',p:86},
{t:M,n:'writeReplace',u:'#`()',p:87},
{t:C,n:'Dom4jProxyFactory',c:'`.html',p:143},
{t:M,n:'getProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'postInstantiate',u:'#`(java.lang.String, java.lang.Class, java.util.Set, java.lang.reflect.Method, java.lang.reflect.Method, org.hibernate.type.AbstractComponentType)',p:2},
{t:C,n:'HibernateProxyHelper',c:'`.html',p:146},
{t:M,n:'getClassWithoutInitializingProxy',u:'#`(java.lang.Object)',p:1},
{t:C,n:'MapLazyInitializer',c:'`.html',p:148},
{t:M,n:'getMap',u:'#`()',p:1},
{t:M,n:'getPersistentClass',u:'#`()',p:2},
{t:C,n:'MapProxy',c:'`.html',p:151},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'containsKey',u:'#`(java.lang.Object)',p:2},
{t:M,n:'containsValue',u:'#`(java.lang.Object)',p:3},
{t:M,n:'entrySet',u:'#`()',p:4},
{t:M,n:'get',u:'#`(java.lang.Object)',p:5},
{t:M,n:'getHibernateLazyInitializer',u:'#`()',p:6},
{t:M,n:'isEmpty',u:'#`()',p:7},
{t:M,n:'keySet',u:'#`()',p:8},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'putAll',u:'#`(java.util.Map)',p:10},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:11},
{t:M,n:'size',u:'#`()',p:12},
{t:M,n:'values',u:'#`()',p:13},
{t:M,n:'writeReplace',u:'#`()',p:14},
{t:C,n:'MapProxyFactory',c:'`.html',p:166},
{t:M,n:'getProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'postInstantiate',u:'#`(java.lang.String, java.lang.Class, java.util.Set, java.lang.reflect.Method, java.lang.reflect.Method, org.hibernate.type.AbstractComponentType)',p:2},
{t:C,n:'SerializableProxy',u:'`.html',p:169},
{t:P,n:'org.hibernate.transaction',u:'package-summary.html',c:'rg/hibernate/transaction/',p:4668},
{t:I,n:'TransactionFactory',c:'`.html',p:1},
{t:M,n:'areCallbacksLocalToHibernateTransactions',u:'#`()',p:1},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:2},
{t:M,n:'createTransaction',u:'#`(org.hibernate.jdbc.JDBCContext, org.hibernate.transaction.TransactionFactory.Context)',p:3},
{t:M,n:'getDefaultReleaseMode',u:'#`()',p:4},
{t:M,n:'isTransactionManagerRequired',u:'#`()',p:5},
{t:I,n:'TransactionManagerLookup',c:'`.html',p:7},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'BESTransactionManagerLookup',c:'`.html',p:10},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'CacheSynchronization',c:'`.html',p:13},
{t:M,n:'afterCompletion',u:'#`(int)',p:1},
{t:M,n:'beforeCompletion',u:'#`()',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'CMTTransaction',c:'`.html',p:17},
{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:'CMTTransactionFactory',c:'`.html',p:26},
{t:M,n:'areCallbacksLocalToHibernateTransactions',u:'#`()',p:1},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:2},
{t:M,n:'createTransaction',u:'#`(org.hibernate.jdbc.JDBCContext, org.hibernate.transaction.TransactionFactory.Context)',p:3},
{t:M,n:'getDefaultReleaseMode',u:'#`()',p:4},
{t:M,n:'isTransactionManagerRequired',u:'#`()',p:5},
{t:C,n:'JBossTransactionManagerLookup',c:'`.html',p:32},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'JDBCTransaction',c:'`.html',p:35},
{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:'JDBCTransactionFactory',c:'`.html',p:44},
{t:M,n:'areCallbacksLocalToHibernateTransactions',u:'#`()',p:1},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:2},
{t:M,n:'createTransaction',u:'#`(org.hibernate.jdbc.JDBCContext, org.hibernate.transaction.TransactionFactory.Context)',p:3},
{t:M,n:'getDefaultReleaseMode',u:'#`()',p:4},
{t:M,n:'isTransactionManagerRequired',u:'#`()',p:5},
{t:C,n:'JNDITransactionManagerLookup',c:'`.html',p:50},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:2},
{t:C,n:'JOnASTransactionManagerLookup',c:'`.html',p:53},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'JOTMTransactionManagerLookup',c:'`.html',p:56},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'JRun4TransactionManagerLookup',c:'`.html',p:59},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'JTATransaction',c:'`.html',p:62},
{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:'JTATransactionFactory',c:'`.html',p:71},
{t:M,n:'areCallbacksLocalToHibernateTransactions',u:'#`()',p:1},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:2},
{t:M,n:'createTransaction',u:'#`(org.hibernate.jdbc.JDBCContext, org.hibernate.transaction.TransactionFactory.Context)',p:3},
{t:M,n:'getDefaultReleaseMode',u:'#`()',p:4},
{t:M,n:'isTransactionManagerRequired',u:'#`()',p:5},
{t:C,n:'OC4JTransactionManagerLookup',c:'`.html',p:77},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'OrionTransactionManagerLookup',c:'`.html',p:80},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'ResinTransactionManagerLookup',c:'`.html',p:83},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'SunONETransactionManagerLookup',c:'`.html',p:86},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'TransactionFactoryFactory',c:'`.html',p:89},
{t:M,n:'buildTransactionFactory',u:'#`(java.util.Properties)',p:1},
{t:C,n:'TransactionManagerLookupFactory',c:'`.html',p:91},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getTransactionManagerLookup',u:'#`(java.util.Properties)',p:2},
{t:C,n:'WeblogicTransactionManagerLookup',c:'`.html',p:94},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'WebSphereExtendedJTATransactionLookup',c:'`.html',p:97},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:C,n:'WebSphereTransactionManagerLookup',c:'`.html',p:100},
{t:M,n:'getTransactionManager',u:'#`(java.util.Properties)',p:1},
{t:M,n:'getUserTransactionName',u:'#`()',p:2},
{t:P,n:'org.hibernate.transform',u:'package-summary.html',c:'rg/hibernate/transform/',p:4771},
{t:I,n:'ResultTransformer',c:'`.html',p:1},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:C,n:'AliasToBeanResultTransformer',c:'`.html',p:4},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:C,n:'AliasToEntityMapResultTransformer',c:'`.html',p:7},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:C,n:'DistinctRootEntityResultTransformer',c:'`.html',p:10},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:C,n:'PassThroughResultTransformer',c:'`.html',p:13},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:C,n:'RootEntityResultTransformer',c:'`.html',p:16},
{t:M,n:'transformList',u:'#`(java.util.List)',p:1},
{t:M,n:'transformTuple',u:'#`(java.lang.Object[], java.lang.String[])',p:2},
{t:P,n:'org.hibernate.tuple',u:'package-summary.html',c:'rg/hibernate/tuple/',p:4790},
{t:I,n:'ComponentTuplizer',c:'`.html',p:1},
{t:M,n:'getParent',u:'#`(java.lang.Object)',p:1},
{t:M,n:'hasParentProperty',u:'#`()',p:2},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:3},
{t:M,n:'setParent',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:I,n:'EntityTuplizer',c:'`.html',p:6},
{t:M,n:'afterInitialize',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'createProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'getConcreteProxyClass',u:'#`()',p:3},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object)',p:4},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, java.lang.String)',p:5},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:6},
{t:M,n:'getVersion',u:'#`(java.lang.Object)',p:7},
{t:M,n:'hasProxy',u:'#`()',p:8},
{t:M,n:'hasUninitializedLazyProperties',u:'#`(java.lang.Object)',p:9},
{t:M,n:'instantiate',u:'#`(java.io.Serializable)',p:10},
{t:M,n:'isInstrumented',u:'#`()',p:11},
{t:M,n:'isLifecycleImplementor',u:'#`()',p:12},
{t:M,n:'isValidatableImplementor',u:'#`()',p:13},
{t:M,n:'resetIdentifier',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object)',p:14},
{t:M,n:'setIdentifier',u:'#`(java.lang.Object, java.io.Serializable)',p:15},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, int, java.lang.Object)',p:16},
{t:I,n:'Instantiator',c:'`.html',p:23},
{t:M,n:'instantiate',u:'#`()',p:1},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:2},
{t:I,n:'Tuplizer',c:'`.html',p:26},
{t:M,n:'getMappedClass',u:'#`()',p:1},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int)',p:2},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object)',p:3},
{t:M,n:'instantiate',u:'#`()',p:4},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:5},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[])',p:6},
{t:C,n:'AbstractComponentTuplizer',c:'`.html',p:33},
{t:O,n:'getters',u:'#`',p:1},
{t:O,n:'hasCustomAccessors',u:'#`',p:2},
{t:O,n:'instantiator',u:'#`',p:3},
{t:O,n:'propertySpan',u:'#`',p:4},
{t:O,n:'setters',u:'#`',p:5},
{t:M,n:'buildGetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:6},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.Component)',p:7},
{t:M,n:'buildSetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:8},
{t:M,n:'getParent',u:'#`(java.lang.Object)',p:9},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int)',p:10},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object)',p:11},
{t:M,n:'hasParentProperty',u:'#`()',p:12},
{t:M,n:'instantiate',u:'#`()',p:13},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:14},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:15},
{t:M,n:'setParent',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:16},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[])',p:17},
{t:C,n:'AbstractEntityTuplizer',c:'`.html',p:51},
{t:O,n:'getters',u:'#`',p:1},
{t:O,n:'hasCustomAccessors',u:'#`',p:2},
{t:O,n:'propertySpan',u:'#`',p:3},
{t:O,n:'setters',u:'#`',p:4},
{t:M,n:'afterInitialize',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.PersistentClass)',p:6},
{t:M,n:'buildPropertyGetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:7},
{t:M,n:'buildPropertySetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:8},
{t:M,n:'buildProxyFactory',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.property.Getter, org.hibernate.property.Setter)',p:9},
{t:M,n:'createProxy',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'getComponentValue',u:'#`(org.hibernate.type.ComponentType, java.lang.Object, java.lang.String)',p:11},
{t:M,n:'getEntityMetamodel',u:'#`()',p:12},
{t:M,n:'getEntityMode',u:'#`()',p:13},
{t:M,n:'getEntityName',u:'#`()',p:14},
{t:M,n:'getFactory',u:'#`()',p:15},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object)',p:16},
{t:M,n:'getInstantiator',u:'#`()',p:17},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int)',p:18},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object)',p:19},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:20},
{t:M,n:'getProxyFactory',u:'#`()',p:21},
{t:M,n:'getSubclassEntityNames',u:'#`()',p:22},
{t:M,n:'getVersion',u:'#`(java.lang.Object)',p:23},
{t:M,n:'hasProxy',u:'#`()',p:24},
{t:M,n:'hasUninitializedLazyProperties',u:'#`(java.lang.Object)',p:25},
{t:M,n:'instantiate',u:'#`()',p:26},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:27},
{t:M,n:'isLifecycleImplementor',u:'#`()',p:28},
{t:M,n:'isValidatableImplementor',u:'#`()',p:29},
{t:M,n:'resetIdentifier',u:'#`(java.lang.Object, java.io.Serializable, java.lang.Object)',p:30},
{t:M,n:'setIdentifier',u:'#`(java.lang.Object, java.io.Serializable)',p:31},
{t:M,n:'setPropertyValue',u:'#`(java.lang.Object, int, java.lang.Object)',p:32},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[])',p:33},
{t:M,n:'shouldGetAllProperties',u:'#`(java.lang.Object)',p:34},
{t:M,n:'toString',u:'#`()',p:35},
{t:C,n:'Dom4jComponentTuplizer',c:'`.html',p:87},
{t:M,n:'buildGetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:1},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.Component)',p:2},
{t:M,n:'buildSetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:3},
{t:M,n:'getMappedClass',u:'#`()',p:4},
{t:C,n:'Dom4jEntityTuplizer',c:'`.html',p:92},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.PersistentClass)',p:1},
{t:M,n:'buildPropertyGetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:2},
{t:M,n:'buildPropertySetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:3},
{t:M,n:'buildProxyFactory',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.property.Getter, org.hibernate.property.Setter)',p:4},
{t:M,n:'getConcreteProxyClass',u:'#`()',p:5},
{t:M,n:'getEntityMode',u:'#`()',p:6},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object)',p:7},
{t:M,n:'getMappedClass',u:'#`()',p:8},
{t:M,n:'isInstrumented',u:'#`()',p:9},
{t:C,n:'Dom4jInstantiator',c:'`.html',p:102},
{t:M,n:'instantiate',u:'#`()',p:1},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:2},
{t:C,n:'DynamicMapComponentTuplizer',c:'`.html',p:105},
{t:M,n:'buildGetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:1},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.Component)',p:2},
{t:M,n:'buildSetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:3},
{t:M,n:'getMappedClass',u:'#`()',p:4},
{t:C,n:'DynamicMapEntityTuplizer',c:'`.html',p:110},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.PersistentClass)',p:1},
{t:M,n:'buildPropertyGetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:2},
{t:M,n:'buildPropertySetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:3},
{t:M,n:'buildProxyFactory',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.property.Getter, org.hibernate.property.Setter)',p:4},
{t:M,n:'getConcreteProxyClass',u:'#`()',p:5},
{t:M,n:'getEntityMode',u:'#`()',p:6},
{t:M,n:'getMappedClass',u:'#`()',p:7},
{t:M,n:'isInstrumented',u:'#`()',p:8},
{t:C,n:'DynamicMapInstantiator',c:'`.html',p:119},
{t:O,n:'KEY',u:'#`',p:1},
{t:M,n:'generateMap',u:'#`()',p:2},
{t:M,n:'instantiate',u:'#`()',p:3},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:4},
{t:C,n:'ElementWrapper',c:'`.html',p:124},
{t:M,n:'accept',u:'#`(org.dom4j.Visitor)',p:1},
{t:M,n:'add',u:'#`(org.dom4j.Attribute)',p:2},
{t:M,n:'addAttribute',u:'#`(org.dom4j.QName, java.lang.String)',p:3},
{t:M,n:'addCDATA',u:'#`(java.lang.String)',p:4},
{t:M,n:'addComment',u:'#`(java.lang.String)',p:5},
{t:M,n:'addElement',u:'#`(org.dom4j.QName)',p:6},
{t:M,n:'addEntity',u:'#`(java.lang.String, java.lang.String)',p:7},
{t:M,n:'additionalNamespaces',u:'#`()',p:8},
{t:M,n:'addNamespace',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'addProcessingInstruction',u:'#`(java.lang.String, java.util.Map)',p:10},
{t:M,n:'addText',u:'#`(java.lang.String)',p:11},
{t:M,n:'appendAttributes',u:'#`(org.dom4j.Element)',p:12},
{t:M,n:'appendContent',u:'#`(org.dom4j.Branch)',p:13},
{t:M,n:'asXML',u:'#`()',p:14},
{t:M,n:'asXPathResult',u:'#`(org.dom4j.Element)',p:15},
{t:M,n:'attribute',u:'#`(int)',p:16},
{t:M,n:'attributeCount',u:'#`()',p:17},
{t:M,n:'attributeIterator',u:'#`()',p:18},
{t:M,n:'attributes',u:'#`()',p:19},
{t:M,n:'attributeValue',u:'#`(org.dom4j.QName)',p:20},
{t:M,n:'clearContent',u:'#`()',p:21},
{t:M,n:'clone',u:'#`()',p:22},
{t:M,n:'content',u:'#`()',p:23},
{t:M,n:'createCopy',u:'#`()',p:24},
{t:M,n:'createXPath',u:'#`(java.lang.String)',p:25},
{t:M,n:'declaredNamespaces',u:'#`()',p:26},
{t:M,n:'detach',u:'#`()',p:27},
{t:M,n:'element',u:'#`(org.dom4j.QName)',p:28},
{t:M,n:'elementByID',u:'#`(java.lang.String)',p:29},
{t:M,n:'elementIterator',u:'#`()',p:30},
{t:M,n:'elements',u:'#`()',p:31},
{t:M,n:'elementText',u:'#`(org.dom4j.QName)',p:32},
{t:M,n:'elementTextTrim',u:'#`(org.dom4j.QName)',p:33},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:34},
{t:M,n:'getData',u:'#`()',p:35},
{t:M,n:'getDocument',u:'#`()',p:36},
{t:M,n:'getElement',u:'#`()',p:37},
{t:M,n:'getName',u:'#`()',p:38},
{t:M,n:'getNamespace',u:'#`()',p:39},
{t:M,n:'getNamespaceForPrefix',u:'#`(java.lang.String)',p:40},
{t:M,n:'getNamespaceForURI',u:'#`(java.lang.String)',p:41},
{t:M,n:'getNamespacePrefix',u:'#`()',p:42},
{t:M,n:'getNamespacesForURI',u:'#`(java.lang.String)',p:43},
{t:M,n:'getNamespaceURI',u:'#`()',p:44},
{t:M,n:'getNodeType',u:'#`()',p:45},
{t:M,n:'getNodeTypeName',u:'#`()',p:46},
{t:M,n:'getParent',u:'#`()',p:47},
{t:M,n:'getPath',u:'#`()',p:48},
{t:M,n:'getQName',u:'#`()',p:49},
{t:M,n:'getQualifiedName',u:'#`()',p:50},
{t:M,n:'getStringValue',u:'#`()',p:51},
{t:M,n:'getText',u:'#`()',p:52},
{t:M,n:'getTextTrim',u:'#`()',p:53},
{t:M,n:'getUniquePath',u:'#`()',p:54},
{t:M,n:'getXPathResult',u:'#`(int)',p:55},
{t:M,n:'hasContent',u:'#`()',p:56},
{t:M,n:'hashCode',u:'#`()',p:57},
{t:M,n:'hasMixedContent',u:'#`()',p:58},
{t:M,n:'indexOf',u:'#`(org.dom4j.Node)',p:59},
{t:M,n:'isReadOnly',u:'#`()',p:60},
{t:M,n:'isRootElement',u:'#`()',p:61},
{t:M,n:'isTextOnly',u:'#`()',p:62},
{t:M,n:'matches',u:'#`(java.lang.String)',p:63},
{t:M,n:'node',u:'#`(int)',p:64},
{t:M,n:'nodeCount',u:'#`()',p:65},
{t:M,n:'nodeIterator',u:'#`()',p:66},
{t:M,n:'normalize',u:'#`()',p:67},
{t:M,n:'numberValueOf',u:'#`(java.lang.String)',p:68},
{t:M,n:'processingInstruction',u:'#`(java.lang.String)',p:69},
{t:M,n:'processingInstructions',u:'#`()',p:70},
{t:M,n:'remove',u:'#`(org.dom4j.Attribute)',p:71},
{t:M,n:'removeProcessingInstruction',u:'#`(java.lang.String)',p:72},
{t:M,n:'selectNodes',u:'#`(java.lang.String)',p:73},
{t:M,n:'selectObject',u:'#`(java.lang.String)',p:74},
{t:M,n:'selectSingleNode',u:'#`(java.lang.String)',p:75},
{t:M,n:'setAttributes',u:'#`(java.util.List)',p:76},
{t:M,n:'setAttributeValue',u:'#`(org.dom4j.QName, java.lang.String)',p:77},
{t:M,n:'setContent',u:'#`(java.util.List)',p:78},
{t:M,n:'setData',u:'#`(java.lang.Object)',p:79},
{t:M,n:'setDocument',u:'#`(org.dom4j.Document)',p:80},
{t:M,n:'setName',u:'#`(java.lang.String)',p:81},
{t:M,n:'setParent',u:'#`(org.dom4j.Element)',p:82},
{t:M,n:'setProcessingInstructions',u:'#`(java.util.List)',p:83},
{t:M,n:'setQName',u:'#`(org.dom4j.QName)',p:84},
{t:M,n:'setText',u:'#`(java.lang.String)',p:85},
{t:M,n:'supportsParent',u:'#`()',p:86},
{t:M,n:'toString',u:'#`()',p:87},
{t:M,n:'valueOf',u:'#`(java.lang.String)',p:88},
{t:M,n:'write',u:'#`(java.io.Writer)',p:89},
{t:C,n:'EntityMetamodel',c:'`.html',p:214},
{t:M,n:'getCascadeStyles',u:'#`()',p:1},
{t:M,n:'getEntityType',u:'#`()',p:2},
{t:M,n:'getIdentifierProperty',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getNaturalIdentifierProperties',u:'#`()',p:5},
{t:M,n:'getNonlazyPropertyUpdateability',u:'#`()',p:6},
{t:M,n:'getOptimisticLockMode',u:'#`()',p:7},
{t:M,n:'getProperties',u:'#`()',p:8},
{t:M,n:'getPropertyCheckability',u:'#`()',p:9},
{t:M,n:'getPropertyIndex',u:'#`(java.lang.String)',p:10},
{t:M,n:'getPropertyIndexOrNull',u:'#`(java.lang.String)',p:11},
{t:M,n:'getPropertyInsertability',u:'#`()',p:12},
{t:M,n:'getPropertyInsertGeneration',u:'#`()',p:13},
{t:M,n:'getPropertyLaziness',u:'#`()',p:14},
{t:M,n:'getPropertyNames',u:'#`()',p:15},
{t:M,n:'getPropertyNullability',u:'#`()',p:16},
{t:M,n:'getPropertySpan',u:'#`()',p:17},
{t:M,n:'getPropertyTypes',u:'#`()',p:18},
{t:M,n:'getPropertyUpdateability',u:'#`()',p:19},
{t:M,n:'getPropertyUpdateGeneration',u:'#`()',p:20},
{t:M,n:'getPropertyVersionability',u:'#`()',p:21},
{t:M,n:'getRootName',u:'#`()',p:22},
{t:M,n:'getSessionFactory',u:'#`()',p:23},
{t:M,n:'getSubclassEntityNames',u:'#`()',p:24},
{t:M,n:'getSuperclass',u:'#`()',p:25},
{t:M,n:'getTuplizer',u:'#`(org.hibernate.EntityMode)',p:26},
{t:M,n:'getTuplizerOrNull',u:'#`(org.hibernate.EntityMode)',p:27},
{t:M,n:'getVersionProperty',u:'#`()',p:28},
{t:M,n:'getVersionPropertyIndex',u:'#`()',p:29},
{t:M,n:'guessEntityMode',u:'#`(java.lang.Object)',p:30},
{t:M,n:'hasCascades',u:'#`()',p:31},
{t:M,n:'hasCollections',u:'#`()',p:32},
{t:M,n:'hasLazyProperties',u:'#`()',p:33},
{t:M,n:'hasMutableProperties',u:'#`()',p:34},
{t:M,n:'hasNaturalIdentifier',u:'#`()',p:35},
{t:M,n:'hasSubclasses',u:'#`()',p:36},
{t:M,n:'isAbstract',u:'#`()',p:37},
{t:M,n:'isDynamicInsert',u:'#`()',p:38},
{t:M,n:'isDynamicUpdate',u:'#`()',p:39},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:40},
{t:M,n:'isInherited',u:'#`()',p:41},
{t:M,n:'isLazy',u:'#`()',p:42},
{t:M,n:'isMutable',u:'#`()',p:43},
{t:M,n:'isPolymorphic',u:'#`()',p:44},
{t:M,n:'isSelectBeforeUpdate',u:'#`()',p:45},
{t:M,n:'isVersioned',u:'#`()',p:46},
{t:M,n:'toString',u:'#`()',p:47},
{t:C,n:'IdentifierProperty',c:'`.html',p:262},
{t:M,n:'getIdentifierGenerator',u:'#`()',p:1},
{t:M,n:'getUnsavedValue',u:'#`()',p:2},
{t:M,n:'isEmbedded',u:'#`()',p:3},
{t:M,n:'isIdentifierAssignedByInsert',u:'#`()',p:4},
{t:M,n:'isVirtual',u:'#`()',p:5},
{t:C,n:'PojoComponentTuplizer',c:'`.html',p:268},
{t:M,n:'buildGetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:1},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.Component)',p:2},
{t:M,n:'buildSetter',u:'#`(org.hibernate.mapping.Component, org.hibernate.mapping.Property)',p:3},
{t:M,n:'getMappedClass',u:'#`()',p:4},
{t:M,n:'getParent',u:'#`(java.lang.Object)',p:5},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object)',p:6},
{t:M,n:'hasParentProperty',u:'#`()',p:7},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:8},
{t:M,n:'setParent',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:9},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[])',p:10},
{t:C,n:'PojoEntityTuplizer',c:'`.html',p:279},
{t:M,n:'afterInitialize',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'buildInstantiator',u:'#`(org.hibernate.mapping.PersistentClass)',p:2},
{t:M,n:'buildPropertyGetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:3},
{t:M,n:'buildPropertySetter',u:'#`(org.hibernate.mapping.Property, org.hibernate.mapping.PersistentClass)',p:4},
{t:M,n:'buildProxyFactory',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.property.Getter, org.hibernate.property.Setter)',p:5},
{t:M,n:'getConcreteProxyClass',u:'#`()',p:6},
{t:M,n:'getEntityMode',u:'#`()',p:7},
{t:M,n:'getMappedClass',u:'#`()',p:8},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object)',p:9},
{t:M,n:'getPropertyValuesToInsert',u:'#`(java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'getPropertyValuesWithOptimizer',u:'#`(java.lang.Object)',p:11},
{t:M,n:'hasUninitializedLazyProperties',u:'#`(java.lang.Object)',p:12},
{t:M,n:'isInstrumented',u:'#`()',p:13},
{t:M,n:'isLifecycleImplementor',u:'#`()',p:14},
{t:M,n:'isValidatableImplementor',u:'#`()',p:15},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[])',p:16},
{t:M,n:'setPropertyValuesWithOptimizer',u:'#`(java.lang.Object, java.lang.Object[])',p:17},
{t:C,n:'PojoInstantiator',c:'`.html',p:297},
{t:M,n:'instantiate',u:'#`()',p:1},
{t:M,n:'isInstance',u:'#`(java.lang.Object)',p:2},
{t:C,n:'Property',c:'`.html',p:300},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'getNode',u:'#`()',p:2},
{t:M,n:'getType',u:'#`()',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'PropertyFactory',c:'`.html',p:305},
{t:M,n:'buildIdentifierProperty',u:'#`(org.hibernate.mapping.PersistentClass, org.hibernate.id.IdentifierGenerator)',p:1},
{t:M,n:'buildStandardProperty',u:'#`(org.hibernate.mapping.Property, boolean)',p:2},
{t:M,n:'buildVersionProperty',u:'#`(org.hibernate.mapping.Property, boolean)',p:3},
{t:C,n:'StandardProperty',c:'`.html',p:309},
{t:M,n:'getCascadeStyle',u:'#`()',p:1},
{t:M,n:'isDirtyCheckable',u:'#`()',p:2},
{t:M,n:'isInsertable',u:'#`()',p:3},
{t:M,n:'isInsertGenerated',u:'#`()',p:4},
{t:M,n:'isLazy',u:'#`()',p:5},
{t:M,n:'isNullable',u:'#`()',p:6},
{t:M,n:'isUpdateable',u:'#`()',p:7},
{t:M,n:'isUpdateGenerated',u:'#`()',p:8},
{t:M,n:'isVersionable',u:'#`()',p:9},
{t:C,n:'TuplizerLookup',c:'`.html',p:319},
{t:M,n:'create',u:'#`(org.hibernate.mapping.Component)',p:1},
{t:M,n:'getTuplizer',u:'#`(org.hibernate.EntityMode)',p:2},
{t:M,n:'getTuplizerOrNull',u:'#`(org.hibernate.EntityMode)',p:3},
{t:M,n:'guessEntityMode',u:'#`(java.lang.Object)',p:4},
{t:C,n:'VersionProperty',c:'`.html',p:324},
{t:M,n:'getUnsavedValue',u:'#`()',p:1},
{t:P,n:'org.hibernate.type',u:'package-summary.html',c:'rg/hibernate/type/',p:5116},
{t:I,n:'AbstractComponentType',c:'`.html',p:1},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:1},
{t:M,n:'getFetchMode',u:'#`(int)',p:2},
{t:M,n:'getPropertyNames',u:'#`()',p:3},
{t:M,n:'getPropertyNullability',u:'#`()',p:4},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:6},
{t:M,n:'getSubtypes',u:'#`()',p:7},
{t:M,n:'isEmbedded',u:'#`()',p:8},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:9},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:10},
{t:I,n:'AssociationType',c:'`.html',p:12},
{t:M,n:'getAssociatedEntityName',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'getAssociatedJoinable',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:M,n:'getForeignKeyDirection',u:'#`()',p:3},
{t:M,n:'getLHSPropertyName',u:'#`()',p:4},
{t:M,n:'getOnCondition',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:5},
{t:M,n:'getRHSUniqueKeyPropertyName',u:'#`()',p:6},
{t:M,n:'isAlwaysDirtyChecked',u:'#`()',p:7},
{t:M,n:'isEmbeddedInXML',u:'#`()',p:8},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:9},
{t:I,n:'DiscriminatorType',u:'`.html',p:22},
{t:I,n:'IdentifierType',c:'`.html',p:23},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:1},
{t:I,n:'LiteralType',c:'`.html',p:25},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:1},
{t:I,n:'Type',c:'`.html',p:27},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'beforeAssemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:5},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:6},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:7},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:8},
{t:M,n:'getName',u:'#`()',p:9},
{t:M,n:'getReturnedClass',u:'#`()',p:10},
{t:M,n:'getSemiResolvedType',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:11},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:12},
{t:M,n:'isAnyType',u:'#`()',p:13},
{t:M,n:'isAssociationType',u:'#`()',p:14},
{t:M,n:'isCollectionType',u:'#`()',p:15},
{t:M,n:'isComponentType',u:'#`()',p:16},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:17},
{t:M,n:'isEntityType',u:'#`()',p:18},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:19},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:20},
{t:M,n:'isMutable',u:'#`()',p:21},
{t:M,n:'isSame',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:22},
{t:M,n:'isXMLElement',u:'#`()',p:23},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:24},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:25},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:26},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:27},
{t:M,n:'semiResolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:28},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:29},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:30},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:31},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:32},
{t:I,n:'VersionType',c:'`.html',p:60},
{t:M,n:'getComparator',u:'#`()',p:1},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:2},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:4},
{t:C,n:'AbstractType',c:'`.html',p:65},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'beforeAssemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:4},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:5},
{t:M,n:'getSemiResolvedType',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:6},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:7},
{t:M,n:'isAnyType',u:'#`()',p:8},
{t:M,n:'isAssociationType',u:'#`()',p:9},
{t:M,n:'isCollectionType',u:'#`()',p:10},
{t:M,n:'isComponentType',u:'#`()',p:11},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'isEntityType',u:'#`()',p:13},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:14},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:15},
{t:M,n:'isSame',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:16},
{t:M,n:'isXMLElement',u:'#`()',p:17},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map, org.hibernate.type.ForeignKeyDirection)',p:18},
{t:M,n:'replaceNode',u:'#`(org.dom4j.Node, org.dom4j.Element)',p:19},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:20},
{t:M,n:'semiResolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:21},
{t:C,n:'AdaptedImmutableType',c:'`.html',p:87},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:10},
{t:C,n:'AnyType',c:'`.html',p:98},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:2},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:3},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:4},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:5},
{t:M,n:'getAssociatedEntityName',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:6},
{t:M,n:'getAssociatedJoinable',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:7},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:8},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:9},
{t:M,n:'getFetchMode',u:'#`(int)',p:10},
{t:M,n:'getForeignKeyDirection',u:'#`()',p:11},
{t:M,n:'getLHSPropertyName',u:'#`()',p:12},
{t:M,n:'getName',u:'#`()',p:13},
{t:M,n:'getOnCondition',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:14},
{t:M,n:'getPropertyNames',u:'#`()',p:15},
{t:M,n:'getPropertyNullability',u:'#`()',p:16},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:17},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:18},
{t:M,n:'getReturnedClass',u:'#`()',p:19},
{t:M,n:'getRHSUniqueKeyPropertyName',u:'#`()',p:20},
{t:M,n:'getSubtypes',u:'#`()',p:21},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:22},
{t:M,n:'isAlwaysDirtyChecked',u:'#`()',p:23},
{t:M,n:'isAnyType',u:'#`()',p:24},
{t:M,n:'isAssociationType',u:'#`()',p:25},
{t:M,n:'isComponentType',u:'#`()',p:26},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:27},
{t:M,n:'isEmbedded',u:'#`()',p:28},
{t:M,n:'isEmbeddedInXML',u:'#`()',p:29},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:30},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'isMutable',u:'#`()',p:32},
{t:M,n:'isReferenceToPrimaryKey',u:'#`()',p:33},
{t:M,n:'isSame',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:34},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:35},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:36},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:37},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:38},
{t:M,n:'semiResolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:39},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:40},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:41},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:42},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:43},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:44},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:45},
{t:C,n:'ArrayType',c:'`.html',p:144},
{t:M,n:'getElementsIterator',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getReturnedClass',u:'#`()',p:2},
{t:M,n:'hasHolder',u:'#`(org.hibernate.EntityMode)',p:3},
{t:M,n:'indexOf',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'initializeImmediately',u:'#`(org.hibernate.EntityMode)',p:5},
{t:M,n:'instantiate',u:'#`()',p:6},
{t:M,n:'instantiateResult',u:'#`(java.lang.Object)',p:7},
{t:M,n:'isArrayType',u:'#`()',p:8},
{t:M,n:'replaceElements',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:10},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:11},
{t:C,n:'BagType',c:'`.html',p:156},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'instantiate',u:'#`()',p:2},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'BigDecimalType',c:'`.html',p:160},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getReturnedClass',u:'#`()',p:5},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:6},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:7},
{t:M,n:'sqlType',u:'#`()',p:8},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:9},
{t:C,n:'BigIntegerType',c:'`.html',p:170},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getReturnedClass',u:'#`()',p:5},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:6},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:10},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:11},
{t:C,n:'BinaryType',c:'`.html',p:182},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object)',p:1},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:2},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:3},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:4},
{t:M,n:'getComparator',u:'#`()',p:5},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:6},
{t:M,n:'getName',u:'#`()',p:7},
{t:M,n:'getReturnedClass',u:'#`()',p:8},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:12},
{t:M,n:'sqlType',u:'#`()',p:13},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:14},
{t:C,n:'BlobType',c:'`.html',p:197},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:4},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:5},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:6},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:7},
{t:M,n:'getName',u:'#`()',p:8},
{t:M,n:'getReturnedClass',u:'#`()',p:9},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:11},
{t:M,n:'isMutable',u:'#`()',p:12},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:13},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:14},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:15},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:16},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:17},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:18},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:19},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:20},
{t:C,n:'BooleanType',c:'`.html',p:218},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getDefaultValue',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getPrimitiveClass',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:10},
{t:C,n:'ByteType',c:'`.html',p:229},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getComparator',u:'#`()',p:3},
{t:M,n:'getDefaultValue',u:'#`()',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getPrimitiveClass',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:11},
{t:M,n:'sqlType',u:'#`()',p:12},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:13},
{t:C,n:'CalendarDateType',c:'`.html',p:243},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:2},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:3},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:4},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:5},
{t:M,n:'getName',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:8},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:9},
{t:M,n:'sqlType',u:'#`()',p:10},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:11},
{t:C,n:'CalendarType',c:'`.html',p:255},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:2},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:3},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:4},
{t:M,n:'getComparator',u:'#`()',p:5},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:6},
{t:M,n:'getName',u:'#`()',p:7},
{t:M,n:'getReturnedClass',u:'#`()',p:8},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:12},
{t:M,n:'sqlType',u:'#`()',p:13},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:14},
{t:C,n:'CharacterType',c:'`.html',p:270},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getDefaultValue',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getPrimitiveClass',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:10},
{t:C,n:'CharBooleanType',c:'`.html',p:281},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:1},
{t:M,n:'getFalseString',u:'#`()',p:2},
{t:M,n:'getTrueString',u:'#`()',p:3},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:4},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:5},
{t:M,n:'sqlType',u:'#`()',p:6},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:7},
{t:C,n:'ClassType',c:'`.html',p:289},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getName',u:'#`()',p:3},
{t:M,n:'getReturnedClass',u:'#`()',p:4},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:5},
{t:M,n:'sqlType',u:'#`()',p:6},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:7},
{t:C,n:'ClobType',c:'`.html',p:297},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:4},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:5},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:6},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:7},
{t:M,n:'getName',u:'#`()',p:8},
{t:M,n:'getReturnedClass',u:'#`()',p:9},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:11},
{t:M,n:'isMutable',u:'#`()',p:12},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:13},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:14},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:15},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, org.hibernate.engine.SessionImplementor)',p:16},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:17},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:18},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:19},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:20},
{t:C,n:'CollectionType',c:'`.html',p:318},
{t:O,n:'UNFETCHED_COLLECTION',u:'#`',p:1},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'contains',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:5},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:6},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:7},
{t:M,n:'getAssociatedEntityName',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:8},
{t:M,n:'getAssociatedJoinable',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:9},
{t:M,n:'getCollection',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:10},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:11},
{t:M,n:'getElementsIterator',u:'#`(java.lang.Object)',p:12},
{t:M,n:'getElementType',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:13},
{t:M,n:'getForeignKeyDirection',u:'#`()',p:14},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:15},
{t:M,n:'getKeyOfOwner',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:16},
{t:M,n:'getLHSPropertyName',u:'#`()',p:17},
{t:M,n:'getName',u:'#`()',p:18},
{t:M,n:'getOnCondition',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:19},
{t:M,n:'getRHSUniqueKeyPropertyName',u:'#`()',p:20},
{t:M,n:'getRole',u:'#`()',p:21},
{t:M,n:'hasHolder',u:'#`(org.hibernate.EntityMode)',p:22},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:23},
{t:M,n:'indexOf',u:'#`(java.lang.Object, java.lang.Object)',p:24},
{t:M,n:'initializeImmediately',u:'#`(org.hibernate.EntityMode)',p:25},
{t:M,n:'instantiate',u:'#`()',p:26},
{t:M,n:'instantiateResult',u:'#`(java.lang.Object)',p:27},
{t:M,n:'isAlwaysDirtyChecked',u:'#`()',p:28},
{t:M,n:'isArrayType',u:'#`()',p:29},
{t:M,n:'isAssociationType',u:'#`()',p:30},
{t:M,n:'isCollectionType',u:'#`()',p:31},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:32},
{t:M,n:'isEmbeddedInXML',u:'#`()',p:33},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:34},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:35},
{t:M,n:'isMutable',u:'#`()',p:36},
{t:M,n:'isXMLElement',u:'#`()',p:37},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:38},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:39},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:40},
{t:M,n:'replaceElements',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:41},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:42},
{t:M,n:'semiResolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:43},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:44},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:45},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:46},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:47},
{t:M,n:'toString',u:'#`()',p:48},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:49},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:50},
{t:C,n:'ComponentType',c:'`.html',p:369},
{t:O,n:'propertySpan',u:'#`',p:1},
{t:O,n:'tuplizers',u:'#`',p:2},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:4},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:5},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:6},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:7},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:8},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:9},
{t:M,n:'getFetchMode',u:'#`(int)',p:10},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:11},
{t:M,n:'getName',u:'#`()',p:12},
{t:M,n:'getPropertyNames',u:'#`()',p:13},
{t:M,n:'getPropertyNullability',u:'#`()',p:14},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int, org.hibernate.EntityMode)',p:15},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:16},
{t:M,n:'getReturnedClass',u:'#`()',p:17},
{t:M,n:'getSubtypes',u:'#`()',p:18},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:19},
{t:M,n:'instantiate',u:'#`(org.hibernate.EntityMode)',p:20},
{t:M,n:'isComponentType',u:'#`()',p:21},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:22},
{t:M,n:'isEmbedded',u:'#`()',p:23},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:24},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:25},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:26},
{t:M,n:'isMutable',u:'#`()',p:27},
{t:M,n:'isSame',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:28},
{t:M,n:'isXMLElement',u:'#`()',p:29},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:30},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:32},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:33},
{t:M,n:'semiResolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:34},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:35},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:36},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:37},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:38},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:39},
{t:C,n:'CompositeCustomType',c:'`.html',p:409},
{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, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:4},
{t:M,n:'getCascadeStyle',u:'#`(int)',p:5},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:6},
{t:M,n:'getFetchMode',u:'#`(int)',p:7},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:8},
{t:M,n:'getName',u:'#`()',p:9},
{t:M,n:'getPropertyNames',u:'#`()',p:10},
{t:M,n:'getPropertyNullability',u:'#`()',p:11},
{t:M,n:'getPropertyValue',u:'#`(java.lang.Object, int)',p:12},
{t:M,n:'getPropertyValues',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:13},
{t:M,n:'getReturnedClass',u:'#`()',p:14},
{t:M,n:'getSubtypes',u:'#`()',p:15},
{t:M,n:'isComponentType',u:'#`()',p:16},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:17},
{t:M,n:'isEmbedded',u:'#`()',p:18},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:19},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:20},
{t:M,n:'isMutable',u:'#`()',p:21},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:22},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:23},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:24},
{t:M,n:'setPropertyValues',u:'#`(java.lang.Object, java.lang.Object[], org.hibernate.EntityMode)',p:25},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:26},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:27},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:28},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:29},
{t:C,n:'CurrencyType',c:'`.html',p:439},
{t:O,n:'CURRENCY_CLASS',u:'#`',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getReturnedClass',u:'#`()',p:5},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:6},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:7},
{t:M,n:'sqlType',u:'#`()',p:8},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:9},
{t:C,n:'CustomCollectionType',c:'`.html',p:449},
{t:M,n:'contains',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getElementsIterator',u:'#`(java.lang.Object)',p:2},
{t:M,n:'getReturnedClass',u:'#`()',p:3},
{t:M,n:'indexOf',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'instantiate',u:'#`()',p:5},
{t:M,n:'replaceElements',u:'#`(java.lang.Object, java.lang.Object, java.lang.Object, java.util.Map, org.hibernate.engine.SessionImplementor)',p:6},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:7},
{t:C,n:'CustomType',c:'`.html',p:457},
{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, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:4},
{t:M,n:'fromXMLString',u:'#`(java.lang.String, org.hibernate.engine.Mapping)',p:5},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:6},
{t:M,n:'getComparator',u:'#`()',p:7},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:8},
{t:M,n:'getName',u:'#`()',p:9},
{t:M,n:'getReturnedClass',u:'#`()',p:10},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:12},
{t:M,n:'isMutable',u:'#`()',p:13},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:14},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:15},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:16},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:17},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:18},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:19},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:20},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:21},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:22},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:23},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:24},
{t:M,n:'toXMLString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:25},
{t:C,n:'DateType',c:'`.html',p:483},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:7},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:8},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:9},
{t:M,n:'sqlType',u:'#`()',p:10},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:11},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:12},
{t:C,n:'DbTimestampType',c:'`.html',p:496},
{t:M,n:'getName',u:'#`()',p:1},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'DoubleType',c:'`.html',p:499},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getDefaultValue',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getPrimitiveClass',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:C,n:'EmbeddedComponentType',c:'`.html',p:509},
{t:M,n:'instantiate',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'isEmbedded',u:'#`()',p:2},
{t:M,n:'isMethodOf',u:'#`(java.lang.reflect.Method)',p:3},
{t:C,n:'EntityType',c:'`.html',p:513},
{t:O,n:'isEmbeddedInXML',u:'#`',p:1},
{t:O,n:'uniqueKeyPropertyName',u:'#`',p:2},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:3},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:5},
{t:M,n:'getAssociatedEntityName',u:'#`()',p:6},
{t:M,n:'getAssociatedJoinable',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:7},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:8},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'getIdentifierOrUniqueKeyPropertyName',u:'#`(org.hibernate.engine.Mapping)',p:10},
{t:M,n:'getIdentifierOrUniqueKeyType',u:'#`(org.hibernate.engine.Mapping)',p:11},
{t:M,n:'getLHSPropertyName',u:'#`()',p:12},
{t:M,n:'getName',u:'#`()',p:13},
{t:M,n:'getOnCondition',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor, java.util.Map)',p:14},
{t:M,n:'getPropertyName',u:'#`()',p:15},
{t:M,n:'getReturnedClass',u:'#`()',p:16},
{t:M,n:'getRHSUniqueKeyPropertyName',u:'#`()',p:17},
{t:M,n:'getSemiResolvedType',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:18},
{t:M,n:'isAssociationType',u:'#`()',p:19},
{t:M,n:'isEmbeddedInXML',u:'#`()',p:20},
{t:M,n:'isEntityType',u:'#`()',p:21},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:22},
{t:M,n:'isMutable',u:'#`()',p:23},
{t:M,n:'isNotEmbedded',u:'#`(org.hibernate.engine.SessionImplementor)',p:24},
{t:M,n:'isNull',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:25},
{t:M,n:'isNullable',u:'#`()',p:26},
{t:M,n:'isOneToOne',u:'#`()',p:27},
{t:M,n:'isReferenceToPrimaryKey',u:'#`()',p:28},
{t:M,n:'isSame',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:29},
{t:M,n:'isXMLElement',u:'#`()',p:30},
{t:M,n:'loadByUniqueKey',u:'#`(java.lang.String, java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:31},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:32},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:33},
{t:M,n:'resolve',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:34},
{t:M,n:'resolveIdentifier',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:35},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:36},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:37},
{t:M,n:'toString',u:'#`()',p:38},
{t:C,n:'FloatType',c:'`.html',p:552},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getDefaultValue',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getPrimitiveClass',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:7},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:8},
{t:M,n:'sqlType',u:'#`()',p:9},
{t:C,n:'ForeignKeyDirection',c:'`.html',p:562},
{t:O,n:'FOREIGN_KEY_FROM_PARENT',u:'#`',p:1},
{t:O,n:'FOREIGN_KEY_TO_PARENT',u:'#`',p:2},
{t:M,n:'cascadeNow',u:'#`(int)',p:3},
{t:C,n:'IdentifierBagType',c:'`.html',p:566},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'instantiate',u:'#`()',p:2},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'ImmutableType',c:'`.html',p:570},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'isMutable',u:'#`()',p:2},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:3},
{t:C,n:'IntegerType',c:'`.html',p:574},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getComparator',u:'#`()',p:3},
{t:M,n:'getDefaultValue',u:'#`()',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getPrimitiveClass',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:11},
{t:M,n:'sqlType',u:'#`()',p:12},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:13},
{t:C,n:'ListType',c:'`.html',p:588},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'indexOf',u:'#`(java.lang.Object, java.lang.Object)',p:2},
{t:M,n:'instantiate',u:'#`()',p:3},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:4},
{t:C,n:'LocaleType',c:'`.html',p:593},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getReturnedClass',u:'#`()',p:5},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:6},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:7},
{t:M,n:'sqlType',u:'#`()',p:8},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:9},
{t:C,n:'LongType',c:'`.html',p:603},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getComparator',u:'#`()',p:3},
{t:M,n:'getDefaultValue',u:'#`()',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getPrimitiveClass',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:11},
{t:M,n:'sqlType',u:'#`()',p:12},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:13},
{t:C,n:'ManyToOneType',c:'`.html',p:617},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'beforeAssemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:4},
{t:M,n:'getForeignKeyDirection',u:'#`()',p:5},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:6},
{t:M,n:'isAlwaysDirtyChecked',u:'#`()',p:7},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'isNullable',u:'#`()',p:10},
{t:M,n:'isOneToOne',u:'#`()',p:11},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:13},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:14},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:15},
{t:C,n:'MapType',c:'`.html',p:633},
{t:M,n:'getElementsIterator',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getReturnedClass',u:'#`()',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, 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:C,n:'MetaType',c:'`.html',p:640},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:2},
{t:M,n:'fromXMLString',u:'#`(java.lang.String, org.hibernate.engine.Mapping)',p:3},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'isMutable',u:'#`()',p:8},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:9},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:11},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:12},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:13},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:14},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:15},
{t:M,n:'toXMLString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:16},
{t:C,n:'MutableType',c:'`.html',p:657},
{t:M,n:'deepCopy',u:'#`(java.lang.Object, org.hibernate.EntityMode, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:2},
{t:M,n:'isMutable',u:'#`()',p:3},
{t:M,n:'replace',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:4},
{t:C,n:'NullableType',c:'`.html',p:662},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'fromXMLNode',u:'#`(org.dom4j.Node, org.hibernate.engine.Mapping)',p:2},
{t:M,n:'fromXMLString',u:'#`(java.lang.String, org.hibernate.engine.Mapping)',p:3},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:4},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:5},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:6},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:7},
{t:M,n:'nullSafeGet',u:'#`(java.sql.ResultSet, java.lang.String)',p:8},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:9},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:10},
{t:M,n:'setToXMLNode',u:'#`(org.dom4j.Node, java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:11},
{t:M,n:'sqlType',u:'#`()',p:12},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:13},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:14},
{t:M,n:'toLoggableString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:15},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:16},
{t:M,n:'toXMLString',u:'#`(java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)',p:17},
{t:C,n:'OneToOneType',c:'`.html',p:680},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:3},
{t:M,n:'getForeignKeyDirection',u:'#`()',p:4},
{t:M,n:'getPropertyName',u:'#`()',p:5},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:6},
{t:M,n:'isAlwaysDirtyChecked',u:'#`()',p:7},
{t:M,n:'isDirty',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'isModified',u:'#`(java.lang.Object, java.lang.Object, boolean[], org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'isNull',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'isNullable',u:'#`()',p:11},
{t:M,n:'isOneToOne',u:'#`()',p:12},
{t:M,n:'nullSafeSet',u:'#`(java.sql.PreparedStatement, java.lang.Object, int, boolean[], org.hibernate.engine.SessionImplementor)',p:13},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:14},
{t:M,n:'toColumnNullness',u:'#`(java.lang.Object, org.hibernate.engine.Mapping)',p:15},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:16},
{t:C,n:'OrderedMapType',c:'`.html',p:697},
{t:M,n:'instantiate',u:'#`()',p:1},
{t:C,n:'OrderedSetType',c:'`.html',p:699},
{t:M,n:'instantiate',u:'#`()',p:1},
{t:C,n:'PrimitiveType',c:'`.html',p:701},
{t:M,n:'getDefaultValue',u:'#`()',p:1},
{t:M,n:'getPrimitiveClass',u:'#`()',p:2},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:3},
{t:C,n:'SerializableType',c:'`.html',p:705},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:2},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:4},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:5},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:6},
{t:M,n:'getName',u:'#`()',p:7},
{t:M,n:'getReturnedClass',u:'#`()',p:8},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:9},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:10},
{t:M,n:'sqlType',u:'#`()',p:11},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:12},
{t:C,n:'SetType',c:'`.html',p:718},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'instantiate',u:'#`()',p:2},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'ShortType',c:'`.html',p:722},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getComparator',u:'#`()',p:3},
{t:M,n:'getDefaultValue',u:'#`()',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getPrimitiveClass',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:9},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:11},
{t:M,n:'sqlType',u:'#`()',p:12},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:13},
{t:C,n:'SortedMapType',c:'`.html',p:736},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'instantiate',u:'#`()',p:2},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'SortedSetType',c:'`.html',p:740},
{t:M,n:'getReturnedClass',u:'#`()',p:1},
{t:M,n:'instantiate',u:'#`()',p:2},
{t:M,n:'wrap',u:'#`(org.hibernate.engine.SessionImplementor, java.lang.Object)',p:3},
{t:C,n:'SpecialOneToOneType',c:'`.html',p:744},
{t:M,n:'assemble',u:'#`(java.io.Serializable, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:1},
{t:M,n:'disassemble',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.engine.Mapping)',p:3},
{t:M,n:'hydrate',u:'#`(java.sql.ResultSet, java.lang.String[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:4},
{t:M,n:'sqlTypes',u:'#`(org.hibernate.engine.Mapping)',p:5},
{t:M,n:'useLHSPrimaryKey',u:'#`()',p:6},
{t:C,n:'StringType',c:'`.html',p:751},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getName',u:'#`()',p:3},
{t:M,n:'getReturnedClass',u:'#`()',p:4},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:5},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:6},
{t:M,n:'sqlType',u:'#`()',p:7},
{t:M,n:'stringToObject',u:'#`(java.lang.String)',p:8},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:9},
{t:C,n:'TextType',c:'`.html',p:761},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:2},
{t:M,n:'getName',u:'#`()',p:3},
{t:M,n:'getReturnedClass',u:'#`()',p:4},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:5},
{t:M,n:'sqlType',u:'#`()',p:6},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:7},
{t:C,n:'TimestampType',c:'`.html',p:769},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getComparator',u:'#`()',p:4},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:5},
{t:M,n:'getName',u:'#`()',p:6},
{t:M,n:'getReturnedClass',u:'#`()',p:7},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:8},
{t:M,n:'next',u:'#`(java.lang.Object, org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:10},
{t:M,n:'seed',u:'#`(org.hibernate.engine.SessionImplementor)',p:11},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:12},
{t:M,n:'sqlType',u:'#`()',p:13},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:14},
{t:C,n:'TimeType',c:'`.html',p:784},
{t:M,n:'deepCopyNotNull',u:'#`(java.lang.Object)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getHashCode',u:'#`(java.lang.Object, org.hibernate.EntityMode)',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'getReturnedClass',u:'#`()',p:6},
{t:M,n:'isEqual',u:'#`(java.lang.Object, java.lang.Object)',p:7},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:8},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:9},
{t:M,n:'sqlType',u:'#`()',p:10},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:11},
{t:C,n:'TimeZoneType',c:'`.html',p:796},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object, org.hibernate.EntityMode)',p:1},
{t:M,n:'fromStringValue',u:'#`(java.lang.String)',p:2},
{t:M,n:'get',u:'#`(java.sql.ResultSet, java.lang.String)',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getReturnedClass',u:'#`()',p:5},
{t:M,n:'objectToSQLString',u:'#`(java.lang.Object, org.hibernate.dialect.Dialect)',p:6},
{t:M,n:'set',u:'#`(java.sql.PreparedStatement, java.lang.Object, int)',p:7},
{t:M,n:'sqlType',u:'#`()',p:8},
{t:M,n:'toString',u:'#`(java.lang.Object)',p:9},
{t:C,n:'TrueFalseType',c:'`.html',p:806},
{t:M,n:'getFalseString',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'getTrueString',u:'#`()',p:3},
{t:C,n:'TypeFactory',c:'`.html',p:810},
{t:M,n:'array',u:'#`(java.lang.String, java.lang.String, boolean, java.lang.Class)',p:1},
{t:M,n:'assemble',u:'#`(java.io.Serializable[], org.hibernate.type.Type[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:2},
{t:M,n:'bag',u:'#`(java.lang.String, java.lang.String, boolean)',p:3},
{t:M,n:'basic',u:'#`(java.lang.String)',p:4},
{t:M,n:'beforeAssemble',u:'#`(java.io.Serializable[], org.hibernate.type.Type[], org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'customCollection',u:'#`(java.lang.String, java.lang.String, java.lang.String, boolean)',p:6},
{t:M,n:'deepCopy',u:'#`(java.lang.Object[], org.hibernate.type.Type[], boolean[], java.lang.Object[], org.hibernate.engine.SessionImplementor)',p:7},
{t:M,n:'disassemble',u:'#`(java.lang.Object[], org.hibernate.type.Type[], boolean[], org.hibernate.engine.SessionImplementor, java.lang.Object)',p:8},
{t:M,n:'findDirty',u:'#`(org.hibernate.tuple.StandardProperty[], java.lang.Object[], java.lang.Object[], boolean[][], boolean, org.hibernate.engine.SessionImplementor)',p:9},
{t:M,n:'findModified',u:'#`(org.hibernate.tuple.StandardProperty[], java.lang.Object[], java.lang.Object[], boolean[][], boolean, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'heuristicType',u:'#`(java.lang.String)',p:11},
{t:M,n:'idbag',u:'#`(java.lang.String, java.lang.String, boolean)',p:12},
{t:M,n:'injectParameters',u:'#`(java.lang.Object, java.util.Properties)',p:13},
{t:M,n:'list',u:'#`(java.lang.String, java.lang.String, boolean)',p:14},
{t:M,n:'manyToOne',u:'#`(java.lang.String)',p:15},
{t:M,n:'map',u:'#`(java.lang.String, java.lang.String, boolean)',p:16},
{t:M,n:'oneToOne',u:'#`(java.lang.String, org.hibernate.type.ForeignKeyDirection, java.lang.String, boolean, boolean, boolean, java.lang.String, java.lang.String)',p:17},
{t:M,n:'orderedMap',u:'#`(java.lang.String, java.lang.String, boolean)',p:18},
{t:M,n:'orderedSet',u:'#`(java.lang.String, java.lang.String, boolean)',p:19},
{t:M,n:'replace',u:'#`(java.lang.Object[], java.lang.Object[], org.hibernate.type.Type[], org.hibernate.engine.SessionImplementor, java.lang.Object, java.util.Map)',p:20},
{t:M,n:'set',u:'#`(java.lang.String, java.lang.String, boolean)',p:21},
{t:M,n:'sortedMap',u:'#`(java.lang.String, java.lang.String, boolean, java.util.Comparator)',p:22},
{t:M,n:'sortedSet',u:'#`(java.lang.String, java.lang.String, boolean, java.util.Comparator)',p:23},
{t:C,n:'YesNoType',c:'`.html',p:834},
{t:M,n:'getFalseString',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'getTrueString',u:'#`()',p:3},
{t:C,n:'SerializationException',u:'`.html',p:838},
{t:P,n:'org.hibernate.jmx',u:'package-summary.html',c:'rg/hibernate/jmx/',p:5955},
{t:I,n:'HibernateServiceMBean',c:'`.html',p:1},
{t:M,n:'addMapResource',u:'#`(java.lang.String)',p:1},
{t:M,n:'createSchema',u:'#`()',p:2},
{t:M,n:'dropSchema',u:'#`()',p:3},
{t:M,n:'getAutoCloseSessionEnabled',u:'#`()',p:4},
{t:M,n:'getBatchVersionedDataEnabled',u:'#`()',p:5},
{t:M,n:'getCacheProviderClass',u:'#`()',p:6},
{t:M,n:'getCacheRegionPrefix',u:'#`()',p:7},
{t:M,n:'getCommentsEnabled',u:'#`()',p:8},
{t:M,n:'getDatasource',u:'#`()',p:9},
{t:M,n:'getDefaultCatalog',u:'#`()',p:10},
{t:M,n:'getDefaultSchema',u:'#`()',p:11},
{t:M,n:'getDialect',u:'#`()',p:12},
{t:M,n:'getFlushBeforeCompletionEnabled',u:'#`()',p:13},
{t:M,n:'getGetGeneratedKeysEnabled',u:'#`()',p:14},
{t:M,n:'getJdbcBatchSize',u:'#`()',p:15},
{t:M,n:'getJdbcFetchSize',u:'#`()',p:16},
{t:M,n:'getJdbcScrollableResultSetEnabled',u:'#`()',p:17},
{t:M,n:'getJndiName',u:'#`()',p:18},
{t:M,n:'getMapResources',u:'#`()',p:19},
{t:M,n:'getMaximumFetchDepth',u:'#`()',p:20},
{t:M,n:'getMinimalPutsEnabled',u:'#`()',p:21},
{t:M,n:'getPassword',u:'#`()',p:22},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:23},
{t:M,n:'getPropertyList',u:'#`()',p:24},
{t:M,n:'getQueryCacheEnabled',u:'#`()',p:25},
{t:M,n:'getQuerySubstitutions',u:'#`()',p:26},
{t:M,n:'getSecondLevelCacheEnabled',u:'#`()',p:27},
{t:M,n:'getShowSqlEnabled',u:'#`()',p:28},
{t:M,n:'getTransactionManagerLookupStrategy',u:'#`()',p:29},
{t:M,n:'getTransactionStrategy',u:'#`()',p:30},
{t:M,n:'getUserName',u:'#`()',p:31},
{t:M,n:'getUserTransactionName',u:'#`()',p:32},
{t:M,n:'setAutoCloseSessionEnabled',u:'#`(java.lang.String)',p:33},
{t:M,n:'setBatchVersionedDataEnabled',u:'#`(java.lang.String)',p:34},
{t:M,n:'setCacheProviderClass',u:'#`(java.lang.String)',p:35},
{t:M,n:'setCacheRegionPrefix',u:'#`(java.lang.String)',p:36},
{t:M,n:'setCommentsEnabled',u:'#`(java.lang.String)',p:37},
{t:M,n:'setDatasource',u:'#`(java.lang.String)',p:38},
{t:M,n:'setDefaultCatalog',u:'#`(java.lang.String)',p:39},
{t:M,n:'setDefaultSchema',u:'#`(java.lang.String)',p:40},
{t:M,n:'setDialect',u:'#`(java.lang.String)',p:41},
{t:M,n:'setFlushBeforeCompletionEnabled',u:'#`(java.lang.String)',p:42},
{t:M,n:'setGetGeneratedKeysEnabled',u:'#`(java.lang.String)',p:43},
{t:M,n:'setJdbcBatchSize',u:'#`(java.lang.String)',p:44},
{t:M,n:'setJdbcFetchSize',u:'#`(java.lang.String)',p:45},
{t:M,n:'setJdbcScrollableResultSetEnabled',u:'#`(java.lang.String)',p:46},
{t:M,n:'setJndiName',u:'#`(java.lang.String)',p:47},
{t:M,n:'setMapResources',u:'#`(java.lang.String)',p:48},
{t:M,n:'setMaximumFetchDepth',u:'#`(java.lang.String)',p:49},
{t:M,n:'setMinimalPutsEnabled',u:'#`(java.lang.String)',p:50},
{t:M,n:'setPassword',u:'#`(java.lang.String)',p:51},
{t:M,n:'setProperty',u:'#`(java.lang.String, java.lang.String)',p:52},
{t:M,n:'setQueryCacheEnabled',u:'#`(java.lang.String)',p:53},
{t:M,n:'setQuerySubstitutions',u:'#`(java.lang.String)',p:54},
{t:M,n:'setSecondLevelCacheEnabled',u:'#`(java.lang.String)',p:55},
{t:M,n:'setShowSqlEnabled',u:'#`(java.lang.String)',p:56},
{t:M,n:'setTransactionManagerLookupStrategy',u:'#`(java.lang.String)',p:57},
{t:M,n:'setTransactionStrategy',u:'#`(java.lang.String)',p:58},
{t:M,n:'setUserName',u:'#`(java.lang.String)',p:59},
{t:M,n:'setUserTransactionName',u:'#`(java.lang.String)',p:60},
{t:M,n:'start',u:'#`()',p:61},
{t:M,n:'stop',u:'#`()',p:62},
{t:I,n:'StatisticsServiceMBean',c:'`.html',p:64},
{t:M,n:'setSessionFactoryJNDIName',u:'#`(java.lang.String)',p:1},
{t:C,n:'HibernateService',c:'`.html',p:66},
{t:M,n:'createSchema',u:'#`()',p:1},
{t:M,n:'dropSchema',u:'#`()',p:2},
{t:M,n:'getAutoCloseSessionEnabled',u:'#`()',p:3},
{t:M,n:'getDatasource',u:'#`()',p:4},
{t:M,n:'getExtraProperties',u:'#`()',p:5},
{t:M,n:'getFlushBeforeCompletionEnabled',u:'#`()',p:6},
{t:M,n:'getJndiName',u:'#`()',p:7},
{t:M,n:'getName',u:'#`()',p:8},
{t:M,n:'getPassword',u:'#`()',p:9},
{t:M,n:'getProperties',u:'#`()',p:10},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:11},
{t:M,n:'getPropertyList',u:'#`()',p:12},
{t:M,n:'getTransactionManagerLookupStrategy',u:'#`()',p:13},
{t:M,n:'getTransactionStrategy',u:'#`()',p:14},
{t:M,n:'getUserName',u:'#`()',p:15},
{t:M,n:'getUserTransactionName',u:'#`()',p:16},
{t:M,n:'setAutoCloseSessionEnabled',u:'#`(java.lang.String)',p:17},
{t:M,n:'setDatasource',u:'#`(java.lang.String)',p:18},
{t:M,n:'setFlushBeforeCompletionEnabled',u:'#`(java.lang.String)',p:19},
{t:M,n:'setJndiName',u:'#`(java.lang.String)',p:20},
{t:M,n:'setPassword',u:'#`(java.lang.String)',p:21},
{t:M,n:'setProperty',u:'#`(java.lang.String, java.lang.String)',p:22},
{t:M,n:'setTransactionManagerLookupStrategy',u:'#`(java.lang.String)',p:23},
{t:M,n:'setTransactionStrategy',u:'#`(java.lang.String)',p:24},
{t:M,n:'setUserName',u:'#`(java.lang.String)',p:25},
{t:M,n:'setUserTransactionName',u:'#`(java.lang.String)',p:26},
{t:M,n:'start',u:'#`()',p:27},
{t:M,n:'stop',u:'#`()',p:28},
{t:C,n:'SessionFactoryStub',c:'`.html',p:95},
{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:'getReference',u:'#`()',p:13},
{t:M,n:'getStatistics',u:'#`()',p:14},
{t:M,n:'isClosed',u:'#`()',p:15},
{t:M,n:'openSession',u:'#`()',p:16},
{t:M,n:'openStatelessSession',u:'#`()',p:17},
{t:C,n:'StatisticsService',c:'`.html',p:113},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'getCloseStatementCount',u:'#`()',p:2},
{t:M,n:'getCollectionFetchCount',u:'#`()',p:3},
{t:M,n:'getCollectionLoadCount',u:'#`()',p:4},
{t:M,n:'getCollectionRecreateCount',u:'#`()',p:5},
{t:M,n:'getCollectionRemoveCount',u:'#`()',p:6},
{t:M,n:'getCollectionRoleNames',u:'#`()',p:7},
{t:M,n:'getCollectionStatistics',u:'#`(java.lang.String)',p:8},
{t:M,n:'getCollectionUpdateCount',u:'#`()',p:9},
{t:M,n:'getConnectCount',u:'#`()',p:10},
{t:M,n:'getEntityDeleteCount',u:'#`()',p:11},
{t:M,n:'getEntityFetchCount',u:'#`()',p:12},
{t:M,n:'getEntityInsertCount',u:'#`()',p:13},
{t:M,n:'getEntityLoadCount',u:'#`()',p:14},
{t:M,n:'getEntityNames',u:'#`()',p:15},
{t:M,n:'getEntityStatistics',u:'#`(java.lang.String)',p:16},
{t:M,n:'getEntityUpdateCount',u:'#`()',p:17},
{t:M,n:'getFlushCount',u:'#`()',p:18},
{t:M,n:'getOptimisticFailureCount',u:'#`()',p:19},
{t:M,n:'getPrepareStatementCount',u:'#`()',p:20},
{t:M,n:'getQueries',u:'#`()',p:21},
{t:M,n:'getQueryCacheHitCount',u:'#`()',p:22},
{t:M,n:'getQueryCacheMissCount',u:'#`()',p:23},
{t:M,n:'getQueryCachePutCount',u:'#`()',p:24},
{t:M,n:'getQueryExecutionCount',u:'#`()',p:25},
{t:M,n:'getQueryExecutionMaxTime',u:'#`()',p:26},
{t:M,n:'getQueryExecutionMaxTimeQueryString',u:'#`()',p:27},
{t:M,n:'getQueryStatistics',u:'#`(java.lang.String)',p:28},
{t:M,n:'getSecondLevelCacheHitCount',u:'#`()',p:29},
{t:M,n:'getSecondLevelCacheMissCount',u:'#`()',p:30},
{t:M,n:'getSecondLevelCachePutCount',u:'#`()',p:31},
{t:M,n:'getSecondLevelCacheRegionNames',u:'#`()',p:32},
{t:M,n:'getSecondLevelCacheStatistics',u:'#`(java.lang.String)',p:33},
{t:M,n:'getSessionCloseCount',u:'#`()',p:34},
{t:M,n:'getSessionOpenCount',u:'#`()',p:35},
{t:M,n:'getStartTime',u:'#`()',p:36},
{t:M,n:'getSuccessfulTransactionCount',u:'#`()',p:37},
{t:M,n:'getTransactionCount',u:'#`()',p:38},
{t:M,n:'isStatisticsEnabled',u:'#`()',p:39},
{t:M,n:'logSummary',u:'#`()',p:40},
{t:M,n:'setSessionFactory',u:'#`(org.hibernate.SessionFactory)',p:41},
{t:M,n:'setSessionFactoryJNDIName',u:'#`(java.lang.String)',p:42},
{t:M,n:'setStatisticsEnabled',u:'#`(boolean)',p:43},
{t:P,n:'org.hibernate.mapping',u:'package-summary.html',c:'rg/hibernate/mapping/',p:6112},
{t:I,n:'AuxiliaryDatabaseObject',c:'`.html',p:1},
{t:M,n:'addDialectScope',u:'#`(java.lang.String)',p:1},
{t:M,n:'appliesToDialect',u:'#`(org.hibernate.dialect.Dialect)',p:2},
{t:I,n:'Fetchable',c:'`.html',p:4},
{t:M,n:'getFetchMode',u:'#`()',p:1},
{t:M,n:'isLazy',u:'#`()',p:2},
{t:M,n:'setFetchMode',u:'#`(org.hibernate.FetchMode)',p:3},
{t:M,n:'setLazy',u:'#`(boolean)',p:4},
{t:I,n:'Filterable',c:'`.html',p:9},
{t:M,n:'addFilter',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:M,n:'getFilterMap',u:'#`()',p:2},
{t:I,n:'KeyValue',c:'`.html',p:12},
{t:M,n:'createForeignKeyOfEntity',u:'#`(java.lang.String)',p:1},
{t:M,n:'createIdentifierGenerator',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String, org.hibernate.mapping.RootClass)',p:2},
{t:M,n:'getNullValue',u:'#`()',p:3},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:4},
{t:M,n:'isIdentityColumn',u:'#`(org.hibernate.dialect.Dialect)',p:5},
{t:M,n:'isUpdateable',u:'#`()',p:6},
{t:I,n:'MetaAttributable',c:'`.html',p:19},
{t:M,n:'getMetaAttribute',u:'#`(java.lang.String)',p:1},
{t:M,n:'getMetaAttributes',u:'#`()',p:2},
{t:M,n:'setMetaAttributes',u:'#`(java.util.Map)',p:3},
{t:I,n:'PersistentClassVisitor',c:'`.html',p:23},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.JoinedSubclass)',p:1},
{t:I,n:'RelationalModel',c:'`.html',p:25},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:1},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:2},
{t:I,n:'Selectable',c:'`.html',p:28},
{t:M,n:'getAlias',u:'#`(org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'getTemplate',u:'#`(org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'getText',u:'#`()',p:3},
{t:M,n:'isFormula',u:'#`()',p:4},
{t:I,n:'TableOwner',c:'`.html',p:33},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:1},
{t:I,n:'Value',c:'`.html',p:35},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'createForeignKey',u:'#`()',p:2},
{t:M,n:'getColumnInsertability',u:'#`()',p:3},
{t:M,n:'getColumnIterator',u:'#`()',p:4},
{t:M,n:'getColumnSpan',u:'#`()',p:5},
{t:M,n:'getColumnUpdateability',u:'#`()',p:6},
{t:M,n:'getFetchMode',u:'#`()',p:7},
{t:M,n:'getTable',u:'#`()',p:8},
{t:M,n:'getType',u:'#`()',p:9},
{t:M,n:'hasFormula',u:'#`()',p:10},
{t:M,n:'isAlternateUniqueKey',u:'#`()',p:11},
{t:M,n:'isNullable',u:'#`()',p:12},
{t:M,n:'isSimpleValue',u:'#`()',p:13},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:14},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:15},
{t:I,n:'ValueVisitor',c:'`.html',p:51},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.Any)',p:1},
{t:C,n:'AbstractAuxiliaryDatabaseObject',c:'`.html',p:53},
{t:M,n:'addDialectScope',u:'#`(java.lang.String)',p:1},
{t:M,n:'appliesToDialect',u:'#`(org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'getDialectScopes',u:'#`()',p:3},
{t:C,n:'Any',c:'`.html',p:57},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getIdentifierType',u:'#`()',p:2},
{t:M,n:'getMetaType',u:'#`()',p:3},
{t:M,n:'getMetaValues',u:'#`()',p:4},
{t:M,n:'getType',u:'#`()',p:5},
{t:M,n:'setIdentifierType',u:'#`(java.lang.String)',p:6},
{t:M,n:'setMetaType',u:'#`(java.lang.String)',p:7},
{t:M,n:'setMetaValues',u:'#`(java.util.Map)',p:8},
{t:M,n:'setTypeByReflection',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:10},
{t:C,n:'Array',c:'`.html',p:68},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:2},
{t:M,n:'getElementClass',u:'#`()',p:3},
{t:M,n:'getElementClassName',u:'#`()',p:4},
{t:M,n:'isArray',u:'#`()',p:5},
{t:M,n:'setElementClassName',u:'#`(java.lang.String)',p:6},
{t:C,n:'Backref',c:'`.html',p:75},
{t:M,n:'getCollectionRole',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getPropertyAccessor',u:'#`(java.lang.Class)',p:3},
{t:M,n:'isBackRef',u:'#`()',p:4},
{t:M,n:'isBasicPropertyAccessor',u:'#`()',p:5},
{t:M,n:'setCollectionRole',u:'#`(java.lang.String)',p:6},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:7},
{t:C,n:'Bag',c:'`.html',p:83},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:2},
{t:C,n:'Collection',c:'`.html',p:86},
{t:O,n:'DEFAULT_ELEMENT_COLUMN_NAME',u:'#`',p:1},
{t:O,n:'DEFAULT_KEY_COLUMN_NAME',u:'#`',p:2},
{t:M,n:'addFilter',u:'#`(java.lang.String, java.lang.String)',p:3},
{t:M,n:'addManyToManyFilter',u:'#`(java.lang.String, java.lang.String)',p:4},
{t:M,n:'createAllKeys',u:'#`()',p:5},
{t:M,n:'createForeignKey',u:'#`()',p:6},
{t:M,n:'getBatchSize',u:'#`()',p:7},
{t:M,n:'getCacheConcurrencyStrategy',u:'#`()',p:8},
{t:M,n:'getCacheRegionName',u:'#`()',p:9},
{t:M,n:'getCollectionPersisterClass',u:'#`()',p:10},
{t:M,n:'getCollectionTable',u:'#`()',p:11},
{t:M,n:'getCollectionType',u:'#`()',p:12},
{t:M,n:'getColumnInsertability',u:'#`()',p:13},
{t:M,n:'getColumnIterator',u:'#`()',p:14},
{t:M,n:'getColumnSpan',u:'#`()',p:15},
{t:M,n:'getColumnUpdateability',u:'#`()',p:16},
{t:M,n:'getComparator',u:'#`()',p:17},
{t:M,n:'getComparatorClassName',u:'#`()',p:18},
{t:M,n:'getCustomSQLDelete',u:'#`()',p:19},
{t:M,n:'getCustomSQLDeleteAll',u:'#`()',p:20},
{t:M,n:'getCustomSQLInsert',u:'#`()',p:21},
{t:M,n:'getCustomSQLUpdate',u:'#`()',p:22},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:23},
{t:M,n:'getElement',u:'#`()',p:24},
{t:M,n:'getElementNodeName',u:'#`()',p:25},
{t:M,n:'getFetchMode',u:'#`()',p:26},
{t:M,n:'getFilterMap',u:'#`()',p:27},
{t:M,n:'getKey',u:'#`()',p:28},
{t:M,n:'getLoaderName',u:'#`()',p:29},
{t:M,n:'getManyToManyFilterMap',u:'#`()',p:30},
{t:M,n:'getManyToManyWhere',u:'#`()',p:31},
{t:M,n:'getNodeName',u:'#`()',p:32},
{t:M,n:'getOrderBy',u:'#`()',p:33},
{t:M,n:'getOwner',u:'#`()',p:34},
{t:M,n:'getOwnerEntityName',u:'#`()',p:35},
{t:M,n:'getReferencedPropertyName',u:'#`()',p:36},
{t:M,n:'getRole',u:'#`()',p:37},
{t:M,n:'getSynchronizedTables',u:'#`()',p:38},
{t:M,n:'getTable',u:'#`()',p:39},
{t:M,n:'getType',u:'#`()',p:40},
{t:M,n:'getTypeName',u:'#`()',p:41},
{t:M,n:'getWhere',u:'#`()',p:42},
{t:M,n:'hasFormula',u:'#`()',p:43},
{t:M,n:'hasOrder',u:'#`()',p:44},
{t:M,n:'hasOrphanDelete',u:'#`()',p:45},
{t:M,n:'isAlternateUniqueKey',u:'#`()',p:46},
{t:M,n:'isArray',u:'#`()',p:47},
{t:M,n:'isCustomDeleteAllCallable',u:'#`()',p:48},
{t:M,n:'isCustomDeleteCallable',u:'#`()',p:49},
{t:M,n:'isCustomInsertCallable',u:'#`()',p:50},
{t:M,n:'isCustomUpdateCallable',u:'#`()',p:51},
{t:M,n:'isEmbedded',u:'#`()',p:52},
{t:M,n:'isExtraLazy',u:'#`()',p:53},
{t:M,n:'isIdentified',u:'#`()',p:54},
{t:M,n:'isIndexed',u:'#`()',p:55},
{t:M,n:'isInverse',u:'#`()',p:56},
{t:M,n:'isLazy',u:'#`()',p:57},
{t:M,n:'isMap',u:'#`()',p:58},
{t:M,n:'isMutable',u:'#`()',p:59},
{t:M,n:'isNullable',u:'#`()',p:60},
{t:M,n:'isOneToMany',u:'#`()',p:61},
{t:M,n:'isOptimisticLocked',u:'#`()',p:62},
{t:M,n:'isPrimitiveArray',u:'#`()',p:63},
{t:M,n:'isSet',u:'#`()',p:64},
{t:M,n:'isSimpleValue',u:'#`()',p:65},
{t:M,n:'isSorted',u:'#`()',p:66},
{t:M,n:'isSubselectLoadable',u:'#`()',p:67},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:68},
{t:M,n:'setBatchSize',u:'#`(int)',p:69},
{t:M,n:'setCacheConcurrencyStrategy',u:'#`(java.lang.String)',p:70},
{t:M,n:'setCacheRegionName',u:'#`(java.lang.String)',p:71},
{t:M,n:'setCollectionPersisterClass',u:'#`(java.lang.Class)',p:72},
{t:M,n:'setCollectionTable',u:'#`(org.hibernate.mapping.Table)',p:73},
{t:M,n:'setComparator',u:'#`(java.util.Comparator)',p:74},
{t:M,n:'setComparatorClassName',u:'#`(java.lang.String)',p:75},
{t:M,n:'setCustomSQLDelete',u:'#`(java.lang.String, boolean)',p:76},
{t:M,n:'setCustomSQLDeleteAll',u:'#`(java.lang.String, boolean)',p:77},
{t:M,n:'setCustomSQLInsert',u:'#`(java.lang.String, boolean)',p:78},
{t:M,n:'setCustomSQLUpdate',u:'#`(java.lang.String, boolean)',p:79},
{t:M,n:'setElement',u:'#`(org.hibernate.mapping.Value)',p:80},
{t:M,n:'setElementNodeName',u:'#`(java.lang.String)',p:81},
{t:M,n:'setEmbedded',u:'#`(boolean)',p:82},
{t:M,n:'setExtraLazy',u:'#`(boolean)',p:83},
{t:M,n:'setFetchMode',u:'#`(org.hibernate.FetchMode)',p:84},
{t:M,n:'setInverse',u:'#`(boolean)',p:85},
{t:M,n:'setKey',u:'#`(org.hibernate.mapping.KeyValue)',p:86},
{t:M,n:'setLazy',u:'#`(boolean)',p:87},
{t:M,n:'setLoaderName',u:'#`(java.lang.String)',p:88},
{t:M,n:'setManyToManyWhere',u:'#`(java.lang.String)',p:89},
{t:M,n:'setMutable',u:'#`(boolean)',p:90},
{t:M,n:'setNodeName',u:'#`(java.lang.String)',p:91},
{t:M,n:'setOptimisticLocked',u:'#`(boolean)',p:92},
{t:M,n:'setOrderBy',u:'#`(java.lang.String)',p:93},
{t:M,n:'setOrphanDelete',u:'#`(boolean)',p:94},
{t:M,n:'setOwner',u:'#`(org.hibernate.mapping.PersistentClass)',p:95},
{t:M,n:'setReferencedPropertyName',u:'#`(java.lang.String)',p:96},
{t:M,n:'setRole',u:'#`(java.lang.String)',p:97},
{t:M,n:'setSorted',u:'#`(boolean)',p:98},
{t:M,n:'setSubselectLoadable',u:'#`(boolean)',p:99},
{t:M,n:'setTypeName',u:'#`(java.lang.String)',p:100},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:101},
{t:M,n:'setWhere',u:'#`(java.lang.String)',p:102},
{t:M,n:'toString',u:'#`()',p:103},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:104},
{t:C,n:'Column',c:'`.html',p:191},
{t:O,n:'DEFAULT_LENGTH',u:'#`',p:1},
{t:O,n:'DEFAULT_PRECISION',u:'#`',p:2},
{t:O,n:'DEFAULT_SCALE',u:'#`',p:3},
{t:M,n:'clone',u:'#`()',p:4},
{t:M,n:'equals',u:'#`(org.hibernate.mapping.Column)',p:5},
{t:M,n:'getAlias',u:'#`(org.hibernate.dialect.Dialect)',p:6},
{t:M,n:'getCanonicalName',u:'#`()',p:7},
{t:M,n:'getCheckConstraint',u:'#`()',p:8},
{t:M,n:'getComment',u:'#`()',p:9},
{t:M,n:'getDefaultValue',u:'#`()',p:10},
{t:M,n:'getLength',u:'#`()',p:11},
{t:M,n:'getName',u:'#`()',p:12},
{t:M,n:'getPrecision',u:'#`()',p:13},
{t:M,n:'getQuotedName',u:'#`()',p:14},
{t:M,n:'getScale',u:'#`()',p:15},
{t:M,n:'getSqlType',u:'#`()',p:16},
{t:M,n:'getSqlTypeCode',u:'#`()',p:17},
{t:M,n:'getTemplate',u:'#`(org.hibernate.dialect.Dialect)',p:18},
{t:M,n:'getText',u:'#`()',p:19},
{t:M,n:'getTypeIndex',u:'#`()',p:20},
{t:M,n:'getValue',u:'#`()',p:21},
{t:M,n:'hasCheckConstraint',u:'#`()',p:22},
{t:M,n:'hashCode',u:'#`()',p:23},
{t:M,n:'isFormula',u:'#`()',p:24},
{t:M,n:'isNullable',u:'#`()',p:25},
{t:M,n:'isQuoted',u:'#`()',p:26},
{t:M,n:'isUnique',u:'#`()',p:27},
{t:M,n:'setCheckConstraint',u:'#`(java.lang.String)',p:28},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:29},
{t:M,n:'setDefaultValue',u:'#`(java.lang.String)',p:30},
{t:M,n:'setLength',u:'#`(int)',p:31},
{t:M,n:'setName',u:'#`(java.lang.String)',p:32},
{t:M,n:'setNullable',u:'#`(boolean)',p:33},
{t:M,n:'setPrecision',u:'#`(int)',p:34},
{t:M,n:'setScale',u:'#`(int)',p:35},
{t:M,n:'setSqlType',u:'#`(java.lang.String)',p:36},
{t:M,n:'setSqlTypeCode',u:'#`(java.lang.Integer)',p:37},
{t:M,n:'setTypeIndex',u:'#`(int)',p:38},
{t:M,n:'setUnique',u:'#`(boolean)',p:39},
{t:M,n:'setValue',u:'#`(org.hibernate.mapping.Value)',p:40},
{t:M,n:'toString',u:'#`()',p:41},
{t:C,n:'Component',c:'`.html',p:233},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'addColumn',u:'#`(org.hibernate.mapping.Column)',p:2},
{t:M,n:'addProperty',u:'#`(org.hibernate.mapping.Property)',p:3},
{t:M,n:'addTuplizer',u:'#`(org.hibernate.EntityMode, java.lang.String)',p:4},
{t:M,n:'getColumnInsertability',u:'#`()',p:5},
{t:M,n:'getColumnIterator',u:'#`()',p:6},
{t:M,n:'getColumnSpan',u:'#`()',p:7},
{t:M,n:'getColumnUpdateability',u:'#`()',p:8},
{t:M,n:'getComponentClass',u:'#`()',p:9},
{t:M,n:'getComponentClassName',u:'#`()',p:10},
{t:M,n:'getMetaAttribute',u:'#`(java.lang.String)',p:11},
{t:M,n:'getMetaAttributes',u:'#`()',p:12},
{t:M,n:'getNodeName',u:'#`()',p:13},
{t:M,n:'getOwner',u:'#`()',p:14},
{t:M,n:'getParentProperty',u:'#`()',p:15},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:16},
{t:M,n:'getPropertyIterator',u:'#`()',p:17},
{t:M,n:'getPropertySpan',u:'#`()',p:18},
{t:M,n:'getTuplizerImplClassName',u:'#`(org.hibernate.EntityMode)',p:19},
{t:M,n:'getType',u:'#`()',p:20},
{t:M,n:'hasPojoRepresentation',u:'#`()',p:21},
{t:M,n:'isDynamic',u:'#`()',p:22},
{t:M,n:'isEmbedded',u:'#`()',p:23},
{t:M,n:'isKey',u:'#`()',p:24},
{t:M,n:'setComponentClassName',u:'#`(java.lang.String)',p:25},
{t:M,n:'setDynamic',u:'#`(boolean)',p:26},
{t:M,n:'setEmbedded',u:'#`(boolean)',p:27},
{t:M,n:'setKey',u:'#`(boolean)',p:28},
{t:M,n:'setMetaAttributes',u:'#`(java.util.Map)',p:29},
{t:M,n:'setNodeName',u:'#`(java.lang.String)',p:30},
{t:M,n:'setOwner',u:'#`(org.hibernate.mapping.PersistentClass)',p:31},
{t:M,n:'setParentProperty',u:'#`(java.lang.String)',p:32},
{t:M,n:'setTypeByReflection',u:'#`(java.lang.String, java.lang.String)',p:33},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:34},
{t:M,n:'toString',u:'#`()',p:35},
{t:C,n:'Constraint',c:'`.html',p:269},
{t:M,n:'addColumn',u:'#`(org.hibernate.mapping.Column)',p:1},
{t:M,n:'addColumns',u:'#`(java.util.Iterator)',p:2},
{t:M,n:'columnIterator',u:'#`()',p:3},
{t:M,n:'containsColumn',u:'#`(org.hibernate.mapping.Column)',p:4},
{t:M,n:'getColumn',u:'#`(int)',p:5},
{t:M,n:'getColumnIterator',u:'#`()',p:6},
{t:M,n:'getColumns',u:'#`()',p:7},
{t:M,n:'getColumnSpan',u:'#`()',p:8},
{t:M,n:'getName',u:'#`()',p:9},
{t:M,n:'getTable',u:'#`()',p:10},
{t:M,n:'setName',u:'#`(java.lang.String)',p:11},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:12},
{t:M,n:'sqlConstraintString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String, java.lang.String)',p:13},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:14},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:15},
{t:M,n:'toString',u:'#`()',p:16},
{t:C,n:'DenormalizedTable',c:'`.html',p:286},
{t:M,n:'containsColumn',u:'#`(org.hibernate.mapping.Column)',p:1},
{t:M,n:'createForeignKeys',u:'#`()',p:2},
{t:M,n:'getColumnIterator',u:'#`()',p:3},
{t:M,n:'getIndexIterator',u:'#`()',p:4},
{t:M,n:'getPrimaryKey',u:'#`()',p:5},
{t:M,n:'getUniqueKeyIterator',u:'#`()',p:6},
{t:C,n:'DependantValue',c:'`.html',p:293},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getType',u:'#`()',p:2},
{t:M,n:'isNullable',u:'#`()',p:3},
{t:M,n:'isUpdateable',u:'#`()',p:4},
{t:M,n:'setNullable',u:'#`(boolean)',p:5},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:6},
{t:M,n:'setUpdateable',u:'#`(boolean)',p:7},
{t:C,n:'ForeignKey',c:'`.html',p:301},
{t:M,n:'addReferencedColumns',u:'#`(java.util.Iterator)',p:1},
{t:M,n:'alignColumns',u:'#`()',p:2},
{t:M,n:'getReferencedColumns',u:'#`()',p:3},
{t:M,n:'getReferencedEntityName',u:'#`()',p:4},
{t:M,n:'getReferencedTable',u:'#`()',p:5},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:6},
{t:M,n:'isPhysicalConstraint',u:'#`()',p:7},
{t:M,n:'isReferenceToPrimaryKey',u:'#`()',p:8},
{t:M,n:'setCascadeDeleteEnabled',u:'#`(boolean)',p:9},
{t:M,n:'setReferencedEntityName',u:'#`(java.lang.String)',p:10},
{t:M,n:'setReferencedTable',u:'#`(org.hibernate.mapping.Table)',p:11},
{t:M,n:'sqlConstraintString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String, java.lang.String)',p:12},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:13},
{t:M,n:'toString',u:'#`()',p:14},
{t:C,n:'Formula',c:'`.html',p:316},
{t:M,n:'getAlias',u:'#`(org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'getFormula',u:'#`()',p:2},
{t:M,n:'getTemplate',u:'#`(org.hibernate.dialect.Dialect)',p:3},
{t:M,n:'getText',u:'#`()',p:4},
{t:M,n:'isFormula',u:'#`()',p:5},
{t:M,n:'setFormula',u:'#`(java.lang.String)',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'IdentifierBag',c:'`.html',p:324},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:2},
{t:C,n:'IdentifierCollection',c:'`.html',p:327},
{t:O,n:'DEFAULT_IDENTIFIER_COLUMN_NAME',u:'#`',p:1},
{t:M,n:'getIdentifier',u:'#`()',p:2},
{t:M,n:'isIdentified',u:'#`()',p:3},
{t:M,n:'setIdentifier',u:'#`(org.hibernate.mapping.KeyValue)',p:4},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:5},
{t:C,n:'Index',c:'`.html',p:333},
{t:M,n:'addColumn',u:'#`(org.hibernate.mapping.Column)',p:1},
{t:M,n:'addColumns',u:'#`(java.util.Iterator)',p:2},
{t:M,n:'buildSqlCreateIndexString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, org.hibernate.mapping.Table, java.util.Iterator, boolean, java.lang.String, java.lang.String)',p:3},
{t:M,n:'buildSqlDropIndexString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.mapping.Table, java.lang.String, java.lang.String, java.lang.String)',p:4},
{t:M,n:'containsColumn',u:'#`(org.hibernate.mapping.Column)',p:5},
{t:M,n:'getColumnIterator',u:'#`()',p:6},
{t:M,n:'getColumnSpan',u:'#`()',p:7},
{t:M,n:'getName',u:'#`()',p:8},
{t:M,n:'getTable',u:'#`()',p:9},
{t:M,n:'setName',u:'#`(java.lang.String)',p:10},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:11},
{t:M,n:'sqlConstraintString',u:'#`(org.hibernate.dialect.Dialect)',p:12},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:13},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:C,n:'IndexBackref',c:'`.html',p:349},
{t:M,n:'getCollectionRole',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getPropertyAccessor',u:'#`(java.lang.Class)',p:3},
{t:M,n:'isBackRef',u:'#`()',p:4},
{t:M,n:'isBasicPropertyAccessor',u:'#`()',p:5},
{t:M,n:'setCollectionRole',u:'#`(java.lang.String)',p:6},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:7},
{t:C,n:'IndexedCollection',c:'`.html',p:357},
{t:O,n:'DEFAULT_INDEX_COLUMN_NAME',u:'#`',p:1},
{t:M,n:'getIndex',u:'#`()',p:2},
{t:M,n:'getIndexNodeName',u:'#`()',p:3},
{t:M,n:'isIndexed',u:'#`()',p:4},
{t:M,n:'isList',u:'#`()',p:5},
{t:M,n:'setIndex',u:'#`(org.hibernate.mapping.Value)',p:6},
{t:M,n:'setIndexNodeName',u:'#`(java.lang.String)',p:7},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:8},
{t:C,n:'Join',c:'`.html',p:366},
{t:M,n:'addProperty',u:'#`(org.hibernate.mapping.Property)',p:1},
{t:M,n:'containsProperty',u:'#`(org.hibernate.mapping.Property)',p:2},
{t:M,n:'createForeignKey',u:'#`()',p:3},
{t:M,n:'createPrimaryKey',u:'#`()',p:4},
{t:M,n:'getCustomSQLDelete',u:'#`()',p:5},
{t:M,n:'getCustomSQLInsert',u:'#`()',p:6},
{t:M,n:'getCustomSQLUpdate',u:'#`()',p:7},
{t:M,n:'getKey',u:'#`()',p:8},
{t:M,n:'getPersistentClass',u:'#`()',p:9},
{t:M,n:'getPropertyIterator',u:'#`()',p:10},
{t:M,n:'getPropertySpan',u:'#`()',p:11},
{t:M,n:'getTable',u:'#`()',p:12},
{t:M,n:'isCustomDeleteCallable',u:'#`()',p:13},
{t:M,n:'isCustomInsertCallable',u:'#`()',p:14},
{t:M,n:'isCustomUpdateCallable',u:'#`()',p:15},
{t:M,n:'isInverse',u:'#`()',p:16},
{t:M,n:'isLazy',u:'#`()',p:17},
{t:M,n:'isOptional',u:'#`()',p:18},
{t:M,n:'isSequentialSelect',u:'#`()',p:19},
{t:M,n:'setCustomSQLDelete',u:'#`(java.lang.String, boolean)',p:20},
{t:M,n:'setCustomSQLInsert',u:'#`(java.lang.String, boolean)',p:21},
{t:M,n:'setCustomSQLUpdate',u:'#`(java.lang.String, boolean)',p:22},
{t:M,n:'setInverse',u:'#`(boolean)',p:23},
{t:M,n:'setKey',u:'#`(org.hibernate.mapping.KeyValue)',p:24},
{t:M,n:'setOptional',u:'#`(boolean)',p:25},
{t:M,n:'setPersistentClass',u:'#`(org.hibernate.mapping.PersistentClass)',p:26},
{t:M,n:'setSequentialSelect',u:'#`(boolean)',p:27},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:28},
{t:M,n:'toString',u:'#`()',p:29},
{t:C,n:'JoinedSubclass',c:'`.html',p:396},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:1},
{t:M,n:'getKey',u:'#`()',p:2},
{t:M,n:'getReferenceablePropertyIterator',u:'#`()',p:3},
{t:M,n:'getTable',u:'#`()',p:4},
{t:M,n:'setKey',u:'#`(org.hibernate.mapping.KeyValue)',p:5},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:6},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:7},
{t:C,n:'List',c:'`.html',p:404},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getBaseIndex',u:'#`()',p:2},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:3},
{t:M,n:'isList',u:'#`()',p:4},
{t:M,n:'setBaseIndex',u:'#`(int)',p:5},
{t:C,n:'ManyToOne',c:'`.html',p:410},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'createForeignKey',u:'#`()',p:2},
{t:M,n:'createPropertyRefConstraints',u:'#`(java.util.Map)',p:3},
{t:M,n:'getType',u:'#`()',p:4},
{t:M,n:'isIgnoreNotFound',u:'#`()',p:5},
{t:M,n:'setIgnoreNotFound',u:'#`(boolean)',p:6},
{t:C,n:'Map',c:'`.html',p:417},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'createAllKeys',u:'#`()',p:2},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:3},
{t:M,n:'isMap',u:'#`()',p:4},
{t:C,n:'MetaAttribute',c:'`.html',p:422},
{t:M,n:'addValue',u:'#`(java.lang.String)',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'getValue',u:'#`()',p:3},
{t:M,n:'getValues',u:'#`()',p:4},
{t:M,n:'isMultiValued',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'OneToMany',c:'`.html',p:429},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'createForeignKey',u:'#`()',p:2},
{t:M,n:'getAssociatedClass',u:'#`()',p:3},
{t:M,n:'getColumnInsertability',u:'#`()',p:4},
{t:M,n:'getColumnIterator',u:'#`()',p:5},
{t:M,n:'getColumnSpan',u:'#`()',p:6},
{t:M,n:'getColumnUpdateability',u:'#`()',p:7},
{t:M,n:'getFetchMode',u:'#`()',p:8},
{t:M,n:'getReferencedEntityName',u:'#`()',p:9},
{t:M,n:'getTable',u:'#`()',p:10},
{t:M,n:'getType',u:'#`()',p:11},
{t:M,n:'hasFormula',u:'#`()',p:12},
{t:M,n:'isAlternateUniqueKey',u:'#`()',p:13},
{t:M,n:'isEmbedded',u:'#`()',p:14},
{t:M,n:'isIgnoreNotFound',u:'#`()',p:15},
{t:M,n:'isNullable',u:'#`()',p:16},
{t:M,n:'isSimpleValue',u:'#`()',p:17},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:18},
{t:M,n:'setAssociatedClass',u:'#`(org.hibernate.mapping.PersistentClass)',p:19},
{t:M,n:'setEmbedded',u:'#`(boolean)',p:20},
{t:M,n:'setIgnoreNotFound',u:'#`(boolean)',p:21},
{t:M,n:'setReferencedEntityName',u:'#`(java.lang.String)',p:22},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:23},
{t:C,n:'OneToOne',c:'`.html',p:453},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'createForeignKey',u:'#`()',p:2},
{t:M,n:'getConstraintColumns',u:'#`()',p:3},
{t:M,n:'getEntityName',u:'#`()',p:4},
{t:M,n:'getForeignKeyType',u:'#`()',p:5},
{t:M,n:'getIdentifier',u:'#`()',p:6},
{t:M,n:'getPropertyName',u:'#`()',p:7},
{t:M,n:'getType',u:'#`()',p:8},
{t:M,n:'isConstrained',u:'#`()',p:9},
{t:M,n:'isNullable',u:'#`()',p:10},
{t:M,n:'setConstrained',u:'#`(boolean)',p:11},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:12},
{t:M,n:'setForeignKeyType',u:'#`(org.hibernate.type.ForeignKeyDirection)',p:13},
{t:M,n:'setIdentifier',u:'#`(org.hibernate.mapping.KeyValue)',p:14},
{t:M,n:'setPropertyName',u:'#`(java.lang.String)',p:15},
{t:C,n:'PersistentClass',c:'`.html',p:469},
{t:O,n:'NOT_NULL_DISCRIMINATOR_MAPPING',u:'#`',p:1},
{t:O,n:'NULL_DISCRIMINATOR_MAPPING',u:'#`',p:2},
{t:O,n:'optimisticLockMode',u:'#`',p:3},
{t:O,n:'synchronizedTables',u:'#`',p:4},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:5},
{t:M,n:'addFilter',u:'#`(java.lang.String, java.lang.String)',p:6},
{t:M,n:'addJoin',u:'#`(org.hibernate.mapping.Join)',p:7},
{t:M,n:'addProperty',u:'#`(org.hibernate.mapping.Property)',p:8},
{t:M,n:'addSubclass',u:'#`(org.hibernate.mapping.Subclass)',p:9},
{t:M,n:'addSubclassJoin',u:'#`(org.hibernate.mapping.Join)',p:10},
{t:M,n:'addSubclassProperty',u:'#`(org.hibernate.mapping.Property)',p:11},
{t:M,n:'addSubclassTable',u:'#`(org.hibernate.mapping.Table)',p:12},
{t:M,n:'addSynchronizedTable',u:'#`(java.lang.String)',p:13},
{t:M,n:'addTuplizer',u:'#`(org.hibernate.EntityMode, java.lang.String)',p:14},
{t:M,n:'checkColumnDuplication',u:'#`()',p:15},
{t:M,n:'checkPropertyColumnDuplication',u:'#`(java.util.Set, java.util.Iterator)',p:16},
{t:M,n:'createPrimaryKey',u:'#`()',p:17},
{t:M,n:'getBatchSize',u:'#`()',p:18},
{t:M,n:'getCacheConcurrencyStrategy',u:'#`()',p:19},
{t:M,n:'getClassName',u:'#`()',p:20},
{t:M,n:'getCustomSQLDelete',u:'#`()',p:21},
{t:M,n:'getCustomSQLInsert',u:'#`()',p:22},
{t:M,n:'getCustomSQLUpdate',u:'#`()',p:23},
{t:M,n:'getDirectSubclasses',u:'#`()',p:24},
{t:M,n:'getDiscriminator',u:'#`()',p:25},
{t:M,n:'getDiscriminatorColumnIterator',u:'#`()',p:26},
{t:M,n:'getDiscriminatorValue',u:'#`()',p:27},
{t:M,n:'getEntityName',u:'#`()',p:28},
{t:M,n:'getEntityPersisterClass',u:'#`()',p:29},
{t:M,n:'getFilterMap',u:'#`()',p:30},
{t:M,n:'getIdentifier',u:'#`()',p:31},
{t:M,n:'getIdentifierMapper',u:'#`()',p:32},
{t:M,n:'getIdentifierProperty',u:'#`()',p:33},
{t:M,n:'getIdentityTable',u:'#`()',p:34},
{t:M,n:'getJoinClosureIterator',u:'#`()',p:35},
{t:M,n:'getJoinClosureSpan',u:'#`()',p:36},
{t:M,n:'getJoinIterator',u:'#`()',p:37},
{t:M,n:'getJoinNumber',u:'#`(org.hibernate.mapping.Property)',p:38},
{t:M,n:'getKey',u:'#`()',p:39},
{t:M,n:'getKeyClosureIterator',u:'#`()',p:40},
{t:M,n:'getLoaderName',u:'#`()',p:41},
{t:M,n:'getMappedClass',u:'#`()',p:42},
{t:M,n:'getMetaAttribute',u:'#`(java.lang.String)',p:43},
{t:M,n:'getMetaAttributes',u:'#`()',p:44},
{t:M,n:'getNodeName',u:'#`()',p:45},
{t:M,n:'getNonDuplicatedPropertyIterator',u:'#`()',p:46},
{t:M,n:'getOptimisticLockMode',u:'#`()',p:47},
{t:M,n:'getProperty',u:'#`(java.lang.String)',p:48},
{t:M,n:'getPropertyClosureIterator',u:'#`()',p:49},
{t:M,n:'getPropertyClosureSpan',u:'#`()',p:50},
{t:M,n:'getPropertyIterator',u:'#`()',p:51},
{t:M,n:'getProxyInterface',u:'#`()',p:52},
{t:M,n:'getProxyInterfaceName',u:'#`()',p:53},
{t:M,n:'getRecursiveProperty',u:'#`(java.lang.String)',p:54},
{t:M,n:'getReferenceablePropertyIterator',u:'#`()',p:55},
{t:M,n:'getReferencedProperty',u:'#`(java.lang.String)',p:56},
{t:M,n:'getRootClass',u:'#`()',p:57},
{t:M,n:'getRootTable',u:'#`()',p:58},
{t:M,n:'getSubclassClosureIterator',u:'#`()',p:59},
{t:M,n:'getSubclassId',u:'#`()',p:60},
{t:M,n:'getSubclassIterator',u:'#`()',p:61},
{t:M,n:'getSubclassJoinClosureIterator',u:'#`()',p:62},
{t:M,n:'getSubclassPropertyClosureIterator',u:'#`()',p:63},
{t:M,n:'getSubclassSpan',u:'#`()',p:64},
{t:M,n:'getSubclassTableClosureIterator',u:'#`()',p:65},
{t:M,n:'getSuperclass',u:'#`()',p:66},
{t:M,n:'getSynchronizedTables',u:'#`()',p:67},
{t:M,n:'getTable',u:'#`()',p:68},
{t:M,n:'getTableClosureIterator',u:'#`()',p:69},
{t:M,n:'getTemporaryIdTableDDL',u:'#`()',p:70},
{t:M,n:'getTemporaryIdTableName',u:'#`()',p:71},
{t:M,n:'getTuplizerImplClassName',u:'#`(org.hibernate.EntityMode)',p:72},
{t:M,n:'getUnjoinedPropertyIterator',u:'#`()',p:73},
{t:M,n:'getVersion',u:'#`()',p:74},
{t:M,n:'getWhere',u:'#`()',p:75},
{t:M,n:'hasDom4jRepresentation',u:'#`()',p:76},
{t:M,n:'hasEmbeddedIdentifier',u:'#`()',p:77},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:78},
{t:M,n:'hasNaturalId',u:'#`()',p:79},
{t:M,n:'hasPojoRepresentation',u:'#`()',p:80},
{t:M,n:'hasSelectBeforeUpdate',u:'#`()',p:81},
{t:M,n:'hasSubclasses',u:'#`()',p:82},
{t:M,n:'hasSubselectLoadableCollections',u:'#`()',p:83},
{t:M,n:'isAbstract',u:'#`()',p:84},
{t:M,n:'isClassOrSuperclassJoin',u:'#`(org.hibernate.mapping.Join)',p:85},
{t:M,n:'isClassOrSuperclassTable',u:'#`(org.hibernate.mapping.Table)',p:86},
{t:M,n:'isCustomDeleteCallable',u:'#`()',p:87},
{t:M,n:'isCustomInsertCallable',u:'#`()',p:88},
{t:M,n:'isCustomUpdateCallable',u:'#`()',p:89},
{t:M,n:'isDiscriminatorInsertable',u:'#`()',p:90},
{t:M,n:'isDiscriminatorValueNotNull',u:'#`()',p:91},
{t:M,n:'isDiscriminatorValueNull',u:'#`()',p:92},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:93},
{t:M,n:'isForceDiscriminator',u:'#`()',p:94},
{t:M,n:'isInherited',u:'#`()',p:95},
{t:M,n:'isJoinedSubclass',u:'#`()',p:96},
{t:M,n:'isLazy',u:'#`()',p:97},
{t:M,n:'isLazyPropertiesCacheable',u:'#`()',p:98},
{t:M,n:'isMutable',u:'#`()',p:99},
{t:M,n:'isPolymorphic',u:'#`()',p:100},
{t:M,n:'isVersioned',u:'#`()',p:101},
{t:M,n:'prepareTemporaryTables',u:'#`(org.hibernate.engine.Mapping, org.hibernate.dialect.Dialect)',p:102},
{t:M,n:'setAbstract',u:'#`(java.lang.Boolean)',p:103},
{t:M,n:'setBatchSize',u:'#`(int)',p:104},
{t:M,n:'setClassName',u:'#`(java.lang.String)',p:105},
{t:M,n:'setCustomSQLDelete',u:'#`(java.lang.String, boolean)',p:106},
{t:M,n:'setCustomSQLInsert',u:'#`(java.lang.String, boolean)',p:107},
{t:M,n:'setCustomSQLUpdate',u:'#`(java.lang.String, boolean)',p:108},
{t:M,n:'setDiscriminatorValue',u:'#`(java.lang.String)',p:109},
{t:M,n:'setDynamicInsert',u:'#`(boolean)',p:110},
{t:M,n:'setDynamicUpdate',u:'#`(boolean)',p:111},
{t:M,n:'setEntityName',u:'#`(java.lang.String)',p:112},
{t:M,n:'setEntityPersisterClass',u:'#`(java.lang.Class)',p:113},
{t:M,n:'setIdentifierMapper',u:'#`(org.hibernate.mapping.Component)',p:114},
{t:M,n:'setLazy',u:'#`(boolean)',p:115},
{t:M,n:'setLoaderName',u:'#`(java.lang.String)',p:116},
{t:M,n:'setMetaAttributes',u:'#`(java.util.Map)',p:117},
{t:M,n:'setNodeName',u:'#`(java.lang.String)',p:118},
{t:M,n:'setOptimisticLockMode',u:'#`(int)',p:119},
{t:M,n:'setProxyInterfaceName',u:'#`(java.lang.String)',p:120},
{t:M,n:'setSelectBeforeUpdate',u:'#`(boolean)',p:121},
{t:M,n:'setSubselectLoadableCollections',u:'#`(boolean)',p:122},
{t:M,n:'toString',u:'#`()',p:123},
{t:M,n:'useDynamicInsert',u:'#`()',p:124},
{t:M,n:'useDynamicUpdate',u:'#`()',p:125},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:126},
{t:C,n:'PrimaryKey',c:'`.html',p:596},
{t:M,n:'sqlConstraintString',u:'#`(org.hibernate.dialect.Dialect)',p:1},
{t:C,n:'PrimitiveArray',c:'`.html',p:598},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'isPrimitiveArray',u:'#`()',p:2},
{t:C,n:'Property',c:'`.html',p:601},
{t:M,n:'getAccessorPropertyName',u:'#`(org.hibernate.EntityMode)',p:1},
{t:M,n:'getCascade',u:'#`()',p:2},
{t:M,n:'getCascadeStyle',u:'#`()',p:3},
{t:M,n:'getColumnIterator',u:'#`()',p:4},
{t:M,n:'getColumnSpan',u:'#`()',p:5},
{t:M,n:'getGeneration',u:'#`()',p:6},
{t:M,n:'getGetter',u:'#`(java.lang.Class)',p:7},
{t:M,n:'getMetaAttribute',u:'#`(java.lang.String)',p:8},
{t:M,n:'getMetaAttributes',u:'#`()',p:9},
{t:M,n:'getName',u:'#`()',p:10},
{t:M,n:'getNodeName',u:'#`()',p:11},
{t:M,n:'getPersistentClass',u:'#`()',p:12},
{t:M,n:'getPropertyAccessor',u:'#`(java.lang.Class)',p:13},
{t:M,n:'getPropertyAccessorName',u:'#`()',p:14},
{t:M,n:'getSetter',u:'#`(java.lang.Class)',p:15},
{t:M,n:'getType',u:'#`()',p:16},
{t:M,n:'getValue',u:'#`()',p:17},
{t:M,n:'isBackRef',u:'#`()',p:18},
{t:M,n:'isBasicPropertyAccessor',u:'#`()',p:19},
{t:M,n:'isComposite',u:'#`()',p:20},
{t:M,n:'isInsertable',u:'#`()',p:21},
{t:M,n:'isLazy',u:'#`()',p:22},
{t:M,n:'isNaturalIdentifier',u:'#`()',p:23},
{t:M,n:'isOptimisticLocked',u:'#`()',p:24},
{t:M,n:'isOptional',u:'#`()',p:25},
{t:M,n:'isPrimitive',u:'#`(java.lang.Class)',p:26},
{t:M,n:'isSelectable',u:'#`()',p:27},
{t:M,n:'isUpdateable',u:'#`()',p:28},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:29},
{t:M,n:'setCascade',u:'#`(java.lang.String)',p:30},
{t:M,n:'setGeneration',u:'#`(org.hibernate.mapping.PropertyGeneration)',p:31},
{t:M,n:'setInsertable',u:'#`(boolean)',p:32},
{t:M,n:'setLazy',u:'#`(boolean)',p:33},
{t:M,n:'setMetaAttributes',u:'#`(java.util.Map)',p:34},
{t:M,n:'setName',u:'#`(java.lang.String)',p:35},
{t:M,n:'setNaturalIdentifier',u:'#`(boolean)',p:36},
{t:M,n:'setNodeName',u:'#`(java.lang.String)',p:37},
{t:M,n:'setOptimisticLocked',u:'#`(boolean)',p:38},
{t:M,n:'setOptional',u:'#`(boolean)',p:39},
{t:M,n:'setPersistentClass',u:'#`(org.hibernate.mapping.PersistentClass)',p:40},
{t:M,n:'setPropertyAccessorName',u:'#`(java.lang.String)',p:41},
{t:M,n:'setSelectable',u:'#`(boolean)',p:42},
{t:M,n:'setUpdateable',u:'#`(boolean)',p:43},
{t:M,n:'setValue',u:'#`(org.hibernate.mapping.Value)',p:44},
{t:M,n:'toString',u:'#`()',p:45},
{t:C,n:'PropertyGeneration',c:'`.html',p:647},
{t:O,n:'ALWAYS',u:'#`',p:1},
{t:O,n:'INSERT',u:'#`',p:2},
{t:O,n:'NEVER',u:'#`',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'parse',u:'#`(java.lang.String)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'RootClass',c:'`.html',p:654},
{t:O,n:'DEFAULT_DISCRIMINATOR_COLUMN_NAME',u:'#`',p:1},
{t:O,n:'DEFAULT_IDENTIFIER_COLUMN_NAME',u:'#`',p:2},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:3},
{t:M,n:'addSubclass',u:'#`(org.hibernate.mapping.Subclass)',p:4},
{t:M,n:'getCacheConcurrencyStrategy',u:'#`()',p:5},
{t:M,n:'getCacheRegionName',u:'#`()',p:6},
{t:M,n:'getDiscriminator',u:'#`()',p:7},
{t:M,n:'getEntityPersisterClass',u:'#`()',p:8},
{t:M,n:'getIdentifier',u:'#`()',p:9},
{t:M,n:'getIdentifierProperty',u:'#`()',p:10},
{t:M,n:'getIdentityTables',u:'#`()',p:11},
{t:M,n:'getKey',u:'#`()',p:12},
{t:M,n:'getKeyClosureIterator',u:'#`()',p:13},
{t:M,n:'getOptimisticLockMode',u:'#`()',p:14},
{t:M,n:'getPropertyClosureIterator',u:'#`()',p:15},
{t:M,n:'getRootClass',u:'#`()',p:16},
{t:M,n:'getRootTable',u:'#`()',p:17},
{t:M,n:'getSubclassId',u:'#`()',p:18},
{t:M,n:'getSuperclass',u:'#`()',p:19},
{t:M,n:'getSynchronizedTables',u:'#`()',p:20},
{t:M,n:'getTable',u:'#`()',p:21},
{t:M,n:'getTableClosureIterator',u:'#`()',p:22},
{t:M,n:'getVersion',u:'#`()',p:23},
{t:M,n:'getWhere',u:'#`()',p:24},
{t:M,n:'hasEmbeddedIdentifier',u:'#`()',p:25},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:26},
{t:M,n:'isDiscriminatorInsertable',u:'#`()',p:27},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:28},
{t:M,n:'isForceDiscriminator',u:'#`()',p:29},
{t:M,n:'isInherited',u:'#`()',p:30},
{t:M,n:'isJoinedSubclass',u:'#`()',p:31},
{t:M,n:'isLazyPropertiesCacheable',u:'#`()',p:32},
{t:M,n:'isMutable',u:'#`()',p:33},
{t:M,n:'isPolymorphic',u:'#`()',p:34},
{t:M,n:'isVersioned',u:'#`()',p:35},
{t:M,n:'setCacheConcurrencyStrategy',u:'#`(java.lang.String)',p:36},
{t:M,n:'setCacheRegionName',u:'#`(java.lang.String)',p:37},
{t:M,n:'setDiscriminator',u:'#`(org.hibernate.mapping.Value)',p:38},
{t:M,n:'setDiscriminatorInsertable',u:'#`(boolean)',p:39},
{t:M,n:'setEmbeddedIdentifier',u:'#`(boolean)',p:40},
{t:M,n:'setEntityPersisterClass',u:'#`(java.lang.Class)',p:41},
{t:M,n:'setExplicitPolymorphism',u:'#`(boolean)',p:42},
{t:M,n:'setForceDiscriminator',u:'#`(boolean)',p:43},
{t:M,n:'setIdentifier',u:'#`(org.hibernate.mapping.KeyValue)',p:44},
{t:M,n:'setIdentifierProperty',u:'#`(org.hibernate.mapping.Property)',p:45},
{t:M,n:'setLazyPropertiesCacheable',u:'#`(boolean)',p:46},
{t:M,n:'setMutable',u:'#`(boolean)',p:47},
{t:M,n:'setPolymorphic',u:'#`(boolean)',p:48},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:49},
{t:M,n:'setVersion',u:'#`(org.hibernate.mapping.Property)',p:50},
{t:M,n:'setWhere',u:'#`(java.lang.String)',p:51},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:52},
{t:C,n:'Set',c:'`.html',p:707},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'getDefaultCollectionType',u:'#`()',p:2},
{t:M,n:'isSet',u:'#`()',p:3},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:4},
{t:C,n:'SimpleAuxiliaryDatabaseObject',c:'`.html',p:712},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:1},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:2},
{t:C,n:'SimpleValue',c:'`.html',p:715},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:1},
{t:M,n:'addColumn',u:'#`(org.hibernate.mapping.Column)',p:2},
{t:M,n:'addFormula',u:'#`(org.hibernate.mapping.Formula)',p:3},
{t:M,n:'createForeignKey',u:'#`()',p:4},
{t:M,n:'createForeignKeyOfEntity',u:'#`(java.lang.String)',p:5},
{t:M,n:'createIdentifierGenerator',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String, org.hibernate.mapping.RootClass)',p:6},
{t:M,n:'getColumnInsertability',u:'#`()',p:7},
{t:M,n:'getColumnIterator',u:'#`()',p:8},
{t:M,n:'getColumnSpan',u:'#`()',p:9},
{t:M,n:'getColumnUpdateability',u:'#`()',p:10},
{t:M,n:'getConstraintColumns',u:'#`()',p:11},
{t:M,n:'getFetchMode',u:'#`()',p:12},
{t:M,n:'getForeignKeyName',u:'#`()',p:13},
{t:M,n:'getIdentifierGeneratorProperties',u:'#`()',p:14},
{t:M,n:'getIdentifierGeneratorStrategy',u:'#`()',p:15},
{t:M,n:'getNullValue',u:'#`()',p:16},
{t:M,n:'getTable',u:'#`()',p:17},
{t:M,n:'getType',u:'#`()',p:18},
{t:M,n:'getTypeName',u:'#`()',p:19},
{t:M,n:'getTypeParameters',u:'#`()',p:20},
{t:M,n:'hasFormula',u:'#`()',p:21},
{t:M,n:'isAlternateUniqueKey',u:'#`()',p:22},
{t:M,n:'isCascadeDeleteEnabled',u:'#`()',p:23},
{t:M,n:'isIdentityColumn',u:'#`(org.hibernate.dialect.Dialect)',p:24},
{t:M,n:'isNullable',u:'#`()',p:25},
{t:M,n:'isSimpleValue',u:'#`()',p:26},
{t:M,n:'isTypeSpecified',u:'#`()',p:27},
{t:M,n:'isUpdateable',u:'#`()',p:28},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:29},
{t:M,n:'setAlternateUniqueKey',u:'#`(boolean)',p:30},
{t:M,n:'setCascadeDeleteEnabled',u:'#`(boolean)',p:31},
{t:M,n:'setForeignKeyName',u:'#`(java.lang.String)',p:32},
{t:M,n:'setIdentifierGeneratorProperties',u:'#`(java.util.Properties)',p:33},
{t:M,n:'setIdentifierGeneratorStrategy',u:'#`(java.lang.String)',p:34},
{t:M,n:'setNullValue',u:'#`(java.lang.String)',p:35},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:36},
{t:M,n:'setTypeName',u:'#`(java.lang.String)',p:37},
{t:M,n:'setTypeParameters',u:'#`(java.util.Properties)',p:38},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:39},
{t:M,n:'toString',u:'#`()',p:40},
{t:C,n:'SingleTableSubclass',c:'`.html',p:756},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:1},
{t:M,n:'getDiscriminatorColumnIterator',u:'#`()',p:2},
{t:M,n:'getNonDuplicatedPropertyIterator',u:'#`()',p:3},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:4},
{t:C,n:'Subclass',c:'`.html',p:761},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:1},
{t:M,n:'addJoin',u:'#`(org.hibernate.mapping.Join)',p:2},
{t:M,n:'addProperty',u:'#`(org.hibernate.mapping.Property)',p:3},
{t:M,n:'addSubclassJoin',u:'#`(org.hibernate.mapping.Join)',p:4},
{t:M,n:'addSubclassProperty',u:'#`(org.hibernate.mapping.Property)',p:5},
{t:M,n:'addSubclassTable',u:'#`(org.hibernate.mapping.Table)',p:6},
{t:M,n:'createForeignKey',u:'#`()',p:7},
{t:M,n:'getCacheConcurrencyStrategy',u:'#`()',p:8},
{t:M,n:'getDiscriminator',u:'#`()',p:9},
{t:M,n:'getEntityPersisterClass',u:'#`()',p:10},
{t:M,n:'getFilterMap',u:'#`()',p:11},
{t:M,n:'getIdentifier',u:'#`()',p:12},
{t:M,n:'getIdentifierMapper',u:'#`()',p:13},
{t:M,n:'getIdentifierProperty',u:'#`()',p:14},
{t:M,n:'getJoinClosureIterator',u:'#`()',p:15},
{t:M,n:'getJoinClosureSpan',u:'#`()',p:16},
{t:M,n:'getKey',u:'#`()',p:17},
{t:M,n:'getKeyClosureIterator',u:'#`()',p:18},
{t:M,n:'getOptimisticLockMode',u:'#`()',p:19},
{t:M,n:'getPropertyClosureIterator',u:'#`()',p:20},
{t:M,n:'getPropertyClosureSpan',u:'#`()',p:21},
{t:M,n:'getRootClass',u:'#`()',p:22},
{t:M,n:'getRootTable',u:'#`()',p:23},
{t:M,n:'getSubclassId',u:'#`()',p:24},
{t:M,n:'getSuperclass',u:'#`()',p:25},
{t:M,n:'getSynchronizedTables',u:'#`()',p:26},
{t:M,n:'getTable',u:'#`()',p:27},
{t:M,n:'getTableClosureIterator',u:'#`()',p:28},
{t:M,n:'getTuplizerImplClassName',u:'#`(org.hibernate.EntityMode)',p:29},
{t:M,n:'getVersion',u:'#`()',p:30},
{t:M,n:'getWhere',u:'#`()',p:31},
{t:M,n:'hasEmbeddedIdentifier',u:'#`()',p:32},
{t:M,n:'hasIdentifierProperty',u:'#`()',p:33},
{t:M,n:'hasSubselectLoadableCollections',u:'#`()',p:34},
{t:M,n:'isClassOrSuperclassJoin',u:'#`(org.hibernate.mapping.Join)',p:35},
{t:M,n:'isClassOrSuperclassTable',u:'#`(org.hibernate.mapping.Table)',p:36},
{t:M,n:'isDiscriminatorInsertable',u:'#`()',p:37},
{t:M,n:'isExplicitPolymorphism',u:'#`()',p:38},
{t:M,n:'isForceDiscriminator',u:'#`()',p:39},
{t:M,n:'isInherited',u:'#`()',p:40},
{t:M,n:'isJoinedSubclass',u:'#`()',p:41},
{t:M,n:'isLazyPropertiesCacheable',u:'#`()',p:42},
{t:M,n:'isMutable',u:'#`()',p:43},
{t:M,n:'isPolymorphic',u:'#`()',p:44},
{t:M,n:'isVersioned',u:'#`()',p:45},
{t:M,n:'setEntityPersisterClass',u:'#`(java.lang.Class)',p:46},
{t:M,n:'setSuperclass',u:'#`(org.hibernate.mapping.PersistentClass)',p:47},
{t:C,n:'Table',c:'`.html',p:809},
{t:M,n:'addCheckConstraint',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumn',u:'#`(org.hibernate.mapping.Column)',p:2},
{t:M,n:'addIndex',u:'#`(org.hibernate.mapping.Index)',p:3},
{t:M,n:'addUniqueKey',u:'#`(org.hibernate.mapping.UniqueKey)',p:4},
{t:M,n:'containsColumn',u:'#`(org.hibernate.mapping.Column)',p:5},
{t:M,n:'createForeignKey',u:'#`(java.lang.String, java.util.List, java.lang.String)',p:6},
{t:M,n:'createForeignKeys',u:'#`()',p:7},
{t:M,n:'createUniqueKey',u:'#`(java.util.List)',p:8},
{t:M,n:'getCatalog',u:'#`()',p:9},
{t:M,n:'getColumn',u:'#`(org.hibernate.mapping.Column)',p:10},
{t:M,n:'getColumnIterator',u:'#`()',p:11},
{t:M,n:'getColumnSpan',u:'#`()',p:12},
{t:M,n:'getComment',u:'#`()',p:13},
{t:M,n:'getForeignKeyIterator',u:'#`()',p:14},
{t:M,n:'getIndex',u:'#`(java.lang.String)',p:15},
{t:M,n:'getIndexIterator',u:'#`()',p:16},
{t:M,n:'getName',u:'#`()',p:17},
{t:M,n:'getOrCreateIndex',u:'#`(java.lang.String)',p:18},
{t:M,n:'getOrCreateUniqueKey',u:'#`(java.lang.String)',p:19},
{t:M,n:'getPrimaryKey',u:'#`()',p:20},
{t:M,n:'getQualifiedName',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:21},
{t:M,n:'getQuotedName',u:'#`()',p:22},
{t:M,n:'getQuotedSchema',u:'#`()',p:23},
{t:M,n:'getRowId',u:'#`()',p:24},
{t:M,n:'getSchema',u:'#`()',p:25},
{t:M,n:'getSubselect',u:'#`()',p:26},
{t:M,n:'getUniqueInteger',u:'#`()',p:27},
{t:M,n:'getUniqueKey',u:'#`(java.lang.String)',p:28},
{t:M,n:'getUniqueKeyIterator',u:'#`()',p:29},
{t:M,n:'hasDenormalizedTables',u:'#`()',p:30},
{t:M,n:'hasPrimaryKey',u:'#`()',p:31},
{t:M,n:'isAbstract',u:'#`()',p:32},
{t:M,n:'isAbstractUnionTable',u:'#`()',p:33},
{t:M,n:'isPhysicalTable',u:'#`()',p:34},
{t:M,n:'isQuoted',u:'#`()',p:35},
{t:M,n:'isSchemaQuoted',u:'#`()',p:36},
{t:M,n:'isSubselect',u:'#`()',p:37},
{t:M,n:'qualify',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:38},
{t:M,n:'setAbstract',u:'#`(boolean)',p:39},
{t:M,n:'setCatalog',u:'#`(java.lang.String)',p:40},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:41},
{t:M,n:'setIdentifierValue',u:'#`(org.hibernate.mapping.KeyValue)',p:42},
{t:M,n:'setName',u:'#`(java.lang.String)',p:43},
{t:M,n:'setPrimaryKey',u:'#`(org.hibernate.mapping.PrimaryKey)',p:44},
{t:M,n:'setQuoted',u:'#`(boolean)',p:45},
{t:M,n:'setRowId',u:'#`(java.lang.String)',p:46},
{t:M,n:'setSchema',u:'#`(java.lang.String)',p:47},
{t:M,n:'setSubselect',u:'#`(java.lang.String)',p:48},
{t:M,n:'sqlAlterStrings',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, org.hibernate.tool.hbm2ddl.TableMetadata, java.lang.String, java.lang.String)',p:49},
{t:M,n:'sqlCommentStrings',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:50},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:51},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:52},
{t:M,n:'sqlTemporaryTableCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping)',p:53},
{t:M,n:'toString',u:'#`()',p:54},
{t:M,n:'uniqueColumnString',u:'#`(java.util.Iterator)',p:55},
{t:M,n:'validateColumns',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, org.hibernate.tool.hbm2ddl.TableMetadata)',p:56},
{t:C,n:'ToOne',c:'`.html',p:866},
{t:O,n:'referencedPropertyName',u:'#`',p:1},
{t:O,n:'unwrapProxy',u:'#`',p:2},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.ValueVisitor)',p:3},
{t:M,n:'createForeignKey',u:'#`()',p:4},
{t:M,n:'getFetchMode',u:'#`()',p:5},
{t:M,n:'getReferencedEntityName',u:'#`()',p:6},
{t:M,n:'getReferencedPropertyName',u:'#`()',p:7},
{t:M,n:'getType',u:'#`()',p:8},
{t:M,n:'isEmbedded',u:'#`()',p:9},
{t:M,n:'isLazy',u:'#`()',p:10},
{t:M,n:'isTypeSpecified',u:'#`()',p:11},
{t:M,n:'isUnwrapProxy',u:'#`()',p:12},
{t:M,n:'isValid',u:'#`(org.hibernate.engine.Mapping)',p:13},
{t:M,n:'setEmbedded',u:'#`(boolean)',p:14},
{t:M,n:'setFetchMode',u:'#`(org.hibernate.FetchMode)',p:15},
{t:M,n:'setLazy',u:'#`(boolean)',p:16},
{t:M,n:'setReferencedEntityName',u:'#`(java.lang.String)',p:17},
{t:M,n:'setReferencedPropertyName',u:'#`(java.lang.String)',p:18},
{t:M,n:'setTypeUsingReflection',u:'#`(java.lang.String, java.lang.String)',p:19},
{t:M,n:'setUnwrapProxy',u:'#`(boolean)',p:20},
{t:C,n:'TypeDef',c:'`.html',p:887},
{t:M,n:'getParameters',u:'#`()',p:1},
{t:M,n:'getTypeClass',u:'#`()',p:2},
{t:C,n:'UnionSubclass',c:'`.html',p:890},
{t:M,n:'accept',u:'#`(org.hibernate.mapping.PersistentClassVisitor)',p:1},
{t:M,n:'getIdentityTable',u:'#`()',p:2},
{t:M,n:'getNonDuplicatedPropertyIterator',u:'#`()',p:3},
{t:M,n:'getSynchronizedTables',u:'#`()',p:4},
{t:M,n:'getTable',u:'#`()',p:5},
{t:M,n:'setTable',u:'#`(org.hibernate.mapping.Table)',p:6},
{t:M,n:'validate',u:'#`(org.hibernate.engine.Mapping)',p:7},
{t:C,n:'UniqueKey',c:'`.html',p:898},
{t:M,n:'sqlConstraintString',u:'#`(org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'sqlCreateString',u:'#`(org.hibernate.dialect.Dialect, org.hibernate.engine.Mapping, java.lang.String, java.lang.String)',p:2},
{t:M,n:'sqlDropString',u:'#`(org.hibernate.dialect.Dialect, java.lang.String, java.lang.String)',p:3},
{t:P,n:'org.hibernate.stat',u:'package-summary.html',c:'rg/hibernate/stat/',p:7014},
{t:I,n:'SessionStatistics',c:'`.html',p:1},
{t:M,n:'getCollectionCount',u:'#`()',p:1},
{t:M,n:'getCollectionKeys',u:'#`()',p:2},
{t:M,n:'getEntityCount',u:'#`()',p:3},
{t:M,n:'getEntityKeys',u:'#`()',p:4},
{t:I,n:'Statistics',c:'`.html',p:6},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'getCloseStatementCount',u:'#`()',p:2},
{t:M,n:'getCollectionFetchCount',u:'#`()',p:3},
{t:M,n:'getCollectionLoadCount',u:'#`()',p:4},
{t:M,n:'getCollectionRecreateCount',u:'#`()',p:5},
{t:M,n:'getCollectionRemoveCount',u:'#`()',p:6},
{t:M,n:'getCollectionRoleNames',u:'#`()',p:7},
{t:M,n:'getCollectionStatistics',u:'#`(java.lang.String)',p:8},
{t:M,n:'getCollectionUpdateCount',u:'#`()',p:9},
{t:M,n:'getConnectCount',u:'#`()',p:10},
{t:M,n:'getEntityDeleteCount',u:'#`()',p:11},
{t:M,n:'getEntityFetchCount',u:'#`()',p:12},
{t:M,n:'getEntityInsertCount',u:'#`()',p:13},
{t:M,n:'getEntityLoadCount',u:'#`()',p:14},
{t:M,n:'getEntityNames',u:'#`()',p:15},
{t:M,n:'getEntityStatistics',u:'#`(java.lang.String)',p:16},
{t:M,n:'getEntityUpdateCount',u:'#`()',p:17},
{t:M,n:'getFlushCount',u:'#`()',p:18},
{t:M,n:'getOptimisticFailureCount',u:'#`()',p:19},
{t:M,n:'getPrepareStatementCount',u:'#`()',p:20},
{t:M,n:'getQueries',u:'#`()',p:21},
{t:M,n:'getQueryCacheHitCount',u:'#`()',p:22},
{t:M,n:'getQueryCacheMissCount',u:'#`()',p:23},
{t:M,n:'getQueryCachePutCount',u:'#`()',p:24},
{t:M,n:'getQueryExecutionCount',u:'#`()',p:25},
{t:M,n:'getQueryExecutionMaxTime',u:'#`()',p:26},
{t:M,n:'getQueryExecutionMaxTimeQueryString',u:'#`()',p:27},
{t:M,n:'getQueryStatistics',u:'#`(java.lang.String)',p:28},
{t:M,n:'getSecondLevelCacheHitCount',u:'#`()',p:29},
{t:M,n:'getSecondLevelCacheMissCount',u:'#`()',p:30},
{t:M,n:'getSecondLevelCachePutCount',u:'#`()',p:31},
{t:M,n:'getSecondLevelCacheRegionNames',u:'#`()',p:32},
{t:M,n:'getSecondLevelCacheStatistics',u:'#`(java.lang.String)',p:33},
{t:M,n:'getSessionCloseCount',u:'#`()',p:34},
{t:M,n:'getSessionOpenCount',u:'#`()',p:35},
{t:M,n:'getStartTime',u:'#`()',p:36},
{t:M,n:'getSuccessfulTransactionCount',u:'#`()',p:37},
{t:M,n:'getTransactionCount',u:'#`()',p:38},
{t:M,n:'isStatisticsEnabled',u:'#`()',p:39},
{t:M,n:'logSummary',u:'#`()',p:40},
{t:M,n:'setStatisticsEnabled',u:'#`(boolean)',p:41},
{t:I,n:'StatisticsImplementor',c:'`.html',p:48},
{t:M,n:'closeSession',u:'#`()',p:1},
{t:M,n:'closeStatement',u:'#`()',p:2},
{t:M,n:'connect',u:'#`()',p:3},
{t:M,n:'deleteEntity',u:'#`(java.lang.String)',p:4},
{t:M,n:'endTransaction',u:'#`(boolean)',p:5},
{t:M,n:'fetchCollection',u:'#`(java.lang.String)',p:6},
{t:M,n:'fetchEntity',u:'#`(java.lang.String)',p:7},
{t:M,n:'flush',u:'#`()',p:8},
{t:M,n:'insertEntity',u:'#`(java.lang.String)',p:9},
{t:M,n:'loadCollection',u:'#`(java.lang.String)',p:10},
{t:M,n:'loadEntity',u:'#`(java.lang.String)',p:11},
{t:M,n:'openSession',u:'#`()',p:12},
{t:M,n:'optimisticFailure',u:'#`(java.lang.String)',p:13},
{t:M,n:'prepareStatement',u:'#`()',p:14},
{t:M,n:'queryCacheHit',u:'#`(java.lang.String, java.lang.String)',p:15},
{t:M,n:'queryCacheMiss',u:'#`(java.lang.String, java.lang.String)',p:16},
{t:M,n:'queryCachePut',u:'#`(java.lang.String, java.lang.String)',p:17},
{t:M,n:'queryExecuted',u:'#`(java.lang.String, int, long)',p:18},
{t:M,n:'recreateCollection',u:'#`(java.lang.String)',p:19},
{t:M,n:'removeCollection',u:'#`(java.lang.String)',p:20},
{t:M,n:'secondLevelCacheHit',u:'#`(java.lang.String)',p:21},
{t:M,n:'secondLevelCacheMiss',u:'#`(java.lang.String)',p:22},
{t:M,n:'secondLevelCachePut',u:'#`(java.lang.String)',p:23},
{t:M,n:'updateCollection',u:'#`(java.lang.String)',p:24},
{t:M,n:'updateEntity',u:'#`(java.lang.String)',p:25},
{t:C,n:'CategorizedStatistics',c:'`.html',p:74},
{t:M,n:'getCategoryName',u:'#`()',p:1},
{t:C,n:'CollectionStatistics',c:'`.html',p:76},
{t:M,n:'getFetchCount',u:'#`()',p:1},
{t:M,n:'getLoadCount',u:'#`()',p:2},
{t:M,n:'getRecreateCount',u:'#`()',p:3},
{t:M,n:'getRemoveCount',u:'#`()',p:4},
{t:M,n:'getUpdateCount',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'EntityStatistics',c:'`.html',p:83},
{t:M,n:'getDeleteCount',u:'#`()',p:1},
{t:M,n:'getFetchCount',u:'#`()',p:2},
{t:M,n:'getInsertCount',u:'#`()',p:3},
{t:M,n:'getLoadCount',u:'#`()',p:4},
{t:M,n:'getOptimisticFailureCount',u:'#`()',p:5},
{t:M,n:'getUpdateCount',u:'#`()',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'QueryStatistics',c:'`.html',p:91},
{t:M,n:'getCacheHitCount',u:'#`()',p:1},
{t:M,n:'getCacheMissCount',u:'#`()',p:2},
{t:M,n:'getCachePutCount',u:'#`()',p:3},
{t:M,n:'getExecutionAvgTime',u:'#`()',p:4},
{t:M,n:'getExecutionCount',u:'#`()',p:5},
{t:M,n:'getExecutionMaxTime',u:'#`()',p:6},
{t:M,n:'getExecutionMinTime',u:'#`()',p:7},
{t:M,n:'getExecutionRowCount',u:'#`()',p:8},
{t:M,n:'toString',u:'#`()',p:9},
{t:C,n:'SecondLevelCacheStatistics',c:'`.html',p:101},
{t:M,n:'getElementCountInMemory',u:'#`()',p:1},
{t:M,n:'getElementCountOnDisk',u:'#`()',p:2},
{t:M,n:'getEntries',u:'#`()',p:3},
{t:M,n:'getHitCount',u:'#`()',p:4},
{t:M,n:'getMissCount',u:'#`()',p:5},
{t:M,n:'getPutCount',u:'#`()',p:6},
{t:M,n:'getSizeInMemory',u:'#`()',p:7},
{t:M,n:'toString',u:'#`()',p:8},
{t:C,n:'SessionStatisticsImpl',c:'`.html',p:110},
{t:M,n:'getCollectionCount',u:'#`()',p:1},
{t:M,n:'getCollectionKeys',u:'#`()',p:2},
{t:M,n:'getEntityCount',u:'#`()',p:3},
{t:M,n:'getEntityKeys',u:'#`()',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'StatisticsImpl',c:'`.html',p:116},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'closeSession',u:'#`()',p:2},
{t:M,n:'closeStatement',u:'#`()',p:3},
{t:M,n:'connect',u:'#`()',p:4},
{t:M,n:'deleteEntity',u:'#`(java.lang.String)',p:5},
{t:M,n:'endTransaction',u:'#`(boolean)',p:6},
{t:M,n:'fetchCollection',u:'#`(java.lang.String)',p:7},
{t:M,n:'fetchEntity',u:'#`(java.lang.String)',p:8},
{t:M,n:'flush',u:'#`()',p:9},
{t:M,n:'getCloseStatementCount',u:'#`()',p:10},
{t:M,n:'getCollectionFetchCount',u:'#`()',p:11},
{t:M,n:'getCollectionLoadCount',u:'#`()',p:12},
{t:M,n:'getCollectionRecreateCount',u:'#`()',p:13},
{t:M,n:'getCollectionRemoveCount',u:'#`()',p:14},
{t:M,n:'getCollectionRoleNames',u:'#`()',p:15},
{t:M,n:'getCollectionStatistics',u:'#`(java.lang.String)',p:16},
{t:M,n:'getCollectionUpdateCount',u:'#`()',p:17},
{t:M,n:'getConnectCount',u:'#`()',p:18},
{t:M,n:'getEntityDeleteCount',u:'#`()',p:19},
{t:M,n:'getEntityFetchCount',u:'#`()',p:20},
{t:M,n:'getEntityInsertCount',u:'#`()',p:21},
{t:M,n:'getEntityLoadCount',u:'#`()',p:22},
{t:M,n:'getEntityNames',u:'#`()',p:23},
{t:M,n:'getEntityStatistics',u:'#`(java.lang.String)',p:24},
{t:M,n:'getEntityUpdateCount',u:'#`()',p:25},
{t:M,n:'getFlushCount',u:'#`()',p:26},
{t:M,n:'getOptimisticFailureCount',u:'#`()',p:27},
{t:M,n:'getPrepareStatementCount',u:'#`()',p:28},
{t:M,n:'getQueries',u:'#`()',p:29},
{t:M,n:'getQueryCacheHitCount',u:'#`()',p:30},
{t:M,n:'getQueryCacheMissCount',u:'#`()',p:31},
{t:M,n:'getQueryCachePutCount',u:'#`()',p:32},
{t:M,n:'getQueryExecutionCount',u:'#`()',p:33},
{t:M,n:'getQueryExecutionMaxTime',u:'#`()',p:34},
{t:M,n:'getQueryExecutionMaxTimeQueryString',u:'#`()',p:35},
{t:M,n:'getQueryStatistics',u:'#`(java.lang.String)',p:36},
{t:M,n:'getSecondLevelCacheHitCount',u:'#`()',p:37},
{t:M,n:'getSecondLevelCacheMissCount',u:'#`()',p:38},
{t:M,n:'getSecondLevelCachePutCount',u:'#`()',p:39},
{t:M,n:'getSecondLevelCacheRegionNames',u:'#`()',p:40},
{t:M,n:'getSecondLevelCacheStatistics',u:'#`(java.lang.String)',p:41},
{t:M,n:'getSessionCloseCount',u:'#`()',p:42},
{t:M,n:'getSessionOpenCount',u:'#`()',p:43},
{t:M,n:'getStartTime',u:'#`()',p:44},
{t:M,n:'getSuccessfulTransactionCount',u:'#`()',p:45},
{t:M,n:'getTransactionCount',u:'#`()',p:46},
{t:M,n:'insertEntity',u:'#`(java.lang.String)',p:47},
{t:M,n:'isStatisticsEnabled',u:'#`()',p:48},
{t:M,n:'loadCollection',u:'#`(java.lang.String)',p:49},
{t:M,n:'loadEntity',u:'#`(java.lang.String)',p:50},
{t:M,n:'logSummary',u:'#`()',p:51},
{t:M,n:'openSession',u:'#`()',p:52},
{t:M,n:'optimisticFailure',u:'#`(java.lang.String)',p:53},
{t:M,n:'prepareStatement',u:'#`()',p:54},
{t:M,n:'queryCacheHit',u:'#`(java.lang.String, java.lang.String)',p:55},
{t:M,n:'queryCacheMiss',u:'#`(java.lang.String, java.lang.String)',p:56},
{t:M,n:'queryCachePut',u:'#`(java.lang.String, java.lang.String)',p:57},
{t:M,n:'queryExecuted',u:'#`(java.lang.String, int, long)',p:58},
{t:M,n:'recreateCollection',u:'#`(java.lang.String)',p:59},
{t:M,n:'removeCollection',u:'#`(java.lang.String)',p:60},
{t:M,n:'secondLevelCacheHit',u:'#`(java.lang.String)',p:61},
{t:M,n:'secondLevelCacheMiss',u:'#`(java.lang.String)',p:62},
{t:M,n:'secondLevelCachePut',u:'#`(java.lang.String)',p:63},
{t:M,n:'setStatisticsEnabled',u:'#`(boolean)',p:64},
{t:M,n:'toString',u:'#`()',p:65},
{t:M,n:'updateCollection',u:'#`(java.lang.String)',p:66},
{t:M,n:'updateEntity',u:'#`(java.lang.String)',p:67},
{t:P,n:'org.hibernate.tool.hbm2ddl',u:'package-summary.html',c:'rg/hibernate/tool/hbm2ddl/',p:7198},
{t:C,n:'ColumnMetadata',c:'`.html',p:1},
{t:M,n:'getColumnSize',u:'#`()',p:1},
{t:M,n:'getDecimalDigits',u:'#`()',p:2},
{t:M,n:'getName',u:'#`()',p:3},
{t:M,n:'getNullable',u:'#`()',p:4},
{t:M,n:'getTypeCode',u:'#`()',p:5},
{t:M,n:'getTypeName',u:'#`()',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'DatabaseMetadata',c:'`.html',p:9},
{t:M,n:'getTableMetadata',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:1},
{t:M,n:'isSequence',u:'#`(java.lang.Object)',p:2},
{t:M,n:'isTable',u:'#`(java.lang.Object)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'ForeignKeyMetadata',c:'`.html',p:14},
{t:M,n:'getColumns',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'IndexMetadata',c:'`.html',p:18},
{t:M,n:'getColumns',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'toString',u:'#`()',p:3},
{t:C,n:'SchemaExport',c:'`.html',p:22},
{t:M,n:'create',u:'#`(boolean, boolean)',p:1},
{t:M,n:'drop',u:'#`(boolean, boolean)',p:2},
{t:M,n:'execute',u:'#`(boolean, boolean, boolean, boolean)',p:3},
{t:M,n:'getExceptions',u:'#`()',p:4},
{t:M,n:'main',u:'#`(java.lang.String[])',p:5},
{t:M,n:'setDelimiter',u:'#`(java.lang.String)',p:6},
{t:M,n:'setFormat',u:'#`(boolean)',p:7},
{t:M,n:'setHaltOnError',u:'#`(boolean)',p:8},
{t:M,n:'setImportFile',u:'#`(java.lang.String)',p:9},
{t:M,n:'setOutputFile',u:'#`(java.lang.String)',p:10},
{t:C,n:'SchemaExportTask',c:'`.html',p:33},
{t:M,n:'addFileset',u:'#`(org.apache.tools.ant.types.FileSet)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'setConfig',u:'#`(java.io.File)',p:3},
{t:M,n:'setCreate',u:'#`(boolean)',p:4},
{t:M,n:'setDelimiter',u:'#`(java.lang.String)',p:5},
{t:M,n:'setDrop',u:'#`(boolean)',p:6},
{t:M,n:'setHaltonerror',u:'#`(boolean)',p:7},
{t:M,n:'setNamingStrategy',u:'#`(java.lang.String)',p:8},
{t:M,n:'setOutput',u:'#`(java.io.File)',p:9},
{t:M,n:'setProperties',u:'#`(java.io.File)',p:10},
{t:M,n:'setQuiet',u:'#`(boolean)',p:11},
{t:M,n:'setText',u:'#`(boolean)',p:12},
{t:C,n:'SchemaUpdate',c:'`.html',p:46},
{t:M,n:'execute',u:'#`(boolean, boolean)',p:1},
{t:M,n:'getExceptions',u:'#`()',p:2},
{t:M,n:'main',u:'#`(java.lang.String[])',p:3},
{t:C,n:'SchemaUpdateTask',c:'`.html',p:50},
{t:M,n:'addFileset',u:'#`(org.apache.tools.ant.types.FileSet)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'setConfig',u:'#`(java.io.File)',p:3},
{t:M,n:'setNamingStrategy',u:'#`(java.lang.String)',p:4},
{t:M,n:'setProperties',u:'#`(java.io.File)',p:5},
{t:M,n:'setQuiet',u:'#`(boolean)',p:6},
{t:M,n:'setText',u:'#`(boolean)',p:7},
{t:C,n:'SchemaValidator',c:'`.html',p:58},
{t:M,n:'main',u:'#`(java.lang.String[])',p:1},
{t:M,n:'validate',u:'#`()',p:2},
{t:C,n:'SchemaValidatorTask',c:'`.html',p:61},
{t:M,n:'addFileset',u:'#`(org.apache.tools.ant.types.FileSet)',p:1},
{t:M,n:'execute',u:'#`()',p:2},
{t:M,n:'setConfig',u:'#`(java.io.File)',p:3},
{t:M,n:'setNamingStrategy',u:'#`(java.lang.String)',p:4},
{t:M,n:'setProperties',u:'#`(java.io.File)',p:5},
{t:C,n:'TableMetadata',c:'`.html',p:67},
{t:M,n:'addColumn',u:'#`(java.sql.ResultSet)',p:1},
{t:M,n:'getColumnMetadata',u:'#`(java.lang.String)',p:2},
{t:M,n:'getForeignKeyMetadata',u:'#`(java.lang.String)',p:3},
{t:M,n:'getIndexMetadata',u:'#`(java.lang.String)',p:4},
{t:M,n:'getName',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:P,n:'org.hibernate.tool.instrument',u:'package-summary.html',c:'rg/hibernate/tool/instrument/',p:7272},
{t:C,n:'InstrumentTask',c:'`.html',p:1},
{t:M,n:'getClassTransformer',u:'#`(java.lang.String[])',p:1},
{t:P,n:'org.hibernate.engine',u:'package-summary.html',c:'rg/hibernate/engine/',p:7275},
{t:I,n:'HibernateIterator',c:'`.html',p:1},
{t:M,n:'close',u:'#`()',p:1},
{t:I,n:'Mapping',c:'`.html',p:3},
{t:M,n:'getIdentifierPropertyName',u:'#`(java.lang.String)',p:1},
{t:M,n:'getIdentifierType',u:'#`(java.lang.String)',p:2},
{t:M,n:'getReferencedPropertyType',u:'#`(java.lang.String, java.lang.String)',p:3},
{t:I,n:'PersistenceContext',c:'`.html',p:7},
{t:M,n:'addCollectionHolder',u:'#`(org.hibernate.collection.PersistentCollection)',p:1},
{t:M,n:'addEntity',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:2},
{t:M,n:'addEntry',u:'#`(java.lang.Object, org.hibernate.engine.Status, java.lang.Object[], java.lang.Object, java.io.Serializable, java.lang.Object, org.hibernate.LockMode, boolean, org.hibernate.persister.entity.EntityPersister, boolean, boolean)',p:3},
{t:M,n:'addInitializedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection, java.io.Serializable)',p:4},
{t:M,n:'addInitializedDetachedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:5},
{t:M,n:'addNewCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:6},
{t:M,n:'addNonLazyCollection',u:'#`(org.hibernate.collection.PersistentCollection)',p:7},
{t:M,n:'addNullProperty',u:'#`(org.hibernate.engine.EntityKey, java.lang.String)',p:8},
{t:M,n:'addProxy',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:9},
{t:M,n:'addUninitializedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection, java.io.Serializable)',p:10},
{t:M,n:'addUninitializedDetachedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:11},
{t:M,n:'addUnownedCollection',u:'#`(org.hibernate.engine.CollectionKey, org.hibernate.collection.PersistentCollection)',p:12},
{t:M,n:'afterLoad',u:'#`()',p:13},
{t:M,n:'afterTransactionCompletion',u:'#`()',p:14},
{t:M,n:'beforeLoad',u:'#`()',p:15},
{t:M,n:'checkUniqueness',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:16},
{t:M,n:'clear',u:'#`()',p:17},
{t:M,n:'containsCollection',u:'#`(org.hibernate.collection.PersistentCollection)',p:18},
{t:M,n:'containsEntity',u:'#`(org.hibernate.engine.EntityKey)',p:19},
{t:M,n:'containsProxy',u:'#`(java.lang.Object)',p:20},
{t:M,n:'decrementCascadeLevel',u:'#`()',p:21},
{t:M,n:'getBatchFetchQueue',u:'#`()',p:22},
{t:M,n:'getCachedDatabaseSnapshot',u:'#`(org.hibernate.engine.EntityKey)',p:23},
{t:M,n:'getCascadeLevel',u:'#`()',p:24},
{t:M,n:'getCollection',u:'#`(org.hibernate.engine.CollectionKey)',p:25},
{t:M,n:'getCollectionEntries',u:'#`()',p:26},
{t:M,n:'getCollectionEntry',u:'#`(org.hibernate.collection.PersistentCollection)',p:27},
{t:M,n:'getCollectionEntryOrNull',u:'#`(java.lang.Object)',p:28},
{t:M,n:'getCollectionHolder',u:'#`(java.lang.Object)',p:29},
{t:M,n:'getCollectionLoadContext',u:'#`()',p:30},
{t:M,n:'getCollectionOwner',u:'#`(java.io.Serializable, org.hibernate.persister.collection.CollectionPersister)',p:31},
{t:M,n:'getCollectionsByKey',u:'#`()',p:32},
{t:M,n:'getDatabaseSnapshot',u:'#`(java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:33},
{t:M,n:'getEntitiesByKey',u:'#`()',p:34},
{t:M,n:'getEntity',u:'#`(org.hibernate.engine.EntityKey)',p:35},
{t:M,n:'getEntityEntries',u:'#`()',p:36},
{t:M,n:'getEntry',u:'#`(java.lang.Object)',p:37},
{t:M,n:'getIndexInOwner',u:'#`(java.lang.String, java.lang.String, java.lang.Object, java.util.Map)',p:38},
{t:M,n:'getNaturalIdSnapshot',u:'#`(java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:39},
{t:M,n:'getNullifiableEntityKeys',u:'#`()',p:40},
{t:M,n:'getOwnerId',u:'#`(java.lang.String, java.lang.String, java.lang.Object, java.util.Map)',p:41},
{t:M,n:'getProxy',u:'#`(org.hibernate.engine.EntityKey)',p:42},
{t:M,n:'getSession',u:'#`()',p:43},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.collection.PersistentCollection)',p:44},
{t:M,n:'hasNonReadOnlyEntities',u:'#`()',p:45},
{t:M,n:'incrementCascadeLevel',u:'#`()',p:46},
{t:M,n:'initializeNonLazyCollections',u:'#`()',p:47},
{t:M,n:'isEntryFor',u:'#`(java.lang.Object)',p:48},
{t:M,n:'isFlushing',u:'#`()',p:49},
{t:M,n:'isPropertyNull',u:'#`(org.hibernate.engine.EntityKey, java.lang.String)',p:50},
{t:M,n:'isStateless',u:'#`()',p:51},
{t:M,n:'narrowProxy',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, java.lang.Object)',p:52},
{t:M,n:'proxyFor',u:'#`(org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, java.lang.Object)',p:53},
{t:M,n:'reassociateIfUninitializedProxy',u:'#`(java.lang.Object)',p:54},
{t:M,n:'reassociateProxy',u:'#`(java.lang.Object, java.io.Serializable)',p:55},
{t:M,n:'removeCollectionHolder',u:'#`(java.lang.Object)',p:56},
{t:M,n:'removeEntity',u:'#`(org.hibernate.engine.EntityKey)',p:57},
{t:M,n:'removeEntry',u:'#`(java.lang.Object)',p:58},
{t:M,n:'removeProxy',u:'#`(org.hibernate.engine.EntityKey)',p:59},
{t:M,n:'setEntryStatus',u:'#`(org.hibernate.engine.EntityEntry, org.hibernate.engine.Status)',p:60},
{t:M,n:'setFlushing',u:'#`(boolean)',p:61},
{t:M,n:'setReadOnly',u:'#`(java.lang.Object, boolean)',p:62},
{t:M,n:'toString',u:'#`()',p:63},
{t:M,n:'unproxy',u:'#`(java.lang.Object)',p:64},
{t:M,n:'unproxyAndReassociate',u:'#`(java.lang.Object)',p:65},
{t:M,n:'useUnownedCollection',u:'#`(org.hibernate.engine.CollectionKey)',p:66},
{t:I,n:'SessionFactoryImplementor',c:'`.html',p:74},
{t:M,n:'getAllSecondLevelCacheRegions',u:'#`()',p:1},
{t:M,n:'getCollectionPersister',u:'#`(java.lang.String)',p:2},
{t:M,n:'getCollectionRolesByEntityParticipant',u:'#`(java.lang.String)',p:3},
{t:M,n:'getConnectionProvider',u:'#`()',p:4},
{t:M,n:'getDialect',u:'#`()',p:5},
{t:M,n:'getEntityPersister',u:'#`(java.lang.String)',p:6},
{t:M,n:'getIdentifierGenerator',u:'#`(java.lang.String)',p:7},
{t:M,n:'getImplementors',u:'#`(java.lang.String)',p:8},
{t:M,n:'getImportedClassName',u:'#`(java.lang.String)',p:9},
{t:M,n:'getInterceptor',u:'#`()',p:10},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:11},
{t:M,n:'getNamedSQLQuery',u:'#`(java.lang.String)',p:12},
{t:M,n:'getQueryCache',u:'#`()',p:13},
{t:M,n:'getQueryPlanCache',u:'#`()',p:14},
{t:M,n:'getResultSetMapping',u:'#`(java.lang.String)',p:15},
{t:M,n:'getReturnAliases',u:'#`(java.lang.String)',p:16},
{t:M,n:'getReturnTypes',u:'#`(java.lang.String)',p:17},
{t:M,n:'getSecondLevelCacheRegion',u:'#`(java.lang.String)',p:18},
{t:M,n:'getSettings',u:'#`()',p:19},
{t:M,n:'getSQLExceptionConverter',u:'#`()',p:20},
{t:M,n:'getStatisticsImplementor',u:'#`()',p:21},
{t:M,n:'getTransactionManager',u:'#`()',p:22},
{t:M,n:'getUpdateTimestampsCache',u:'#`()',p:23},
{t:M,n:'openSession',u:'#`(java.sql.Connection, boolean, boolean, org.hibernate.ConnectionReleaseMode)',p:24},
{t:M,n:'openTemporarySession',u:'#`()',p:25},
{t:I,n:'SessionImplementor',c:'`.html',p:100},
{t:M,n:'afterScrollOperation',u:'#`()',p:1},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean, org.hibernate.Transaction)',p:2},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:3},
{t:M,n:'bestGuessEntityName',u:'#`(java.lang.Object)',p:4},
{t:M,n:'connection',u:'#`()',p:5},
{t:M,n:'executeUpdate',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters)',p:6},
{t:M,n:'flush',u:'#`()',p:7},
{t:M,n:'getBatcher',u:'#`()',p:8},
{t:M,n:'getCacheMode',u:'#`()',p:9},
{t:M,n:'getContextEntityIdentifier',u:'#`(java.lang.Object)',p:10},
{t:M,n:'getDontFlushFromFind',u:'#`()',p:11},
{t:M,n:'getEnabledFilters',u:'#`()',p:12},
{t:M,n:'getEntityMode',u:'#`()',p:13},
{t:M,n:'getEntityPersister',u:'#`(java.lang.String, java.lang.Object)',p:14},
{t:M,n:'getEntityUsingInterceptor',u:'#`(org.hibernate.engine.EntityKey)',p:15},
{t:M,n:'getFactory',u:'#`()',p:16},
{t:M,n:'getFetchProfile',u:'#`()',p:17},
{t:M,n:'getFilterParameterType',u:'#`(java.lang.String)',p:18},
{t:M,n:'getFilterParameterValue',u:'#`(java.lang.String)',p:19},
{t:M,n:'getFlushMode',u:'#`()',p:20},
{t:M,n:'getInterceptor',u:'#`()',p:21},
{t:M,n:'getJDBCCotext',u:'#`()',p:22},
{t:M,n:'getListeners',u:'#`()',p:23},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:24},
{t:M,n:'getNamedSQLQuery',u:'#`(java.lang.String)',p:25},
{t:M,n:'getPersistenceContext',u:'#`()',p:26},
{t:M,n:'getTimestamp',u:'#`()',p:27},
{t:M,n:'guessEntityName',u:'#`(java.lang.Object)',p:28},
{t:M,n:'immediateLoad',u:'#`(java.lang.String, java.io.Serializable)',p:29},
{t:M,n:'initializeCollection',u:'#`(org.hibernate.collection.PersistentCollection, boolean)',p:30},
{t:M,n:'instantiate',u:'#`(java.lang.String, java.io.Serializable)',p:31},
{t:M,n:'internalLoad',u:'#`(java.lang.String, java.io.Serializable, boolean, boolean)',p:32},
{t:M,n:'isConnected',u:'#`()',p:33},
{t:M,n:'isEventSource',u:'#`()',p:34},
{t:M,n:'isOpen',u:'#`()',p:35},
{t:M,n:'isTransactionInProgress',u:'#`()',p:36},
{t:M,n:'iterate',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters)',p:37},
{t:M,n:'iterateFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:38},
{t:M,n:'list',u:'#`(org.hibernate.impl.CriteriaImpl)',p:39},
{t:M,n:'listCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:40},
{t:M,n:'listFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:41},
{t:M,n:'scroll',u:'#`(org.hibernate.impl.CriteriaImpl, org.hibernate.ScrollMode)',p:42},
{t:M,n:'scrollCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:43},
{t:M,n:'setAutoClear',u:'#`(boolean)',p:44},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:45},
{t:M,n:'setFetchProfile',u:'#`(java.lang.String)',p:46},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:47},
{t:C,n:'ActionQueue',c:'`.html',p:148},
{t:M,n:'addAction',u:'#`(org.hibernate.action.BulkOperationCleanupAction)',p:1},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean)',p:2},
{t:M,n:'areInsertionsOrDeletionsQueued',u:'#`()',p:3},
{t:M,n:'areTablesToBeUpdated',u:'#`(java.util.Set)',p:4},
{t:M,n:'clear',u:'#`()',p:5},
{t:M,n:'clearFromFlushNeededCheck',u:'#`(int)',p:6},
{t:M,n:'cloneDeletions',u:'#`()',p:7},
{t:M,n:'execute',u:'#`(org.hibernate.action.Executable)',p:8},
{t:M,n:'executeActions',u:'#`()',p:9},
{t:M,n:'executeInserts',u:'#`()',p:10},
{t:M,n:'hasAnyQueuedActions',u:'#`()',p:11},
{t:M,n:'numberOfCollectionCreations',u:'#`()',p:12},
{t:M,n:'numberOfCollectionRemovals',u:'#`()',p:13},
{t:M,n:'numberOfCollectionUpdates',u:'#`()',p:14},
{t:M,n:'numberOfDeletions',u:'#`()',p:15},
{t:M,n:'numberOfInsertions',u:'#`()',p:16},
{t:M,n:'numberOfUpdates',u:'#`()',p:17},
{t:M,n:'prepareActions',u:'#`()',p:18},
{t:M,n:'sortCollectionActions',u:'#`()',p:19},
{t:M,n:'sortUpdateActions',u:'#`()',p:20},
{t:M,n:'toString',u:'#`()',p:21},
{t:C,n:'BatchFetchQueue',c:'`.html',p:170},
{t:O,n:'MARKER',u:'#`',p:1},
{t:M,n:'addBatchLoadableEntityKey',u:'#`(org.hibernate.engine.EntityKey)',p:2},
{t:M,n:'addSubselect',u:'#`(org.hibernate.engine.EntityKey, org.hibernate.engine.SubselectFetch)',p:3},
{t:M,n:'clear',u:'#`()',p:4},
{t:M,n:'clearSubselects',u:'#`()',p:5},
{t:M,n:'getCollectionBatch',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, int, org.hibernate.EntityMode)',p:6},
{t:M,n:'getEntityBatch',u:'#`(org.hibernate.persister.entity.EntityPersister, java.io.Serializable, int, org.hibernate.EntityMode)',p:7},
{t:M,n:'getSubselect',u:'#`(org.hibernate.engine.EntityKey)',p:8},
{t:M,n:'removeBatchLoadableEntityKey',u:'#`(org.hibernate.engine.EntityKey)',p:9},
{t:M,n:'removeSubselect',u:'#`(org.hibernate.engine.EntityKey)',p:10},
{t:C,n:'Cascade',c:'`.html',p:181},
{t:O,n:'AFTER_EVICT',u:'#`',p:1},
{t:O,n:'AFTER_INSERT_BEFORE_DELETE',u:'#`',p:2},
{t:O,n:'AFTER_INSERT_BEFORE_DELETE_VIA_COLLECTION',u:'#`',p:3},
{t:O,n:'AFTER_LOCK',u:'#`',p:4},
{t:O,n:'AFTER_UPDATE',u:'#`',p:5},
{t:O,n:'BEFORE_FLUSH',u:'#`',p:6},
{t:O,n:'BEFORE_INSERT_AFTER_DELETE',u:'#`',p:7},
{t:O,n:'BEFORE_MERGE',u:'#`',p:8},
{t:O,n:'BEFORE_REFRESH',u:'#`',p:9},
{t:M,n:'cascade',u:'#`(org.hibernate.persister.entity.EntityPersister, java.lang.Object)',p:10},
{t:C,n:'CascadeStyle',c:'`.html',p:192},
{t:O,n:'ALL',u:'#`',p:1},
{t:O,n:'ALL_DELETE_ORPHAN',u:'#`',p:2},
{t:O,n:'DELETE',u:'#`',p:3},
{t:O,n:'DELETE_ORPHAN',u:'#`',p:4},
{t:O,n:'EVICT',u:'#`',p:5},
{t:O,n:'LOCK',u:'#`',p:6},
{t:O,n:'MERGE',u:'#`',p:7},
{t:O,n:'NONE',u:'#`',p:8},
{t:O,n:'PERSIST',u:'#`',p:9},
{t:O,n:'REFRESH',u:'#`',p:10},
{t:O,n:'REPLICATE',u:'#`',p:11},
{t:O,n:'UPDATE',u:'#`',p:12},
{t:M,n:'doCascade',u:'#`(org.hibernate.engine.CascadingAction)',p:13},
{t:M,n:'getCascadeStyle',u:'#`(java.lang.String)',p:14},
{t:M,n:'hasOrphanDelete',u:'#`()',p:15},
{t:M,n:'reallyDoCascade',u:'#`(org.hibernate.engine.CascadingAction)',p:16},
{t:C,n:'CascadingAction',c:'`.html',p:209},
{t:O,n:'DELETE',u:'#`',p:1},
{t:O,n:'EVICT',u:'#`',p:2},
{t:O,n:'LOCK',u:'#`',p:3},
{t:O,n:'MERGE',u:'#`',p:4},
{t:O,n:'PERSIST',u:'#`',p:5},
{t:O,n:'PERSIST_ON_FLUSH',u:'#`',p:6},
{t:O,n:'REFRESH',u:'#`',p:7},
{t:O,n:'REPLICATE',u:'#`',p:8},
{t:O,n:'SAVE_UPDATE',u:'#`',p:9},
{t:O,n:'SAVE_UPDATE_COPY',u:'#`',p:10},
{t:M,n:'cascade',u:'#`(org.hibernate.event.EventSource, java.lang.Object, java.lang.String, java.lang.Object, boolean)',p:11},
{t:M,n:'deleteOrphans',u:'#`()',p:12},
{t:M,n:'getCascadableChildrenIterator',u:'#`(org.hibernate.event.EventSource, org.hibernate.type.CollectionType, java.lang.Object)',p:13},
{t:M,n:'getLoadedElementsIterator',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.type.CollectionType, java.lang.Object)',p:14},
{t:C,n:'CollectionEntry',c:'`.html',p:224},
{t:M,n:'afterAction',u:'#`(org.hibernate.collection.PersistentCollection)',p:1},
{t:M,n:'getCurrentKey',u:'#`()',p:2},
{t:M,n:'getCurrentPersister',u:'#`()',p:3},
{t:M,n:'getKey',u:'#`()',p:4},
{t:M,n:'getLoadedKey',u:'#`()',p:5},
{t:M,n:'getLoadedPersister',u:'#`()',p:6},
{t:M,n:'getOrphans',u:'#`(java.lang.String, org.hibernate.collection.PersistentCollection)',p:7},
{t:M,n:'getRole',u:'#`()',p:8},
{t:M,n:'getSnapshot',u:'#`()',p:9},
{t:M,n:'isDorecreate',u:'#`()',p:10},
{t:M,n:'isDoremove',u:'#`()',p:11},
{t:M,n:'isDoupdate',u:'#`()',p:12},
{t:M,n:'isIgnore',u:'#`()',p:13},
{t:M,n:'isProcessed',u:'#`()',p:14},
{t:M,n:'isReached',u:'#`()',p:15},
{t:M,n:'isSnapshotEmpty',u:'#`(org.hibernate.collection.PersistentCollection)',p:16},
{t:M,n:'postFlush',u:'#`(org.hibernate.collection.PersistentCollection)',p:17},
{t:M,n:'postInitialize',u:'#`(org.hibernate.collection.PersistentCollection)',p:18},
{t:M,n:'preFlush',u:'#`(org.hibernate.collection.PersistentCollection)',p:19},
{t:M,n:'setCurrentKey',u:'#`(java.io.Serializable)',p:20},
{t:M,n:'setCurrentPersister',u:'#`(org.hibernate.persister.collection.CollectionPersister)',p:21},
{t:M,n:'setDorecreate',u:'#`(boolean)',p:22},
{t:M,n:'setDoremove',u:'#`(boolean)',p:23},
{t:M,n:'setDoupdate',u:'#`(boolean)',p:24},
{t:M,n:'setProcessed',u:'#`(boolean)',p:25},
{t:M,n:'setReached',u:'#`(boolean)',p:26},
{t:M,n:'setRole',u:'#`(java.lang.String)',p:27},
{t:M,n:'toString',u:'#`()',p:28},
{t:M,n:'wasDereferenced',u:'#`()',p:29},
{t:C,n:'CollectionKey',c:'`.html',p:254},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getHashCode',u:'#`()',p:2},
{t:M,n:'getKey',u:'#`()',p:3},
{t:M,n:'getRole',u:'#`()',p:4},
{t:M,n:'hashCode',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'CollectionLoadContext',c:'`.html',p:261},
{t:M,n:'endLoadingCollections',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getLoadingCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable, org.hibernate.EntityMode)',p:2},
{t:C,n:'Collections',c:'`.html',p:264},
{t:M,n:'processReachableCollection',u:'#`(org.hibernate.collection.PersistentCollection, org.hibernate.type.CollectionType, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'processUnreachableCollection',u:'#`(org.hibernate.collection.PersistentCollection, org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'EntityEntry',c:'`.html',p:267},
{t:M,n:'getDeletedState',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getId',u:'#`()',p:3},
{t:M,n:'getLoadedState',u:'#`()',p:4},
{t:M,n:'getLoadedValue',u:'#`(java.lang.String)',p:5},
{t:M,n:'getLockMode',u:'#`()',p:6},
{t:M,n:'getPersister',u:'#`()',p:7},
{t:M,n:'getRowId',u:'#`()',p:8},
{t:M,n:'getStatus',u:'#`()',p:9},
{t:M,n:'getVersion',u:'#`()',p:10},
{t:M,n:'isBeingReplicated',u:'#`()',p:11},
{t:M,n:'isExistsInDatabase',u:'#`()',p:12},
{t:M,n:'isLoadedWithLazyPropertiesUnfetched',u:'#`()',p:13},
{t:M,n:'isNullifiable',u:'#`(boolean, org.hibernate.engine.SessionImplementor)',p:14},
{t:M,n:'postDelete',u:'#`()',p:15},
{t:M,n:'postInsert',u:'#`()',p:16},
{t:M,n:'postUpdate',u:'#`(java.lang.Object, java.lang.Object[], java.lang.Object)',p:17},
{t:M,n:'requiresDirtyCheck',u:'#`(java.lang.Object)',p:18},
{t:M,n:'setDeletedState',u:'#`(java.lang.Object[])',p:19},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:20},
{t:M,n:'setReadOnly',u:'#`(boolean, java.lang.Object)',p:21},
{t:M,n:'setStatus',u:'#`(org.hibernate.engine.Status)',p:22},
{t:M,n:'toString',u:'#`()',p:23},
{t:C,n:'EntityKey',c:'`.html',p:291},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getIdentifier',u:'#`()',p:3},
{t:M,n:'hashCode',u:'#`()',p:4},
{t:M,n:'isBatchLoadable',u:'#`()',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:C,n:'EntityUniqueKey',c:'`.html',p:298},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getHashCode',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:3},
{t:M,n:'getKey',u:'#`()',p:4},
{t:M,n:'getUniqueKeyName',u:'#`()',p:5},
{t:M,n:'hashCode',u:'#`()',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'FilterDefinition',c:'`.html',p:306},
{t:M,n:'getDefaultFilterCondition',u:'#`()',p:1},
{t:M,n:'getFilterName',u:'#`()',p:2},
{t:M,n:'getParameterNames',u:'#`()',p:3},
{t:M,n:'getParameterType',u:'#`(java.lang.String)',p:4},
{t:M,n:'getParameterTypes',u:'#`()',p:5},
{t:C,n:'ForeignKeys',c:'`.html',p:312},
{t:M,n:'getEntityIdentifierIfNotUnsaved',u:'#`(java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'isNotTransient',u:'#`(java.lang.String, java.lang.Object, java.lang.Boolean, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'isTransient',u:'#`(java.lang.String, java.lang.Object, java.lang.Boolean, org.hibernate.engine.SessionImplementor)',p:3},
{t:C,n:'IdentifierValue',c:'`.html',p:316},
{t:O,n:'ANY',u:'#`',p:1},
{t:O,n:'NONE',u:'#`',p:2},
{t:O,n:'NULL',u:'#`',p:3},
{t:O,n:'UNDEFINED',u:'#`',p:4},
{t:M,n:'getDefaultValue',u:'#`(java.io.Serializable)',p:5},
{t:M,n:'isUnsaved',u:'#`(java.io.Serializable)',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'JoinHelper',c:'`.html',p:324},
{t:M,n:'getAliasedLHSColumnNames',u:'#`(org.hibernate.type.AssociationType, java.lang.String, int, int, org.hibernate.persister.entity.OuterJoinLoadable, org.hibernate.engine.Mapping)',p:1},
{t:M,n:'getLHSColumnNames',u:'#`(org.hibernate.type.AssociationType, int, int, org.hibernate.persister.entity.OuterJoinLoadable, org.hibernate.engine.Mapping)',p:2},
{t:M,n:'getLHSTableName',u:'#`(org.hibernate.type.AssociationType, int, org.hibernate.persister.entity.OuterJoinLoadable)',p:3},
{t:M,n:'getRHSColumnNames',u:'#`(org.hibernate.type.AssociationType, org.hibernate.engine.SessionFactoryImplementor)',p:4},
{t:C,n:'JoinSequence',c:'`.html',p:329},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:1},
{t:M,n:'addJoin',u:'#`(org.hibernate.type.AssociationType, java.lang.String, int, java.lang.String[])',p:2},
{t:M,n:'copy',u:'#`()',p:3},
{t:M,n:'getFromPart',u:'#`()',p:4},
{t:M,n:'getJoinCount',u:'#`()',p:5},
{t:M,n:'isThetaStyle',u:'#`()',p:6},
{t:M,n:'setNext',u:'#`(org.hibernate.engine.JoinSequence)',p:7},
{t:M,n:'setRoot',u:'#`(org.hibernate.persister.entity.Joinable, java.lang.String)',p:8},
{t:M,n:'setSelector',u:'#`(org.hibernate.engine.JoinSequence.Selector)',p:9},
{t:M,n:'setUseThetaStyle',u:'#`(boolean)',p:10},
{t:M,n:'toJoinFragment',u:'#`()',p:11},
{t:M,n:'toString',u:'#`()',p:12},
{t:C,n:'NamedQueryDefinition',c:'`.html',p:342},
{t:M,n:'getCacheMode',u:'#`()',p:1},
{t:M,n:'getCacheRegion',u:'#`()',p:2},
{t:M,n:'getComment',u:'#`()',p:3},
{t:M,n:'getFetchSize',u:'#`()',p:4},
{t:M,n:'getFlushMode',u:'#`()',p:5},
{t:M,n:'getParameterTypes',u:'#`()',p:6},
{t:M,n:'getQuery',u:'#`()',p:7},
{t:M,n:'getQueryString',u:'#`()',p:8},
{t:M,n:'getTimeout',u:'#`()',p:9},
{t:M,n:'isCacheable',u:'#`()',p:10},
{t:M,n:'isReadOnly',u:'#`()',p:11},
{t:M,n:'toString',u:'#`()',p:12},
{t:C,n:'NamedSQLQueryDefinition',c:'`.html',p:355},
{t:M,n:'getQueryReturns',u:'#`()',p:1},
{t:M,n:'getQuerySpaces',u:'#`()',p:2},
{t:M,n:'getResultSetRef',u:'#`()',p:3},
{t:M,n:'getScalarQueryReturns',u:'#`()',p:4},
{t:M,n:'isCallable',u:'#`()',p:5},
{t:C,n:'Nullability',c:'`.html',p:361},
{t:M,n:'checkNullability',u:'#`(java.lang.Object[], org.hibernate.persister.entity.EntityPersister, boolean)',p:1},
{t:C,n:'ParameterBinder',c:'`.html',p:363},
{t:M,n:'bindNamedParameters',u:'#`(java.sql.PreparedStatement, java.util.Map, int, org.hibernate.engine.ParameterBinder.NamedParameterSource, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'bindPositionalParameters',u:'#`(java.sql.PreparedStatement, java.lang.Object[], org.hibernate.type.Type[], int, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'bindQueryParameters',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, int, org.hibernate.engine.ParameterBinder.NamedParameterSource, org.hibernate.engine.SessionImplementor)',p:3},
{t:C,n:'QueryParameters',c:'`.html',p:367},
{t:M,n:'getCacheRegion',u:'#`()',p:1},
{t:M,n:'getCollectionKeys',u:'#`()',p:2},
{t:M,n:'getComment',u:'#`()',p:3},
{t:M,n:'getFilteredPositionalParameterTypes',u:'#`()',p:4},
{t:M,n:'getFilteredPositionalParameterValues',u:'#`()',p:5},
{t:M,n:'getFilteredSQL',u:'#`()',p:6},
{t:M,n:'getLockModes',u:'#`()',p:7},
{t:M,n:'getNamedParameters',u:'#`()',p:8},
{t:M,n:'getOptionalEntityName',u:'#`()',p:9},
{t:M,n:'getOptionalId',u:'#`()',p:10},
{t:M,n:'getOptionalObject',u:'#`()',p:11},
{t:M,n:'getPositionalParameterTypes',u:'#`()',p:12},
{t:M,n:'getPositionalParameterValues',u:'#`()',p:13},
{t:M,n:'getRowSelection',u:'#`()',p:14},
{t:M,n:'getScrollMode',u:'#`()',p:15},
{t:M,n:'hasAutoDiscoverScalarTypes',u:'#`()',p:16},
{t:M,n:'hasRowSelection',u:'#`()',p:17},
{t:M,n:'isCacheable',u:'#`()',p:18},
{t:M,n:'isCallable',u:'#`()',p:19},
{t:M,n:'isNaturalKeyLookup',u:'#`()',p:20},
{t:M,n:'isReadOnly',u:'#`()',p:21},
{t:M,n:'processFilters',u:'#`(java.lang.String, org.hibernate.engine.SessionImplementor)',p:22},
{t:M,n:'setAutoDiscoverScalarTypes',u:'#`(boolean)',p:23},
{t:M,n:'setCacheable',u:'#`(boolean)',p:24},
{t:M,n:'setCacheRegion',u:'#`(java.lang.String)',p:25},
{t:M,n:'setCallable',u:'#`(boolean)',p:26},
{t:M,n:'setCollectionKeys',u:'#`(java.io.Serializable[])',p:27},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:28},
{t:M,n:'setLockModes',u:'#`(java.util.Map)',p:29},
{t:M,n:'setNamedParameters',u:'#`(java.util.Map)',p:30},
{t:M,n:'setNaturalKeyLookup',u:'#`(boolean)',p:31},
{t:M,n:'setOptionalEntityName',u:'#`(java.lang.String)',p:32},
{t:M,n:'setOptionalId',u:'#`(java.io.Serializable)',p:33},
{t:M,n:'setOptionalObject',u:'#`(java.lang.Object)',p:34},
{t:M,n:'setPositionalParameterTypes',u:'#`(org.hibernate.type.Type[])',p:35},
{t:M,n:'setPositionalParameterValues',u:'#`(java.lang.Object[])',p:36},
{t:M,n:'setReadOnly',u:'#`(boolean)',p:37},
{t:M,n:'setRowSelection',u:'#`(org.hibernate.engine.RowSelection)',p:38},
{t:M,n:'setScrollMode',u:'#`(org.hibernate.ScrollMode)',p:39},
{t:M,n:'traceParameters',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:40},
{t:M,n:'validateParameters',u:'#`()',p:41},
{t:C,n:'ResultSetMappingDefinition',c:'`.html',p:409},
{t:M,n:'addEntityQueryReturn',u:'#`(org.hibernate.loader.custom.SQLQueryReturn)',p:1},
{t:M,n:'addScalarQueryReturn',u:'#`(org.hibernate.loader.custom.SQLQueryScalarReturn)',p:2},
{t:M,n:'getEntityQueryReturns',u:'#`()',p:3},
{t:M,n:'getName',u:'#`()',p:4},
{t:M,n:'getScalarQueryReturns',u:'#`()',p:5},
{t:C,n:'RowSelection',c:'`.html',p:415},
{t:M,n:'getFetchSize',u:'#`()',p:1},
{t:M,n:'getFirstRow',u:'#`()',p:2},
{t:M,n:'getMaxRows',u:'#`()',p:3},
{t:M,n:'getTimeout',u:'#`()',p:4},
{t:M,n:'setFetchSize',u:'#`(java.lang.Integer)',p:5},
{t:M,n:'setFirstRow',u:'#`(java.lang.Integer)',p:6},
{t:M,n:'setMaxRows',u:'#`(java.lang.Integer)',p:7},
{t:M,n:'setTimeout',u:'#`(java.lang.Integer)',p:8},
{t:C,n:'StatefulPersistenceContext',c:'`.html',p:424},
{t:O,n:'NO_ROW',u:'#`',p:1},
{t:M,n:'addCollectionHolder',u:'#`(org.hibernate.collection.PersistentCollection)',p:2},
{t:M,n:'addEntity',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:3},
{t:M,n:'addEntry',u:'#`(java.lang.Object, org.hibernate.engine.Status, java.lang.Object[], java.lang.Object, java.io.Serializable, java.lang.Object, org.hibernate.LockMode, boolean, org.hibernate.persister.entity.EntityPersister, boolean, boolean)',p:4},
{t:M,n:'addInitializedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection, java.io.Serializable)',p:5},
{t:M,n:'addInitializedDetachedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:6},
{t:M,n:'addNewCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:7},
{t:M,n:'addNonLazyCollection',u:'#`(org.hibernate.collection.PersistentCollection)',p:8},
{t:M,n:'addNullProperty',u:'#`(org.hibernate.engine.EntityKey, java.lang.String)',p:9},
{t:M,n:'addProxy',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:10},
{t:M,n:'addUninitializedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection, java.io.Serializable)',p:11},
{t:M,n:'addUninitializedDetachedCollection',u:'#`(org.hibernate.persister.collection.CollectionPersister, org.hibernate.collection.PersistentCollection)',p:12},
{t:M,n:'addUnownedCollection',u:'#`(org.hibernate.engine.CollectionKey, org.hibernate.collection.PersistentCollection)',p:13},
{t:M,n:'afterLoad',u:'#`()',p:14},
{t:M,n:'afterTransactionCompletion',u:'#`()',p:15},
{t:M,n:'beforeLoad',u:'#`()',p:16},
{t:M,n:'checkUniqueness',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object)',p:17},
{t:M,n:'clear',u:'#`()',p:18},
{t:M,n:'containsCollection',u:'#`(org.hibernate.collection.PersistentCollection)',p:19},
{t:M,n:'containsEntity',u:'#`(org.hibernate.engine.EntityKey)',p:20},
{t:M,n:'containsProxy',u:'#`(java.lang.Object)',p:21},
{t:M,n:'decrementCascadeLevel',u:'#`()',p:22},
{t:M,n:'getBatchFetchQueue',u:'#`()',p:23},
{t:M,n:'getCachedDatabaseSnapshot',u:'#`(org.hibernate.engine.EntityKey)',p:24},
{t:M,n:'getCascadeLevel',u:'#`()',p:25},
{t:M,n:'getCollection',u:'#`(org.hibernate.engine.CollectionKey)',p:26},
{t:M,n:'getCollectionEntries',u:'#`()',p:27},
{t:M,n:'getCollectionEntry',u:'#`(org.hibernate.collection.PersistentCollection)',p:28},
{t:M,n:'getCollectionEntryOrNull',u:'#`(java.lang.Object)',p:29},
{t:M,n:'getCollectionHolder',u:'#`(java.lang.Object)',p:30},
{t:M,n:'getCollectionLoadContext',u:'#`()',p:31},
{t:M,n:'getCollectionOwner',u:'#`(java.io.Serializable, org.hibernate.persister.collection.CollectionPersister)',p:32},
{t:M,n:'getCollectionsByKey',u:'#`()',p:33},
{t:M,n:'getDatabaseSnapshot',u:'#`(java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:34},
{t:M,n:'getEntitiesByKey',u:'#`()',p:35},
{t:M,n:'getEntity',u:'#`(org.hibernate.engine.EntityKey)',p:36},
{t:M,n:'getEntityEntries',u:'#`()',p:37},
{t:M,n:'getEntry',u:'#`(java.lang.Object)',p:38},
{t:M,n:'getIndexInOwner',u:'#`(java.lang.String, java.lang.String, java.lang.Object, java.util.Map)',p:39},
{t:M,n:'getNaturalIdSnapshot',u:'#`(java.io.Serializable, org.hibernate.persister.entity.EntityPersister)',p:40},
{t:M,n:'getNullifiableEntityKeys',u:'#`()',p:41},
{t:M,n:'getOwnerId',u:'#`(java.lang.String, java.lang.String, java.lang.Object, java.util.Map)',p:42},
{t:M,n:'getProxy',u:'#`(org.hibernate.engine.EntityKey)',p:43},
{t:M,n:'getSession',u:'#`()',p:44},
{t:M,n:'getSnapshot',u:'#`(org.hibernate.collection.PersistentCollection)',p:45},
{t:M,n:'hasNonReadOnlyEntities',u:'#`()',p:46},
{t:M,n:'incrementCascadeLevel',u:'#`()',p:47},
{t:M,n:'initializeNonLazyCollections',u:'#`()',p:48},
{t:M,n:'isEntryFor',u:'#`(java.lang.Object)',p:49},
{t:M,n:'isFlushing',u:'#`()',p:50},
{t:M,n:'isPropertyNull',u:'#`(org.hibernate.engine.EntityKey, java.lang.String)',p:51},
{t:M,n:'isStateless',u:'#`()',p:52},
{t:M,n:'narrowProxy',u:'#`(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, java.lang.Object)',p:53},
{t:M,n:'proxyFor',u:'#`(org.hibernate.persister.entity.EntityPersister, org.hibernate.engine.EntityKey, java.lang.Object)',p:54},
{t:M,n:'reassociateIfUninitializedProxy',u:'#`(java.lang.Object)',p:55},
{t:M,n:'reassociateProxy',u:'#`(java.lang.Object, java.io.Serializable)',p:56},
{t:M,n:'removeCollectionHolder',u:'#`(java.lang.Object)',p:57},
{t:M,n:'removeEntity',u:'#`(org.hibernate.engine.EntityKey)',p:58},
{t:M,n:'removeEntry',u:'#`(java.lang.Object)',p:59},
{t:M,n:'removeProxy',u:'#`(org.hibernate.engine.EntityKey)',p:60},
{t:M,n:'setEntryStatus',u:'#`(org.hibernate.engine.EntityEntry, org.hibernate.engine.Status)',p:61},
{t:M,n:'setFlushing',u:'#`(boolean)',p:62},
{t:M,n:'setReadOnly',u:'#`(java.lang.Object, boolean)',p:63},
{t:M,n:'toString',u:'#`()',p:64},
{t:M,n:'unproxy',u:'#`(java.lang.Object)',p:65},
{t:M,n:'unproxyAndReassociate',u:'#`(java.lang.Object)',p:66},
{t:M,n:'useUnownedCollection',u:'#`(org.hibernate.engine.CollectionKey)',p:67},
{t:C,n:'Status',c:'`.html',p:492},
{t:O,n:'DELETED',u:'#`',p:1},
{t:O,n:'GONE',u:'#`',p:2},
{t:O,n:'LOADING',u:'#`',p:3},
{t:O,n:'MANAGED',u:'#`',p:4},
{t:O,n:'READ_ONLY',u:'#`',p:5},
{t:O,n:'SAVING',u:'#`',p:6},
{t:M,n:'toString',u:'#`()',p:7},
{t:C,n:'SubselectFetch',c:'`.html',p:500},
{t:M,n:'getNamedParameterLocMap',u:'#`()',p:1},
{t:M,n:'getQueryParameters',u:'#`()',p:2},
{t:M,n:'getResult',u:'#`()',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:M,n:'toSubselectString',u:'#`(java.lang.String)',p:5},
{t:C,n:'TransactionHelper',c:'`.html',p:506},
{t:M,n:'doWorkInCurrentTransaction',u:'#`(java.sql.Connection, java.lang.String)',p:1},
{t:M,n:'doWorkInNewTransaction',u:'#`(org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'TwoPhaseLoad',c:'`.html',p:509},
{t:M,n:'addUninitializedCachedEntity',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.LockMode, boolean, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'addUninitializedEntity',u:'#`(org.hibernate.engine.EntityKey, java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.LockMode, boolean, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'initializeEntity',u:'#`(java.lang.Object, boolean, org.hibernate.engine.SessionImplementor, org.hibernate.event.PreLoadEvent, org.hibernate.event.PostLoadEvent)',p:3},
{t:M,n:'postHydrate',u:'#`(org.hibernate.persister.entity.EntityPersister, java.io.Serializable, java.lang.Object[], java.lang.Object, java.lang.Object, org.hibernate.LockMode, boolean, org.hibernate.engine.SessionImplementor)',p:4},
{t:C,n:'TypedValue',c:'`.html',p:514},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getType',u:'#`()',p:2},
{t:M,n:'getValue',u:'#`()',p:3},
{t:M,n:'hashCode',u:'#`()',p:4},
{t:M,n:'toString',u:'#`()',p:5},
{t:C,n:'UnsavedValueFactory',c:'`.html',p:520},
{t:M,n:'getUnsavedIdentifierValue',u:'#`(java.lang.String, org.hibernate.property.Getter, org.hibernate.type.Type, java.lang.reflect.Constructor)',p:1},
{t:M,n:'getUnsavedVersionValue',u:'#`(java.lang.String, org.hibernate.property.Getter, org.hibernate.type.VersionType, java.lang.reflect.Constructor)',p:2},
{t:C,n:'Versioning',c:'`.html',p:523},
{t:O,n:'OPTIMISTIC_LOCK_ALL',u:'#`',p:1},
{t:O,n:'OPTIMISTIC_LOCK_DIRTY',u:'#`',p:2},
{t:O,n:'OPTIMISTIC_LOCK_NONE',u:'#`',p:3},
{t:O,n:'OPTIMISTIC_LOCK_VERSION',u:'#`',p:4},
{t:M,n:'getVersion',u:'#`(java.lang.Object[], org.hibernate.persister.entity.EntityPersister)',p:5},
{t:M,n:'increment',u:'#`(java.lang.Object, org.hibernate.type.VersionType, org.hibernate.engine.SessionImplementor)',p:6},
{t:M,n:'isVersionIncrementRequired',u:'#`(int[], boolean, boolean[])',p:7},
{t:M,n:'seedVersion',u:'#`(java.lang.Object[], int, org.hibernate.type.VersionType, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'setVersion',u:'#`(java.lang.Object[], java.lang.Object, org.hibernate.persister.entity.EntityPersister)',p:9},
{t:C,n:'VersionValue',c:'`.html',p:533},
{t:O,n:'NEGATIVE',u:'#`',p:1},
{t:O,n:'NULL',u:'#`',p:2},
{t:O,n:'UNDEFINED',u:'#`',p:3},
{t:M,n:'getDefaultValue',u:'#`(java.lang.Object)',p:4},
{t:M,n:'isUnsaved',u:'#`(java.lang.Object)',p:5},
{t:M,n:'toString',u:'#`()',p:6},
{t:P,n:'org.hibernate.exception',u:'package-summary.html',c:'rg/hibernate/exception/',p:7815},
{t:I,n:'Configurable',c:'`.html',p:1},
{t:M,n:'configure',u:'#`(java.util.Properties)',p:1},
{t:I,n:'Nestable',c:'`.html',p:3},
{t:M,n:'getCause',u:'#`()',p:1},
{t:M,n:'getMessage',u:'#`()',p:2},
{t:M,n:'getMessages',u:'#`()',p:3},
{t:M,n:'getThrowable',u:'#`(int)',p:4},
{t:M,n:'getThrowableCount',u:'#`()',p:5},
{t:M,n:'getThrowables',u:'#`()',p:6},
{t:M,n:'indexOfThrowable',u:'#`(java.lang.Class)',p:7},
{t:M,n:'printPartialStackTrace',u:'#`(java.io.PrintWriter)',p:8},
{t:M,n:'printStackTrace',u:'#`(java.io.PrintStream)',p:9},
{t:I,n:'SQLExceptionConverter',c:'`.html',p:13},
{t:M,n:'convert',u:'#`(java.sql.SQLException, java.lang.String, java.lang.String)',p:1},
{t:I,n:'ViolatedConstraintNameExtracter',c:'`.html',p:15},
{t:M,n:'extractConstraintName',u:'#`(java.sql.SQLException)',p:1},
{t:C,n:'ExceptionUtils',c:'`.html',p:17},
{t:M,n:'getCause',u:'#`(java.lang.Throwable)',p:1},
{t:M,n:'getFullStackTrace',u:'#`(java.lang.Throwable)',p:2},
{t:M,n:'getRootCause',u:'#`(java.lang.Throwable)',p:3},
{t:M,n:'getRootCauseStackTrace',u:'#`(java.lang.Throwable)',p:4},
{t:M,n:'getStackFrames',u:'#`(java.lang.Throwable)',p:5},
{t:M,n:'getStackTrace',u:'#`(java.lang.Throwable)',p:6},
{t:M,n:'getThrowableCount',u:'#`(java.lang.Throwable)',p:7},
{t:M,n:'getThrowables',u:'#`(java.lang.Throwable)',p:8},
{t:M,n:'indexOfThrowable',u:'#`(java.lang.Throwable, java.lang.Class)',p:9},
{t:M,n:'isNestedThrowable',u:'#`(java.lang.Throwable)',p:10},
{t:M,n:'isThrowableNested',u:'#`()',p:11},
{t:M,n:'printRootCauseStackTrace',u:'#`(java.lang.Throwable)',p:12},
{t:M,n:'removeCommonFrames',u:'#`(java.util.List, java.util.List)',p:13},
{t:C,n:'JDBCExceptionHelper',c:'`.html',p:31},
{t:M,n:'convert',u:'#`(org.hibernate.exception.SQLExceptionConverter, java.sql.SQLException, java.lang.String)',p:1},
{t:M,n:'extractErrorCode',u:'#`(java.sql.SQLException)',p:2},
{t:M,n:'extractSqlState',u:'#`(java.sql.SQLException)',p:3},
{t:M,n:'extractSqlStateClassCode',u:'#`(java.sql.SQLException)',p:4},
{t:C,n:'NestableDelegate',c:'`.html',p:36},
{t:M,n:'getMessage',u:'#`(int)',p:1},
{t:M,n:'getMessages',u:'#`()',p:2},
{t:M,n:'getStackFrames',u:'#`(java.lang.Throwable)',p:3},
{t:M,n:'getThrowable',u:'#`(int)',p:4},
{t:M,n:'getThrowableCount',u:'#`()',p:5},
{t:M,n:'getThrowables',u:'#`()',p:6},
{t:M,n:'indexOfThrowable',u:'#`(java.lang.Class, int)',p:7},
{t:M,n:'printStackTrace',u:'#`()',p:8},
{t:M,n:'trimStackFrames',u:'#`(java.util.List)',p:9},
{t:C,n:'SQLExceptionConverterFactory',c:'`.html',p:46},
{t:M,n:'buildMinimalSQLExceptionConverter',u:'#`()',p:1},
{t:M,n:'buildSQLExceptionConverter',u:'#`(org.hibernate.dialect.Dialect, java.util.Properties)',p:2},
{t:C,n:'SQLStateConverter',c:'`.html',p:49},
{t:M,n:'convert',u:'#`(java.sql.SQLException, java.lang.String, java.lang.String)',p:1},
{t:M,n:'handledNonSpecificException',u:'#`(java.sql.SQLException, java.lang.String, java.lang.String)',p:2},
{t:C,n:'TemplatedViolatedConstraintNameExtracter',c:'`.html',p:52},
{t:M,n:'extractUsingTemplate',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:1},
{t:C,n:'ConstraintViolationException',c:'`.html',p:54},
{t:M,n:'getConstraintName',u:'#`()',p:1},
{t:C,n:'DataException',u:'`.html',p:56},
{t:C,n:'GenericJDBCException',u:'`.html',p:57},
{t:C,n:'JDBCConnectionException',u:'`.html',p:58},
{t:C,n:'LockAcquisitionException',u:'`.html',p:59},
{t:C,n:'NestableException',c:'`.html',p:60},
{t:O,n:'delegate',u:'#`',p:1},
{t:M,n:'getCause',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:M,n:'getMessages',u:'#`()',p:4},
{t:M,n:'getThrowable',u:'#`(int)',p:5},
{t:M,n:'getThrowableCount',u:'#`()',p:6},
{t:M,n:'getThrowables',u:'#`()',p:7},
{t:M,n:'indexOfThrowable',u:'#`(java.lang.Class)',p:8},
{t:M,n:'printPartialStackTrace',u:'#`(java.io.PrintWriter)',p:9},
{t:M,n:'printStackTrace',u:'#`()',p:10},
{t:C,n:'NestableRuntimeException',c:'`.html',p:71},
{t:O,n:'delegate',u:'#`',p:1},
{t:M,n:'getCause',u:'#`()',p:2},
{t:M,n:'getMessage',u:'#`()',p:3},
{t:M,n:'getMessages',u:'#`()',p:4},
{t:M,n:'getThrowable',u:'#`(int)',p:5},
{t:M,n:'getThrowableCount',u:'#`()',p:6},
{t:M,n:'getThrowables',u:'#`()',p:7},
{t:M,n:'indexOfThrowable',u:'#`(java.lang.Class)',p:8},
{t:M,n:'printPartialStackTrace',u:'#`(java.io.PrintWriter)',p:9},
{t:M,n:'printStackTrace',u:'#`()',p:10},
{t:C,n:'SQLGrammarException',u:'`.html',p:82},
{t:P,n:'org.hibernate.hql',u:'package-summary.html',c:'rg/hibernate/hql/',p:7898},
{t:I,n:'FilterTranslator',c:'`.html',p:1},
{t:M,n:'compile',u:'#`(java.lang.String, java.util.Map, boolean)',p:1},
{t:I,n:'ParameterTranslations',c:'`.html',p:3},
{t:M,n:'getNamedParameterExpectedType',u:'#`(java.lang.String)',p:1},
{t:M,n:'getNamedParameterNames',u:'#`()',p:2},
{t:M,n:'getNamedParameterSqlLocations',u:'#`(java.lang.String)',p:3},
{t:M,n:'getOrdinalParameterCount',u:'#`()',p:4},
{t:M,n:'getOrdinalParameterExpectedType',u:'#`(int)',p:5},
{t:M,n:'getOrdinalParameterSqlLocation',u:'#`(int)',p:6},
{t:M,n:'supportsOrdinalParameterMetadata',u:'#`()',p:7},
{t:I,n:'QueryTranslator',c:'`.html',p:11},
{t:O,n:'ERROR_CANNOT_DETERMINE_TYPE',u:'#`',p:1},
{t:O,n:'ERROR_CANNOT_FETCH_WITH_ITERATE',u:'#`',p:2},
{t:O,n:'ERROR_CANNOT_FORMAT_LITERAL',u:'#`',p:3},
{t:O,n:'ERROR_NAMED_PARAMETER_DOES_NOT_APPEAR',u:'#`',p:4},
{t:M,n:'collectSqlStrings',u:'#`()',p:5},
{t:M,n:'compile',u:'#`(java.util.Map, boolean)',p:6},
{t:M,n:'containsCollectionFetches',u:'#`()',p:7},
{t:M,n:'executeUpdate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:8},
{t:M,n:'getColumnNames',u:'#`()',p:9},
{t:M,n:'getEnabledFilters',u:'#`()',p:10},
{t:M,n:'getParameterTranslations',u:'#`()',p:11},
{t:M,n:'getQuerySpaces',u:'#`()',p:12},
{t:M,n:'getQueryString',u:'#`()',p:13},
{t:M,n:'getReturnAliases',u:'#`()',p:14},
{t:M,n:'getReturnTypes',u:'#`()',p:15},
{t:M,n:'getSQLString',u:'#`()',p:16},
{t:M,n:'isManipulationStatement',u:'#`()',p:17},
{t:M,n:'iterate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.event.EventSource)',p:18},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:19},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:20},
{t:M,n:'validateScrollability',u:'#`()',p:21},
{t:I,n:'QueryTranslatorFactory',c:'`.html',p:33},
{t:M,n:'createFilterTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'createQueryTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:C,n:'CollectionProperties',c:'`.html',p:36},
{t:O,n:'HQL_COLLECTION_PROPERTIES',u:'#`',p:1},
{t:M,n:'getNormalizedPropertyName',u:'#`(java.lang.String)',p:2},
{t:M,n:'isAnyCollectionProperty',u:'#`(java.lang.String)',p:3},
{t:M,n:'isCollectionProperty',u:'#`(java.lang.String)',p:4},
{t:C,n:'CollectionSubqueryFactory',c:'`.html',p:41},
{t:M,n:'createCollectionSubquery',u:'#`(org.hibernate.engine.JoinSequence, java.util.Map, java.lang.String[])',p:1},
{t:C,n:'HolderInstantiator',c:'`.html',p:43},
{t:M,n:'instantiate',u:'#`(java.lang.Object[])',p:1},
{t:M,n:'isRequired',u:'#`()',p:2},
{t:C,n:'NameGenerator',c:'`.html',p:46},
{t:M,n:'generateColumnNames',u:'#`(org.hibernate.type.Type[], org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'scalarName',u:'#`(int, int)',p:2},
{t:C,n:'QuerySplitter',c:'`.html',p:49},
{t:M,n:'concreteQueries',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'getImportedClass',u:'#`(java.lang.String, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:P,n:'org.hibernate.hql.antlr',u:'package-summary.html',c:'rg/hibernate/hql/antlr/',p:7950},
{t:I,n:'HqlSqlTokenTypes',c:'`.html',p:1},
{t:O,n:'AGGREGATE',u:'#`',p:1},
{t:O,n:'ALIAS',u:'#`',p:2},
{t:O,n:'ALIAS_REF',u:'#`',p:3},
{t:O,n:'ALL',u:'#`',p:4},
{t:O,n:'AND',u:'#`',p:5},
{t:O,n:'ANY',u:'#`',p:6},
{t:O,n:'AS',u:'#`',p:7},
{t:O,n:'ASCENDING',u:'#`',p:8},
{t:O,n:'AVG',u:'#`',p:9},
{t:O,n:'BETWEEN',u:'#`',p:10},
{t:O,n:'BOGUS',u:'#`',p:11},
{t:O,n:'BOTH',u:'#`',p:12},
{t:O,n:'CASE',u:'#`',p:13},
{t:O,n:'CASE2',u:'#`',p:14},
{t:O,n:'CLASS',u:'#`',p:15},
{t:O,n:'CLOSE',u:'#`',p:16},
{t:O,n:'CLOSE_BRACKET',u:'#`',p:17},
{t:O,n:'COLON',u:'#`',p:18},
{t:O,n:'COMMA',u:'#`',p:19},
{t:O,n:'CONCAT',u:'#`',p:20},
{t:O,n:'CONSTANT',u:'#`',p:21},
{t:O,n:'CONSTRUCTOR',u:'#`',p:22},
{t:O,n:'COUNT',u:'#`',p:23},
{t:O,n:'DELETE',u:'#`',p:24},
{t:O,n:'DESCENDING',u:'#`',p:25},
{t:O,n:'DISTINCT',u:'#`',p:26},
{t:O,n:'DIV',u:'#`',p:27},
{t:O,n:'DOT',u:'#`',p:28},
{t:O,n:'ELEMENTS',u:'#`',p:29},
{t:O,n:'ELSE',u:'#`',p:30},
{t:O,n:'EMPTY',u:'#`',p:31},
{t:O,n:'END',u:'#`',p:32},
{t:O,n:'EOF',u:'#`',p:33},
{t:O,n:'EQ',u:'#`',p:34},
{t:O,n:'ESCAPE',u:'#`',p:35},
{t:O,n:'ESCqs',u:'#`',p:36},
{t:O,n:'EXISTS',u:'#`',p:37},
{t:O,n:'EXPONENT',u:'#`',p:38},
{t:O,n:'EXPR_LIST',u:'#`',p:39},
{t:O,n:'FALSE',u:'#`',p:40},
{t:O,n:'FETCH',u:'#`',p:41},
{t:O,n:'FILTER_ENTITY',u:'#`',p:42},
{t:O,n:'FILTERS',u:'#`',p:43},
{t:O,n:'FLOAT_SUFFIX',u:'#`',p:44},
{t:O,n:'FROM',u:'#`',p:45},
{t:O,n:'FROM_FRAGMENT',u:'#`',p:46},
{t:O,n:'FULL',u:'#`',p:47},
{t:O,n:'GE',u:'#`',p:48},
{t:O,n:'GROUP',u:'#`',p:49},
{t:O,n:'GT',u:'#`',p:50},
{t:O,n:'HAVING',u:'#`',p:51},
{t:O,n:'HEX_DIGIT',u:'#`',p:52},
{t:O,n:'ID_LETTER',u:'#`',p:53},
{t:O,n:'ID_START_LETTER',u:'#`',p:54},
{t:O,n:'IDENT',u:'#`',p:55},
{t:O,n:'IMPLIED_FROM',u:'#`',p:56},
{t:O,n:'IN',u:'#`',p:57},
{t:O,n:'IN_LIST',u:'#`',p:58},
{t:O,n:'INDEX_OP',u:'#`',p:59},
{t:O,n:'INDICES',u:'#`',p:60},
{t:O,n:'INNER',u:'#`',p:61},
{t:O,n:'INSERT',u:'#`',p:62},
{t:O,n:'INTO',u:'#`',p:63},
{t:O,n:'IS',u:'#`',p:64},
{t:O,n:'IS_NOT_NULL',u:'#`',p:65},
{t:O,n:'IS_NULL',u:'#`',p:66},
{t:O,n:'JOIN',u:'#`',p:67},
{t:O,n:'JOIN_FRAGMENT',u:'#`',p:68},
{t:O,n:'LE',u:'#`',p:69},
{t:O,n:'LEADING',u:'#`',p:70},
{t:O,n:'LEFT',u:'#`',p:71},
{t:O,n:'LEFT_OUTER',u:'#`',p:72},
{t:O,n:'LIKE',u:'#`',p:73},
{t:O,n:'LITERAL_ascending',u:'#`',p:74},
{t:O,n:'LITERAL_by',u:'#`',p:75},
{t:O,n:'LITERAL_descending',u:'#`',p:76},
{t:O,n:'LT',u:'#`',p:77},
{t:O,n:'MAX',u:'#`',p:78},
{t:O,n:'MEMBER',u:'#`',p:79},
{t:O,n:'METHOD_CALL',u:'#`',p:80},
{t:O,n:'METHOD_NAME',u:'#`',p:81},
{t:O,n:'MIN',u:'#`',p:82},
{t:O,n:'MINUS',u:'#`',p:83},
{t:O,n:'NAMED_PARAM',u:'#`',p:84},
{t:O,n:'NE',u:'#`',p:85},
{t:O,n:'NEW',u:'#`',p:86},
{t:O,n:'NOT',u:'#`',p:87},
{t:O,n:'NOT_BETWEEN',u:'#`',p:88},
{t:O,n:'NOT_IN',u:'#`',p:89},
{t:O,n:'NOT_LIKE',u:'#`',p:90},
{t:O,n:'NULL',u:'#`',p:91},
{t:O,n:'NULL_TREE_LOOKAHEAD',u:'#`',p:92},
{t:O,n:'NUM_DOUBLE',u:'#`',p:93},
{t:O,n:'NUM_FLOAT',u:'#`',p:94},
{t:O,n:'NUM_INT',u:'#`',p:95},
{t:O,n:'NUM_LONG',u:'#`',p:96},
{t:O,n:'OBJECT',u:'#`',p:97},
{t:O,n:'OF',u:'#`',p:98},
{t:O,n:'ON',u:'#`',p:99},
{t:O,n:'OPEN',u:'#`',p:100},
{t:O,n:'OPEN_BRACKET',u:'#`',p:101},
{t:O,n:'OR',u:'#`',p:102},
{t:O,n:'ORDER',u:'#`',p:103},
{t:O,n:'ORDER_ELEMENT',u:'#`',p:104},
{t:O,n:'OUTER',u:'#`',p:105},
{t:O,n:'PARAM',u:'#`',p:106},
{t:O,n:'PLUS',u:'#`',p:107},
{t:O,n:'PROPERTIES',u:'#`',p:108},
{t:O,n:'PROPERTY_REF',u:'#`',p:109},
{t:O,n:'QUERY',u:'#`',p:110},
{t:O,n:'QUOTED_STRING',u:'#`',p:111},
{t:O,n:'RANGE',u:'#`',p:112},
{t:O,n:'RIGHT',u:'#`',p:113},
{t:O,n:'RIGHT_OUTER',u:'#`',p:114},
{t:O,n:'ROW_STAR',u:'#`',p:115},
{t:O,n:'SELECT',u:'#`',p:116},
{t:O,n:'SELECT_CLAUSE',u:'#`',p:117},
{t:O,n:'SELECT_COLUMNS',u:'#`',p:118},
{t:O,n:'SELECT_EXPR',u:'#`',p:119},
{t:O,n:'SELECT_FROM',u:'#`',p:120},
{t:O,n:'SET',u:'#`',p:121},
{t:O,n:'SOME',u:'#`',p:122},
{t:O,n:'SQL_NE',u:'#`',p:123},
{t:O,n:'SQL_TOKEN',u:'#`',p:124},
{t:O,n:'STAR',u:'#`',p:125},
{t:O,n:'SUM',u:'#`',p:126},
{t:O,n:'THEN',u:'#`',p:127},
{t:O,n:'THETA_JOINS',u:'#`',p:128},
{t:O,n:'TRAILING',u:'#`',p:129},
{t:O,n:'TRUE',u:'#`',p:130},
{t:O,n:'UNARY_MINUS',u:'#`',p:131},
{t:O,n:'UNARY_PLUS',u:'#`',p:132},
{t:O,n:'UNION',u:'#`',p:133},
{t:O,n:'UPDATE',u:'#`',p:134},
{t:O,n:'VECTOR_EXPR',u:'#`',p:135},
{t:O,n:'VERSIONED',u:'#`',p:136},
{t:O,n:'WEIRD_IDENT',u:'#`',p:137},
{t:O,n:'WHEN',u:'#`',p:138},
{t:O,n:'WHERE',u:'#`',p:139},
{t:O,n:'WITH',u:'#`',p:140},
{t:O,n:'WS',u:'#`',p:141},
{t:I,n:'HqlTokenTypes',c:'`.html',p:143},
{t:O,n:'AGGREGATE',u:'#`',p:1},
{t:O,n:'ALIAS',u:'#`',p:2},
{t:O,n:'ALL',u:'#`',p:3},
{t:O,n:'AND',u:'#`',p:4},
{t:O,n:'ANY',u:'#`',p:5},
{t:O,n:'AS',u:'#`',p:6},
{t:O,n:'ASCENDING',u:'#`',p:7},
{t:O,n:'AVG',u:'#`',p:8},
{t:O,n:'BETWEEN',u:'#`',p:9},
{t:O,n:'BOTH',u:'#`',p:10},
{t:O,n:'CASE',u:'#`',p:11},
{t:O,n:'CASE2',u:'#`',p:12},
{t:O,n:'CLASS',u:'#`',p:13},
{t:O,n:'CLOSE',u:'#`',p:14},
{t:O,n:'CLOSE_BRACKET',u:'#`',p:15},
{t:O,n:'COLON',u:'#`',p:16},
{t:O,n:'COMMA',u:'#`',p:17},
{t:O,n:'CONCAT',u:'#`',p:18},
{t:O,n:'CONSTANT',u:'#`',p:19},
{t:O,n:'CONSTRUCTOR',u:'#`',p:20},
{t:O,n:'COUNT',u:'#`',p:21},
{t:O,n:'DELETE',u:'#`',p:22},
{t:O,n:'DESCENDING',u:'#`',p:23},
{t:O,n:'DISTINCT',u:'#`',p:24},
{t:O,n:'DIV',u:'#`',p:25},
{t:O,n:'DOT',u:'#`',p:26},
{t:O,n:'ELEMENTS',u:'#`',p:27},
{t:O,n:'ELSE',u:'#`',p:28},
{t:O,n:'EMPTY',u:'#`',p:29},
{t:O,n:'END',u:'#`',p:30},
{t:O,n:'EOF',u:'#`',p:31},
{t:O,n:'EQ',u:'#`',p:32},
{t:O,n:'ESCAPE',u:'#`',p:33},
{t:O,n:'ESCqs',u:'#`',p:34},
{t:O,n:'EXISTS',u:'#`',p:35},
{t:O,n:'EXPONENT',u:'#`',p:36},
{t:O,n:'EXPR_LIST',u:'#`',p:37},
{t:O,n:'FALSE',u:'#`',p:38},
{t:O,n:'FETCH',u:'#`',p:39},
{t:O,n:'FILTER_ENTITY',u:'#`',p:40},
{t:O,n:'FLOAT_SUFFIX',u:'#`',p:41},
{t:O,n:'FROM',u:'#`',p:42},
{t:O,n:'FULL',u:'#`',p:43},
{t:O,n:'GE',u:'#`',p:44},
{t:O,n:'GROUP',u:'#`',p:45},
{t:O,n:'GT',u:'#`',p:46},
{t:O,n:'HAVING',u:'#`',p:47},
{t:O,n:'HEX_DIGIT',u:'#`',p:48},
{t:O,n:'ID_LETTER',u:'#`',p:49},
{t:O,n:'ID_START_LETTER',u:'#`',p:50},
{t:O,n:'IDENT',u:'#`',p:51},
{t:O,n:'IN',u:'#`',p:52},
{t:O,n:'IN_LIST',u:'#`',p:53},
{t:O,n:'INDEX_OP',u:'#`',p:54},
{t:O,n:'INDICES',u:'#`',p:55},
{t:O,n:'INNER',u:'#`',p:56},
{t:O,n:'INSERT',u:'#`',p:57},
{t:O,n:'INTO',u:'#`',p:58},
{t:O,n:'IS',u:'#`',p:59},
{t:O,n:'IS_NOT_NULL',u:'#`',p:60},
{t:O,n:'IS_NULL',u:'#`',p:61},
{t:O,n:'JOIN',u:'#`',p:62},
{t:O,n:'LE',u:'#`',p:63},
{t:O,n:'LEADING',u:'#`',p:64},
{t:O,n:'LEFT',u:'#`',p:65},
{t:O,n:'LIKE',u:'#`',p:66},
{t:O,n:'LITERAL_ascending',u:'#`',p:67},
{t:O,n:'LITERAL_by',u:'#`',p:68},
{t:O,n:'LITERAL_descending',u:'#`',p:69},
{t:O,n:'LT',u:'#`',p:70},
{t:O,n:'MAX',u:'#`',p:71},
{t:O,n:'MEMBER',u:'#`',p:72},
{t:O,n:'METHOD_CALL',u:'#`',p:73},
{t:O,n:'MIN',u:'#`',p:74},
{t:O,n:'MINUS',u:'#`',p:75},
{t:O,n:'NE',u:'#`',p:76},
{t:O,n:'NEW',u:'#`',p:77},
{t:O,n:'NOT',u:'#`',p:78},
{t:O,n:'NOT_BETWEEN',u:'#`',p:79},
{t:O,n:'NOT_IN',u:'#`',p:80},
{t:O,n:'NOT_LIKE',u:'#`',p:81},
{t:O,n:'NULL',u:'#`',p:82},
{t:O,n:'NULL_TREE_LOOKAHEAD',u:'#`',p:83},
{t:O,n:'NUM_DOUBLE',u:'#`',p:84},
{t:O,n:'NUM_FLOAT',u:'#`',p:85},
{t:O,n:'NUM_INT',u:'#`',p:86},
{t:O,n:'NUM_LONG',u:'#`',p:87},
{t:O,n:'OBJECT',u:'#`',p:88},
{t:O,n:'OF',u:'#`',p:89},
{t:O,n:'ON',u:'#`',p:90},
{t:O,n:'OPEN',u:'#`',p:91},
{t:O,n:'OPEN_BRACKET',u:'#`',p:92},
{t:O,n:'OR',u:'#`',p:93},
{t:O,n:'ORDER',u:'#`',p:94},
{t:O,n:'ORDER_ELEMENT',u:'#`',p:95},
{t:O,n:'OUTER',u:'#`',p:96},
{t:O,n:'PARAM',u:'#`',p:97},
{t:O,n:'PLUS',u:'#`',p:98},
{t:O,n:'PROPERTIES',u:'#`',p:99},
{t:O,n:'QUERY',u:'#`',p:100},
{t:O,n:'QUOTED_STRING',u:'#`',p:101},
{t:O,n:'RANGE',u:'#`',p:102},
{t:O,n:'RIGHT',u:'#`',p:103},
{t:O,n:'ROW_STAR',u:'#`',p:104},
{t:O,n:'SELECT',u:'#`',p:105},
{t:O,n:'SELECT_FROM',u:'#`',p:106},
{t:O,n:'SET',u:'#`',p:107},
{t:O,n:'SOME',u:'#`',p:108},
{t:O,n:'SQL_NE',u:'#`',p:109},
{t:O,n:'STAR',u:'#`',p:110},
{t:O,n:'SUM',u:'#`',p:111},
{t:O,n:'THEN',u:'#`',p:112},
{t:O,n:'TRAILING',u:'#`',p:113},
{t:O,n:'TRUE',u:'#`',p:114},
{t:O,n:'UNARY_MINUS',u:'#`',p:115},
{t:O,n:'UNARY_PLUS',u:'#`',p:116},
{t:O,n:'UNION',u:'#`',p:117},
{t:O,n:'UPDATE',u:'#`',p:118},
{t:O,n:'VECTOR_EXPR',u:'#`',p:119},
{t:O,n:'VERSIONED',u:'#`',p:120},
{t:O,n:'WEIRD_IDENT',u:'#`',p:121},
{t:O,n:'WHEN',u:'#`',p:122},
{t:O,n:'WHERE',u:'#`',p:123},
{t:O,n:'WITH',u:'#`',p:124},
{t:O,n:'WS',u:'#`',p:125},
{t:I,n:'SqlTokenTypes',c:'`.html',p:269},
{t:O,n:'AGGREGATE',u:'#`',p:1},
{t:O,n:'ALIAS',u:'#`',p:2},
{t:O,n:'ALIAS_REF',u:'#`',p:3},
{t:O,n:'ALL',u:'#`',p:4},
{t:O,n:'AND',u:'#`',p:5},
{t:O,n:'ANY',u:'#`',p:6},
{t:O,n:'AS',u:'#`',p:7},
{t:O,n:'ASCENDING',u:'#`',p:8},
{t:O,n:'AVG',u:'#`',p:9},
{t:O,n:'BETWEEN',u:'#`',p:10},
{t:O,n:'BOGUS',u:'#`',p:11},
{t:O,n:'BOTH',u:'#`',p:12},
{t:O,n:'CASE',u:'#`',p:13},
{t:O,n:'CASE2',u:'#`',p:14},
{t:O,n:'CLASS',u:'#`',p:15},
{t:O,n:'CLOSE',u:'#`',p:16},
{t:O,n:'CLOSE_BRACKET',u:'#`',p:17},
{t:O,n:'COLON',u:'#`',p:18},
{t:O,n:'COMMA',u:'#`',p:19},
{t:O,n:'CONCAT',u:'#`',p:20},
{t:O,n:'CONSTANT',u:'#`',p:21},
{t:O,n:'CONSTRUCTOR',u:'#`',p:22},
{t:O,n:'COUNT',u:'#`',p:23},
{t:O,n:'DELETE',u:'#`',p:24},
{t:O,n:'DESCENDING',u:'#`',p:25},
{t:O,n:'DISTINCT',u:'#`',p:26},
{t:O,n:'DIV',u:'#`',p:27},
{t:O,n:'DOT',u:'#`',p:28},
{t:O,n:'ELEMENTS',u:'#`',p:29},
{t:O,n:'ELSE',u:'#`',p:30},
{t:O,n:'EMPTY',u:'#`',p:31},
{t:O,n:'END',u:'#`',p:32},
{t:O,n:'EOF',u:'#`',p:33},
{t:O,n:'EQ',u:'#`',p:34},
{t:O,n:'ESCAPE',u:'#`',p:35},
{t:O,n:'ESCqs',u:'#`',p:36},
{t:O,n:'EXISTS',u:'#`',p:37},
{t:O,n:'EXPONENT',u:'#`',p:38},
{t:O,n:'EXPR_LIST',u:'#`',p:39},
{t:O,n:'FALSE',u:'#`',p:40},
{t:O,n:'FETCH',u:'#`',p:41},
{t:O,n:'FILTER_ENTITY',u:'#`',p:42},
{t:O,n:'FILTERS',u:'#`',p:43},
{t:O,n:'FLOAT_SUFFIX',u:'#`',p:44},
{t:O,n:'FROM',u:'#`',p:45},
{t:O,n:'FROM_FRAGMENT',u:'#`',p:46},
{t:O,n:'FULL',u:'#`',p:47},
{t:O,n:'GE',u:'#`',p:48},
{t:O,n:'GROUP',u:'#`',p:49},
{t:O,n:'GT',u:'#`',p:50},
{t:O,n:'HAVING',u:'#`',p:51},
{t:O,n:'HEX_DIGIT',u:'#`',p:52},
{t:O,n:'ID_LETTER',u:'#`',p:53},
{t:O,n:'ID_START_LETTER',u:'#`',p:54},
{t:O,n:'IDENT',u:'#`',p:55},
{t:O,n:'IMPLIED_FROM',u:'#`',p:56},
{t:O,n:'IN',u:'#`',p:57},
{t:O,n:'IN_LIST',u:'#`',p:58},
{t:O,n:'INDEX_OP',u:'#`',p:59},
{t:O,n:'INDICES',u:'#`',p:60},
{t:O,n:'INNER',u:'#`',p:61},
{t:O,n:'INSERT',u:'#`',p:62},
{t:O,n:'INTO',u:'#`',p:63},
{t:O,n:'IS',u:'#`',p:64},
{t:O,n:'IS_NOT_NULL',u:'#`',p:65},
{t:O,n:'IS_NULL',u:'#`',p:66},
{t:O,n:'JOIN',u:'#`',p:67},
{t:O,n:'JOIN_FRAGMENT',u:'#`',p:68},
{t:O,n:'LE',u:'#`',p:69},
{t:O,n:'LEADING',u:'#`',p:70},
{t:O,n:'LEFT',u:'#`',p:71},
{t:O,n:'LEFT_OUTER',u:'#`',p:72},
{t:O,n:'LIKE',u:'#`',p:73},
{t:O,n:'LITERAL_ascending',u:'#`',p:74},
{t:O,n:'LITERAL_by',u:'#`',p:75},
{t:O,n:'LITERAL_descending',u:'#`',p:76},
{t:O,n:'LT',u:'#`',p:77},
{t:O,n:'MAX',u:'#`',p:78},
{t:O,n:'MEMBER',u:'#`',p:79},
{t:O,n:'METHOD_CALL',u:'#`',p:80},
{t:O,n:'METHOD_NAME',u:'#`',p:81},
{t:O,n:'MIN',u:'#`',p:82},
{t:O,n:'MINUS',u:'#`',p:83},
{t:O,n:'NAMED_PARAM',u:'#`',p:84},
{t:O,n:'NE',u:'#`',p:85},
{t:O,n:'NEW',u:'#`',p:86},
{t:O,n:'NOT',u:'#`',p:87},
{t:O,n:'NOT_BETWEEN',u:'#`',p:88},
{t:O,n:'NOT_IN',u:'#`',p:89},
{t:O,n:'NOT_LIKE',u:'#`',p:90},
{t:O,n:'NULL',u:'#`',p:91},
{t:O,n:'NULL_TREE_LOOKAHEAD',u:'#`',p:92},
{t:O,n:'NUM_DOUBLE',u:'#`',p:93},
{t:O,n:'NUM_FLOAT',u:'#`',p:94},
{t:O,n:'NUM_INT',u:'#`',p:95},
{t:O,n:'NUM_LONG',u:'#`',p:96},
{t:O,n:'OBJECT',u:'#`',p:97},
{t:O,n:'OF',u:'#`',p:98},
{t:O,n:'ON',u:'#`',p:99},
{t:O,n:'OPEN',u:'#`',p:100},
{t:O,n:'OPEN_BRACKET',u:'#`',p:101},
{t:O,n:'OR',u:'#`',p:102},
{t:O,n:'ORDER',u:'#`',p:103},
{t:O,n:'ORDER_ELEMENT',u:'#`',p:104},
{t:O,n:'OUTER',u:'#`',p:105},
{t:O,n:'PARAM',u:'#`',p:106},
{t:O,n:'PLUS',u:'#`',p:107},
{t:O,n:'PROPERTIES',u:'#`',p:108},
{t:O,n:'PROPERTY_REF',u:'#`',p:109},
{t:O,n:'QUERY',u:'#`',p:110},
{t:O,n:'QUOTED_STRING',u:'#`',p:111},
{t:O,n:'RANGE',u:'#`',p:112},
{t:O,n:'RIGHT',u:'#`',p:113},
{t:O,n:'RIGHT_OUTER',u:'#`',p:114},
{t:O,n:'ROW_STAR',u:'#`',p:115},
{t:O,n:'SELECT',u:'#`',p:116},
{t:O,n:'SELECT_CLAUSE',u:'#`',p:117},
{t:O,n:'SELECT_COLUMNS',u:'#`',p:118},
{t:O,n:'SELECT_EXPR',u:'#`',p:119},
{t:O,n:'SELECT_FROM',u:'#`',p:120},
{t:O,n:'SET',u:'#`',p:121},
{t:O,n:'SOME',u:'#`',p:122},
{t:O,n:'SQL_NE',u:'#`',p:123},
{t:O,n:'SQL_NODE',u:'#`',p:124},
{t:O,n:'SQL_TOKEN',u:'#`',p:125},
{t:O,n:'STAR',u:'#`',p:126},
{t:O,n:'SUM',u:'#`',p:127},
{t:O,n:'THEN',u:'#`',p:128},
{t:O,n:'THETA_JOINS',u:'#`',p:129},
{t:O,n:'TRAILING',u:'#`',p:130},
{t:O,n:'TRUE',u:'#`',p:131},
{t:O,n:'UNARY_MINUS',u:'#`',p:132},
{t:O,n:'UNARY_PLUS',u:'#`',p:133},
{t:O,n:'UNION',u:'#`',p:134},
{t:O,n:'UPDATE',u:'#`',p:135},
{t:O,n:'VECTOR_EXPR',u:'#`',p:136},
{t:O,n:'VERSIONED',u:'#`',p:137},
{t:O,n:'WEIRD_IDENT',u:'#`',p:138},
{t:O,n:'WHEN',u:'#`',p:139},
{t:O,n:'WHERE',u:'#`',p:140},
{t:O,n:'WITH',u:'#`',p:141},
{t:O,n:'WS',u:'#`',p:142},
{t:C,n:'HqlBaseLexer',c:'`.html',p:412},
{t:O,n:'_tokenSet_0',u:'#`',p:1},
{t:O,n:'_tokenSet_1',u:'#`',p:2},
{t:O,n:'_tokenSet_2',u:'#`',p:3},
{t:O,n:'_tokenSet_3',u:'#`',p:4},
{t:O,n:'_tokenSet_4',u:'#`',p:5},
{t:M,n:'mCLOSE_BRACKET',u:'#`(boolean)',p:6},
{t:M,n:'mCLOSE',u:'#`(boolean)',p:7},
{t:M,n:'mCOLON',u:'#`(boolean)',p:8},
{t:M,n:'mCOMMA',u:'#`(boolean)',p:9},
{t:M,n:'mCONCAT',u:'#`(boolean)',p:10},
{t:M,n:'mDIV',u:'#`(boolean)',p:11},
{t:M,n:'mEQ',u:'#`(boolean)',p:12},
{t:M,n:'mESCqs',u:'#`(boolean)',p:13},
{t:M,n:'mEXPONENT',u:'#`(boolean)',p:14},
{t:M,n:'mFLOAT_SUFFIX',u:'#`(boolean)',p:15},
{t:M,n:'mGE',u:'#`(boolean)',p:16},
{t:M,n:'mGT',u:'#`(boolean)',p:17},
{t:M,n:'mHEX_DIGIT',u:'#`(boolean)',p:18},
{t:M,n:'mID_LETTER',u:'#`(boolean)',p:19},
{t:M,n:'mID_START_LETTER',u:'#`(boolean)',p:20},
{t:M,n:'mIDENT',u:'#`(boolean)',p:21},
{t:M,n:'mLE',u:'#`(boolean)',p:22},
{t:M,n:'mLT',u:'#`(boolean)',p:23},
{t:M,n:'mMINUS',u:'#`(boolean)',p:24},
{t:M,n:'mNE',u:'#`(boolean)',p:25},
{t:M,n:'mNUM_INT',u:'#`(boolean)',p:26},
{t:M,n:'mOPEN_BRACKET',u:'#`(boolean)',p:27},
{t:M,n:'mOPEN',u:'#`(boolean)',p:28},
{t:M,n:'mPARAM',u:'#`(boolean)',p:29},
{t:M,n:'mPLUS',u:'#`(boolean)',p:30},
{t:M,n:'mQUOTED_STRING',u:'#`(boolean)',p:31},
{t:M,n:'mSQL_NE',u:'#`(boolean)',p:32},
{t:M,n:'mSTAR',u:'#`(boolean)',p:33},
{t:M,n:'mWS',u:'#`(boolean)',p:34},
{t:M,n:'nextToken',u:'#`()',p:35},
{t:M,n:'setPossibleID',u:'#`(boolean)',p:36},
{t:C,n:'HqlBaseParser',c:'`.html',p:449},
{t:O,n:'_tokenNames',u:'#`',p:1},
{t:O,n:'_tokenSet_0',u:'#`',p:2},
{t:O,n:'_tokenSet_1',u:'#`',p:3},
{t:O,n:'_tokenSet_10',u:'#`',p:4},
{t:O,n:'_tokenSet_11',u:'#`',p:5},
{t:O,n:'_tokenSet_12',u:'#`',p:6},
{t:O,n:'_tokenSet_13',u:'#`',p:7},
{t:O,n:'_tokenSet_14',u:'#`',p:8},
{t:O,n:'_tokenSet_15',u:'#`',p:9},
{t:O,n:'_tokenSet_16',u:'#`',p:10},
{t:O,n:'_tokenSet_17',u:'#`',p:11},
{t:O,n:'_tokenSet_18',u:'#`',p:12},
{t:O,n:'_tokenSet_19',u:'#`',p:13},
{t:O,n:'_tokenSet_2',u:'#`',p:14},
{t:O,n:'_tokenSet_20',u:'#`',p:15},
{t:O,n:'_tokenSet_21',u:'#`',p:16},
{t:O,n:'_tokenSet_22',u:'#`',p:17},
{t:O,n:'_tokenSet_23',u:'#`',p:18},
{t:O,n:'_tokenSet_24',u:'#`',p:19},
{t:O,n:'_tokenSet_25',u:'#`',p:20},
{t:O,n:'_tokenSet_26',u:'#`',p:21},
{t:O,n:'_tokenSet_27',u:'#`',p:22},
{t:O,n:'_tokenSet_28',u:'#`',p:23},
{t:O,n:'_tokenSet_29',u:'#`',p:24},
{t:O,n:'_tokenSet_3',u:'#`',p:25},
{t:O,n:'_tokenSet_30',u:'#`',p:26},
{t:O,n:'_tokenSet_31',u:'#`',p:27},
{t:O,n:'_tokenSet_32',u:'#`',p:28},
{t:O,n:'_tokenSet_33',u:'#`',p:29},
{t:O,n:'_tokenSet_34',u:'#`',p:30},
{t:O,n:'_tokenSet_35',u:'#`',p:31},
{t:O,n:'_tokenSet_4',u:'#`',p:32},
{t:O,n:'_tokenSet_5',u:'#`',p:33},
{t:O,n:'_tokenSet_6',u:'#`',p:34},
{t:O,n:'_tokenSet_7',u:'#`',p:35},
{t:O,n:'_tokenSet_8',u:'#`',p:36},
{t:O,n:'_tokenSet_9',u:'#`',p:37},
{t:M,n:'additiveExpression',u:'#`()',p:38},
{t:M,n:'aggregate',u:'#`()',p:39},
{t:M,n:'alias',u:'#`()',p:40},
{t:M,n:'aliasedExpression',u:'#`()',p:41},
{t:M,n:'altWhenClause',u:'#`()',p:42},
{t:M,n:'asAlias',u:'#`()',p:43},
{t:M,n:'ascendingOrDescending',u:'#`()',p:44},
{t:M,n:'assignment',u:'#`()',p:45},
{t:M,n:'atom',u:'#`()',p:46},
{t:M,n:'betweenList',u:'#`()',p:47},
{t:M,n:'buildTokenTypeASTClassMap',u:'#`()',p:48},
{t:M,n:'caseExpression',u:'#`()',p:49},
{t:M,n:'collectionExpr',u:'#`()',p:50},
{t:M,n:'compoundExpr',u:'#`()',p:51},
{t:M,n:'concatenation',u:'#`()',p:52},
{t:M,n:'constant',u:'#`()',p:53},
{t:M,n:'deleteStatement',u:'#`()',p:54},
{t:M,n:'elseClause',u:'#`()',p:55},
{t:M,n:'equalityExpression',u:'#`()',p:56},
{t:M,n:'expression',u:'#`()',p:57},
{t:M,n:'expressionOrVector',u:'#`()',p:58},
{t:M,n:'exprList',u:'#`()',p:59},
{t:M,n:'fromClassOrOuterQueryPath',u:'#`()',p:60},
{t:M,n:'fromClause',u:'#`()',p:61},
{t:M,n:'fromJoin',u:'#`()',p:62},
{t:M,n:'fromRange',u:'#`()',p:63},
{t:M,n:'groupByClause',u:'#`()',p:64},
{t:M,n:'handleDotIdent',u:'#`()',p:65},
{t:M,n:'handleIdentifierError',u:'#`(antlr.Token, antlr.RecognitionException)',p:66},
{t:M,n:'havingClause',u:'#`()',p:67},
{t:M,n:'identifier',u:'#`()',p:68},
{t:M,n:'identPrimary',u:'#`()',p:69},
{t:M,n:'inClassDeclaration',u:'#`()',p:70},
{t:M,n:'inCollectionDeclaration',u:'#`()',p:71},
{t:M,n:'inCollectionElementsDeclaration',u:'#`()',p:72},
{t:M,n:'inList',u:'#`()',p:73},
{t:M,n:'insertablePropertySpec',u:'#`()',p:74},
{t:M,n:'insertStatement',u:'#`()',p:75},
{t:M,n:'intoClause',u:'#`()',p:76},
{t:M,n:'isFilter',u:'#`()',p:77},
{t:M,n:'likeEscape',u:'#`()',p:78},
{t:M,n:'logicalAndExpression',u:'#`()',p:79},
{t:M,n:'logicalExpression',u:'#`()',p:80},
{t:M,n:'logicalOrExpression',u:'#`()',p:81},
{t:M,n:'multiplyExpression',u:'#`()',p:82},
{t:M,n:'negatedExpression',u:'#`()',p:83},
{t:M,n:'negateNode',u:'#`(antlr.collections.AST)',p:84},
{t:M,n:'newExpression',u:'#`()',p:85},
{t:M,n:'newValue',u:'#`()',p:86},
{t:M,n:'optionalFromTokenFromClause',u:'#`()',p:87},
{t:M,n:'orderByClause',u:'#`()',p:88},
{t:M,n:'orderElement',u:'#`()',p:89},
{t:M,n:'path',u:'#`()',p:90},
{t:M,n:'primaryExpression',u:'#`()',p:91},
{t:M,n:'processEqualityExpression',u:'#`(antlr.collections.AST)',p:92},
{t:M,n:'processMemberOf',u:'#`(antlr.Token, antlr.collections.AST, antlr.ASTPair)',p:93},
{t:M,n:'propertyFetch',u:'#`()',p:94},
{t:M,n:'quantifiedExpression',u:'#`()',p:95},
{t:M,n:'queryRule',u:'#`()',p:96},
{t:M,n:'relationalExpression',u:'#`()',p:97},
{t:M,n:'selectClause',u:'#`()',p:98},
{t:M,n:'selectedPropertiesList',u:'#`()',p:99},
{t:M,n:'selectFrom',u:'#`()',p:100},
{t:M,n:'selectObject',u:'#`()',p:101},
{t:M,n:'selectStatement',u:'#`()',p:102},
{t:M,n:'setClause',u:'#`()',p:103},
{t:M,n:'setFilter',u:'#`(boolean)',p:104},
{t:M,n:'stateField',u:'#`()',p:105},
{t:M,n:'statement',u:'#`()',p:106},
{t:M,n:'subQuery',u:'#`()',p:107},
{t:M,n:'unaryExpression',u:'#`()',p:108},
{t:M,n:'union',u:'#`()',p:109},
{t:M,n:'updateStatement',u:'#`()',p:110},
{t:M,n:'vectorExpr',u:'#`()',p:111},
{t:M,n:'weakKeywords',u:'#`()',p:112},
{t:M,n:'whenClause',u:'#`()',p:113},
{t:M,n:'whereClause',u:'#`()',p:114},
{t:M,n:'withClause',u:'#`()',p:115},
{t:C,n:'HqlSqlBaseWalker',c:'`.html',p:565},
{t:O,n:'_tokenNames',u:'#`',p:1},
{t:O,n:'_tokenSet_0',u:'#`',p:2},
{t:M,n:'addrExpr',u:'#`(antlr.collections.AST, boolean)',p:3},
{t:M,n:'addrExprLhs',u:'#`(antlr.collections.AST)',p:4},
{t:M,n:'aggregateExpr',u:'#`(antlr.collections.AST)',p:5},
{t:M,n:'aliasedSelectExpr',u:'#`(antlr.collections.AST)',p:6},
{t:M,n:'aliasRef',u:'#`(antlr.collections.AST)',p:7},
{t:M,n:'arithmeticExpr',u:'#`(antlr.collections.AST)',p:8},
{t:M,n:'assignment',u:'#`(antlr.collections.AST)',p:9},
{t:M,n:'beforeSelectClause',u:'#`()',p:10},
{t:M,n:'caseExpr',u:'#`(antlr.collections.AST)',p:11},
{t:M,n:'collectionFunction',u:'#`(antlr.collections.AST)',p:12},
{t:M,n:'collectionFunctionOrSubselect',u:'#`(antlr.collections.AST)',p:13},
{t:M,n:'comparisonExpr',u:'#`(antlr.collections.AST)',p:14},
{t:M,n:'constant',u:'#`(antlr.collections.AST)',p:15},
{t:M,n:'constructor',u:'#`(antlr.collections.AST)',p:16},
{t:M,n:'count',u:'#`(antlr.collections.AST)',p:17},
{t:M,n:'createFromElement',u:'#`(java.lang.String, antlr.collections.AST, antlr.collections.AST)',p:18},
{t:M,n:'createFromFilterElement',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:19},
{t:M,n:'createFromJoinElement',u:'#`(antlr.collections.AST, antlr.collections.AST, int, antlr.collections.AST, antlr.collections.AST, antlr.collections.AST)',p:20},
{t:M,n:'createIntoClause',u:'#`(java.lang.String, antlr.collections.AST)',p:21},
{t:M,n:'deleteStatement',u:'#`(antlr.collections.AST)',p:22},
{t:M,n:'evaluateAssignment',u:'#`(antlr.collections.AST)',p:23},
{t:M,n:'expr',u:'#`(antlr.collections.AST)',p:24},
{t:M,n:'exprOrSubquery',u:'#`(antlr.collections.AST)',p:25},
{t:M,n:'fromClause',u:'#`(antlr.collections.AST)',p:26},
{t:M,n:'fromElement',u:'#`(antlr.collections.AST)',p:27},
{t:M,n:'fromElementList',u:'#`(antlr.collections.AST)',p:28},
{t:M,n:'functionCall',u:'#`(antlr.collections.AST)',p:29},
{t:M,n:'generateNamedParameter',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:30},
{t:M,n:'generatePositionalParameter',u:'#`(antlr.collections.AST)',p:31},
{t:M,n:'getCurrentClauseType',u:'#`()',p:32},
{t:M,n:'getCurrentStatementType',u:'#`()',p:33},
{t:M,n:'getCurrentTopLevelClauseType',u:'#`()',p:34},
{t:M,n:'getStatementType',u:'#`()',p:35},
{t:M,n:'groupClause',u:'#`(antlr.collections.AST)',p:36},
{t:M,n:'identifier',u:'#`(antlr.collections.AST)',p:37},
{t:M,n:'inRhs',u:'#`(antlr.collections.AST)',p:38},
{t:M,n:'insertablePropertySpec',u:'#`(antlr.collections.AST)',p:39},
{t:M,n:'insertStatement',u:'#`(antlr.collections.AST)',p:40},
{t:M,n:'intoClause',u:'#`(antlr.collections.AST)',p:41},
{t:M,n:'isComparativeExpressionClause',u:'#`()',p:42},
{t:M,n:'isInCase',u:'#`()',p:43},
{t:M,n:'isInFrom',u:'#`()',p:44},
{t:M,n:'isInFunctionCall',u:'#`()',p:45},
{t:M,n:'isInSelect',u:'#`()',p:46},
{t:M,n:'isNonQualifiedPropertyRef',u:'#`(antlr.collections.AST)',p:47},
{t:M,n:'isSelectStatement',u:'#`()',p:48},
{t:M,n:'isSubQuery',u:'#`()',p:49},
{t:M,n:'joinElement',u:'#`(antlr.collections.AST)',p:50},
{t:M,n:'joinType',u:'#`(antlr.collections.AST)',p:51},
{t:M,n:'literal',u:'#`(antlr.collections.AST)',p:52},
{t:M,n:'logicalExpr',u:'#`(antlr.collections.AST)',p:53},
{t:M,n:'lookupAlias',u:'#`(antlr.collections.AST)',p:54},
{t:M,n:'lookupNonQualifiedProperty',u:'#`(antlr.collections.AST)',p:55},
{t:M,n:'lookupProperty',u:'#`(antlr.collections.AST, boolean, boolean)',p:56},
{t:M,n:'newValue',u:'#`(antlr.collections.AST)',p:57},
{t:M,n:'numericInteger',u:'#`(antlr.collections.AST)',p:58},
{t:M,n:'orderClause',u:'#`(antlr.collections.AST)',p:59},
{t:M,n:'orderExprs',u:'#`(antlr.collections.AST)',p:60},
{t:M,n:'parameter',u:'#`(antlr.collections.AST)',p:61},
{t:M,n:'path',u:'#`(antlr.collections.AST)',p:62},
{t:M,n:'pathAsIdent',u:'#`(antlr.collections.AST)',p:63},
{t:M,n:'postProcessDelete',u:'#`(antlr.collections.AST)',p:64},
{t:M,n:'postProcessInsert',u:'#`(antlr.collections.AST)',p:65},
{t:M,n:'postProcessUpdate',u:'#`(antlr.collections.AST)',p:66},
{t:M,n:'prepareArithmeticOperator',u:'#`(antlr.collections.AST)',p:67},
{t:M,n:'prepareFromClauseInputTree',u:'#`(antlr.collections.AST)',p:68},
{t:M,n:'prepareLogicOperator',u:'#`(antlr.collections.AST)',p:69},
{t:M,n:'prepareVersioned',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:70},
{t:M,n:'processBoolean',u:'#`(antlr.collections.AST)',p:71},
{t:M,n:'processConstant',u:'#`(antlr.collections.AST)',p:72},
{t:M,n:'processConstructor',u:'#`(antlr.collections.AST)',p:73},
{t:M,n:'processFunction',u:'#`(antlr.collections.AST, boolean)',p:74},
{t:M,n:'processIndex',u:'#`(antlr.collections.AST)',p:75},
{t:M,n:'processNumericLiteral',u:'#`(antlr.collections.AST)',p:76},
{t:M,n:'processQuery',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:77},
{t:M,n:'propertyName',u:'#`(antlr.collections.AST)',p:78},
{t:M,n:'propertyRef',u:'#`(antlr.collections.AST)',p:79},
{t:M,n:'propertyRefLhs',u:'#`(antlr.collections.AST)',p:80},
{t:M,n:'pushFromClause',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:81},
{t:M,n:'query',u:'#`(antlr.collections.AST)',p:82},
{t:M,n:'resolve',u:'#`(antlr.collections.AST)',p:83},
{t:M,n:'resolveSelectExpression',u:'#`(antlr.collections.AST)',p:84},
{t:M,n:'selectClause',u:'#`(antlr.collections.AST)',p:85},
{t:M,n:'selectExpr',u:'#`(antlr.collections.AST)',p:86},
{t:M,n:'selectExprList',u:'#`(antlr.collections.AST)',p:87},
{t:M,n:'selectStatement',u:'#`(antlr.collections.AST)',p:88},
{t:M,n:'setAlias',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:89},
{t:M,n:'setClause',u:'#`(antlr.collections.AST)',p:90},
{t:M,n:'setImpliedJoinType',u:'#`(int)',p:91},
{t:M,n:'statement',u:'#`(antlr.collections.AST)',p:92},
{t:M,n:'updateStatement',u:'#`(antlr.collections.AST)',p:93},
{t:M,n:'whereClause',u:'#`(antlr.collections.AST)',p:94},
{t:M,n:'withClause',u:'#`(antlr.collections.AST)',p:95},
{t:C,n:'SqlGeneratorBase',c:'`.html',p:661},
{t:O,n:'_tokenNames',u:'#`',p:1},
{t:O,n:'_tokenSet_0',u:'#`',p:2},
{t:O,n:'_tokenSet_1',u:'#`',p:3},
{t:O,n:'_tokenSet_2',u:'#`',p:4},
{t:O,n:'_tokenSet_3',u:'#`',p:5},
{t:O,n:'_tokenSet_4',u:'#`',p:6},
{t:O,n:'_tokenSet_5',u:'#`',p:7},
{t:M,n:'additiveExpr',u:'#`(antlr.collections.AST)',p:8},
{t:M,n:'addrExpr',u:'#`(antlr.collections.AST)',p:9},
{t:M,n:'aggregate',u:'#`(antlr.collections.AST)',p:10},
{t:M,n:'arguments',u:'#`(antlr.collections.AST)',p:11},
{t:M,n:'arithmeticExpr',u:'#`(antlr.collections.AST)',p:12},
{t:M,n:'beginFunctionTemplate',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:13},
{t:M,n:'binaryComparisonExpression',u:'#`(antlr.collections.AST)',p:14},
{t:M,n:'booleanExpr',u:'#`(antlr.collections.AST, boolean)',p:15},
{t:M,n:'booleanOp',u:'#`(antlr.collections.AST, boolean)',p:16},
{t:M,n:'caseExpr',u:'#`(antlr.collections.AST)',p:17},
{t:M,n:'commaBetweenParameters',u:'#`(java.lang.String)',p:18},
{t:M,n:'comparisonExpr',u:'#`(antlr.collections.AST, boolean)',p:19},
{t:M,n:'conditionList',u:'#`(antlr.collections.AST)',p:20},
{t:M,n:'constant',u:'#`(antlr.collections.AST)',p:21},
{t:M,n:'count',u:'#`(antlr.collections.AST)',p:22},
{t:M,n:'countExpr',u:'#`(antlr.collections.AST)',p:23},
{t:M,n:'deleteStatement',u:'#`(antlr.collections.AST)',p:24},
{t:M,n:'distinctOrAll',u:'#`(antlr.collections.AST)',p:25},
{t:M,n:'endFunctionTemplate',u:'#`(antlr.collections.AST)',p:26},
{t:M,n:'exoticComparisonExpression',u:'#`(antlr.collections.AST)',p:27},
{t:M,n:'expr',u:'#`(antlr.collections.AST)',p:28},
{t:M,n:'filters',u:'#`(antlr.collections.AST)',p:29},
{t:M,n:'from',u:'#`(antlr.collections.AST)',p:30},
{t:M,n:'fromFragmentSeparator',u:'#`(antlr.collections.AST)',p:31},
{t:M,n:'fromTable',u:'#`(antlr.collections.AST)',p:32},
{t:M,n:'getLastChar',u:'#`()',p:33},
{t:M,n:'getStringBuffer',u:'#`()',p:34},
{t:M,n:'groupExprs',u:'#`(antlr.collections.AST)',p:35},
{t:M,n:'hasText',u:'#`(antlr.collections.AST)',p:36},
{t:M,n:'inList',u:'#`(antlr.collections.AST)',p:37},
{t:M,n:'insertStatement',u:'#`(antlr.collections.AST)',p:38},
{t:M,n:'likeEscape',u:'#`(antlr.collections.AST)',p:39},
{t:M,n:'methodCall',u:'#`(antlr.collections.AST)',p:40},
{t:M,n:'multiplicativeExpr',u:'#`(antlr.collections.AST)',p:41},
{t:M,n:'nestedExpr',u:'#`(antlr.collections.AST)',p:42},
{t:M,n:'nestedExprAfterMinusDiv',u:'#`(antlr.collections.AST)',p:43},
{t:M,n:'nestedFromFragment',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:44},
{t:M,n:'nyi',u:'#`(antlr.collections.AST)',p:45},
{t:M,n:'optionalSpace',u:'#`()',p:46},
{t:M,n:'orderDirection',u:'#`(antlr.collections.AST)',p:47},
{t:M,n:'orderExprs',u:'#`(antlr.collections.AST)',p:48},
{t:M,n:'out',u:'#`(antlr.collections.AST)',p:49},
{t:M,n:'parameter',u:'#`(antlr.collections.AST)',p:50},
{t:M,n:'parenSelect',u:'#`(antlr.collections.AST)',p:51},
{t:M,n:'quantified',u:'#`(antlr.collections.AST)',p:52},
{t:M,n:'selectAtom',u:'#`(antlr.collections.AST)',p:53},
{t:M,n:'selectClause',u:'#`(antlr.collections.AST)',p:54},
{t:M,n:'selectColumn',u:'#`(antlr.collections.AST)',p:55},
{t:M,n:'selectExpr',u:'#`(antlr.collections.AST)',p:56},
{t:M,n:'selectStatement',u:'#`(antlr.collections.AST)',p:57},
{t:M,n:'separator',u:'#`(antlr.collections.AST, java.lang.String)',p:58},
{t:M,n:'setClause',u:'#`(antlr.collections.AST)',p:59},
{t:M,n:'simpleExpr',u:'#`(antlr.collections.AST)',p:60},
{t:M,n:'simpleExprList',u:'#`(antlr.collections.AST)',p:61},
{t:M,n:'sqlToken',u:'#`(antlr.collections.AST)',p:62},
{t:M,n:'statement',u:'#`(antlr.collections.AST)',p:63},
{t:M,n:'tableJoin',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:64},
{t:M,n:'thetaJoins',u:'#`(antlr.collections.AST)',p:65},
{t:M,n:'updateStatement',u:'#`(antlr.collections.AST)',p:66},
{t:M,n:'whereClause',u:'#`(antlr.collections.AST)',p:67},
{t:M,n:'whereClauseExpr',u:'#`(antlr.collections.AST)',p:68},
{t:M,n:'whereExpr',u:'#`(antlr.collections.AST)',p:69},
{t:P,n:'org.hibernate.hql.ast',u:'package-summary.html',c:'rg/hibernate/hql/ast/',p:8681},
{t:I,n:'ErrorReporter',c:'`.html',p:1},
{t:M,n:'reportError',u:'#`(antlr.RecognitionException)',p:1},
{t:M,n:'reportWarning',u:'#`(java.lang.String)',p:2},
{t:I,n:'ParseErrorHandler',c:'`.html',p:4},
{t:M,n:'getErrorCount',u:'#`()',p:1},
{t:M,n:'throwQueryException',u:'#`()',p:2},
{t:C,n:'ASTQueryTranslatorFactory',c:'`.html',p:7},
{t:M,n:'createFilterTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'createQueryTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:C,n:'ErrorCounter',c:'`.html',p:10},
{t:M,n:'getErrorCount',u:'#`()',p:1},
{t:M,n:'reportError',u:'#`(antlr.RecognitionException)',p:2},
{t:M,n:'reportWarning',u:'#`(java.lang.String)',p:3},
{t:M,n:'throwQueryException',u:'#`()',p:4},
{t:C,n:'HqlASTFactory',c:'`.html',p:15},
{t:M,n:'getASTNodeType',u:'#`(int)',p:1},
{t:C,n:'HqlParser',c:'`.html',p:17},
{t:M,n:'getInstance',u:'#`(java.lang.String)',p:1},
{t:M,n:'getParseErrorHandler',u:'#`()',p:2},
{t:M,n:'handleDotIdent',u:'#`()',p:3},
{t:M,n:'handleIdentifierError',u:'#`(antlr.Token, antlr.RecognitionException)',p:4},
{t:M,n:'negateNode',u:'#`(antlr.collections.AST)',p:5},
{t:M,n:'panic',u:'#`()',p:6},
{t:M,n:'processEqualityExpression',u:'#`(antlr.collections.AST)',p:7},
{t:M,n:'processMemberOf',u:'#`(antlr.Token, antlr.collections.AST, antlr.ASTPair)',p:8},
{t:M,n:'reportError',u:'#`(antlr.RecognitionException)',p:9},
{t:M,n:'reportWarning',u:'#`(java.lang.String)',p:10},
{t:M,n:'showAst',u:'#`(antlr.collections.AST, java.io.PrintStream)',p:11},
{t:M,n:'weakKeywords',u:'#`()',p:12},
{t:C,n:'HqlSqlWalker',c:'`.html',p:30},
{t:M,n:'addQuerySpaces',u:'#`(java.io.Serializable[])',p:1},
{t:M,n:'beforeSelectClause',u:'#`()',p:2},
{t:M,n:'createFromElement',u:'#`(java.lang.String, antlr.collections.AST, antlr.collections.AST)',p:3},
{t:M,n:'createFromFilterElement',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:4},
{t:M,n:'createFromJoinElement',u:'#`(antlr.collections.AST, antlr.collections.AST, int, antlr.collections.AST, antlr.collections.AST, antlr.collections.AST)',p:5},
{t:M,n:'createIntoClause',u:'#`(java.lang.String, antlr.collections.AST)',p:6},
{t:M,n:'evaluateAssignment',u:'#`(antlr.collections.AST)',p:7},
{t:M,n:'generateNamedParameter',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:8},
{t:M,n:'generatePositionalParameter',u:'#`(antlr.collections.AST)',p:9},
{t:M,n:'getAliasGenerator',u:'#`()',p:10},
{t:M,n:'getAssignmentSpecifications',u:'#`()',p:11},
{t:M,n:'getASTPrinter',u:'#`()',p:12},
{t:M,n:'getCurrentFromClause',u:'#`()',p:13},
{t:M,n:'getEnabledFilters',u:'#`()',p:14},
{t:M,n:'getFinalFromClause',u:'#`()',p:15},
{t:M,n:'getImpliedJoinType',u:'#`()',p:16},
{t:M,n:'getLiteralProcessor',u:'#`()',p:17},
{t:M,n:'getNamedParameterLocations',u:'#`(java.lang.String)',p:18},
{t:M,n:'getNumberOfParametersInSetClause',u:'#`()',p:19},
{t:M,n:'getParameters',u:'#`()',p:20},
{t:M,n:'getParseErrorHandler',u:'#`()',p:21},
{t:M,n:'getQuerySpaces',u:'#`()',p:22},
{t:M,n:'getReturnAliases',u:'#`()',p:23},
{t:M,n:'getReturnTypes',u:'#`()',p:24},
{t:M,n:'getSelectClause',u:'#`()',p:25},
{t:M,n:'getSessionFactoryHelper',u:'#`()',p:26},
{t:M,n:'getTokenReplacements',u:'#`()',p:27},
{t:M,n:'isNonQualifiedPropertyRef',u:'#`(antlr.collections.AST)',p:28},
{t:M,n:'isShallowQuery',u:'#`()',p:29},
{t:M,n:'lookupAlias',u:'#`(antlr.collections.AST)',p:30},
{t:M,n:'lookupNonQualifiedProperty',u:'#`(antlr.collections.AST)',p:31},
{t:M,n:'lookupProperty',u:'#`(antlr.collections.AST, boolean, boolean)',p:32},
{t:M,n:'panic',u:'#`()',p:33},
{t:M,n:'postProcessDelete',u:'#`(antlr.collections.AST)',p:34},
{t:M,n:'postProcessDML',u:'#`(org.hibernate.hql.ast.tree.RestrictableStatement)',p:35},
{t:M,n:'postProcessInsert',u:'#`(antlr.collections.AST)',p:36},
{t:M,n:'postProcessUpdate',u:'#`(antlr.collections.AST)',p:37},
{t:M,n:'prepareArithmeticOperator',u:'#`(antlr.collections.AST)',p:38},
{t:M,n:'prepareFromClauseInputTree',u:'#`(antlr.collections.AST)',p:39},
{t:M,n:'prepareLogicOperator',u:'#`(antlr.collections.AST)',p:40},
{t:M,n:'prepareVersioned',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:41},
{t:M,n:'processBoolean',u:'#`(antlr.collections.AST)',p:42},
{t:M,n:'processConstant',u:'#`(antlr.collections.AST)',p:43},
{t:M,n:'processConstructor',u:'#`(antlr.collections.AST)',p:44},
{t:M,n:'processFunction',u:'#`(antlr.collections.AST, boolean)',p:45},
{t:M,n:'processIndex',u:'#`(antlr.collections.AST)',p:46},
{t:M,n:'processNumericLiteral',u:'#`(antlr.collections.AST)',p:47},
{t:M,n:'processQuery',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:48},
{t:M,n:'pushFromClause',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:49},
{t:M,n:'reportError',u:'#`(antlr.RecognitionException)',p:50},
{t:M,n:'reportWarning',u:'#`(java.lang.String)',p:51},
{t:M,n:'resolve',u:'#`(antlr.collections.AST)',p:52},
{t:M,n:'resolveSelectExpression',u:'#`(antlr.collections.AST)',p:53},
{t:M,n:'setAlias',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:54},
{t:M,n:'setImpliedJoinType',u:'#`(int)',p:55},
{t:M,n:'supportsIdGenWithBulkInsertion',u:'#`(org.hibernate.id.IdentifierGenerator)',p:56},
{t:C,n:'HqlToken',c:'`.html',p:87},
{t:M,n:'isPossibleID',u:'#`()',p:1},
{t:M,n:'setPossibleID',u:'#`(boolean)',p:2},
{t:M,n:'setType',u:'#`(int)',p:3},
{t:M,n:'toString',u:'#`()',p:4},
{t:C,n:'ParameterTranslationsImpl',c:'`.html',p:92},
{t:M,n:'getNamedParameterExpectedType',u:'#`(java.lang.String)',p:1},
{t:M,n:'getNamedParameterInfo',u:'#`(java.lang.String)',p:2},
{t:M,n:'getNamedParameterNames',u:'#`()',p:3},
{t:M,n:'getNamedParameterSqlLocations',u:'#`(java.lang.String)',p:4},
{t:M,n:'getOrdinalParameterCount',u:'#`()',p:5},
{t:M,n:'getOrdinalParameterExpectedType',u:'#`(int)',p:6},
{t:M,n:'getOrdinalParameterInfo',u:'#`(int)',p:7},
{t:M,n:'getOrdinalParameterSqlLocation',u:'#`(int)',p:8},
{t:M,n:'supportsOrdinalParameterMetadata',u:'#`()',p:9},
{t:C,n:'QueryTranslatorImpl',c:'`.html',p:102},
{t:M,n:'collectSqlStrings',u:'#`()',p:1},
{t:M,n:'compile',u:'#`(java.util.Map, boolean)',p:2},
{t:M,n:'containsCollectionFetches',u:'#`()',p:3},
{t:M,n:'executeUpdate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:4},
{t:M,n:'getColumnNames',u:'#`()',p:5},
{t:M,n:'getEnabledFilters',u:'#`()',p:6},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:7},
{t:M,n:'getParameterTranslations',u:'#`()',p:8},
{t:M,n:'getQuerySpaces',u:'#`()',p:9},
{t:M,n:'getQueryString',u:'#`()',p:10},
{t:M,n:'getReturnAliases',u:'#`()',p:11},
{t:M,n:'getReturnTypes',u:'#`()',p:12},
{t:M,n:'getSqlAST',u:'#`()',p:13},
{t:M,n:'getSQLString',u:'#`()',p:14},
{t:M,n:'isManipulationStatement',u:'#`()',p:15},
{t:M,n:'isShallowQuery',u:'#`()',p:16},
{t:M,n:'iterate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.event.EventSource)',p:17},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:18},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:19},
{t:M,n:'validateScrollability',u:'#`()',p:20},
{t:C,n:'SqlASTFactory',c:'`.html',p:123},
{t:M,n:'create',u:'#`(java.lang.Class)',p:1},
{t:M,n:'createUsingCtor',u:'#`(antlr.Token, java.lang.String)',p:2},
{t:M,n:'getASTNodeType',u:'#`(int)',p:3},
{t:C,n:'SqlGenerator',c:'`.html',p:127},
{t:M,n:'beginFunctionTemplate',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:1},
{t:M,n:'commaBetweenParameters',u:'#`(java.lang.String)',p:2},
{t:M,n:'endFunctionTemplate',u:'#`(antlr.collections.AST)',p:3},
{t:M,n:'fromFragmentSeparator',u:'#`(antlr.collections.AST)',p:4},
{t:M,n:'getParseErrorHandler',u:'#`()',p:5},
{t:M,n:'getSQL',u:'#`()',p:6},
{t:M,n:'nestedFromFragment',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:7},
{t:M,n:'optionalSpace',u:'#`()',p:8},
{t:M,n:'out',u:'#`(java.lang.String)',p:9},
{t:M,n:'panic',u:'#`()',p:10},
{t:M,n:'reportError',u:'#`(antlr.RecognitionException)',p:11},
{t:M,n:'reportWarning',u:'#`(java.lang.String)',p:12},
{t:C,n:'DetailedSemanticException',c:'`.html',p:140},
{t:M,n:'printStackTrace',u:'#`()',p:1},
{t:M,n:'toString',u:'#`()',p:2},
{t:C,n:'InvalidPathException',u:'`.html',p:143},
{t:C,n:'QuerySyntaxException',u:'`.html',p:144},
{t:P,n:'org.hibernate.hql.classic',u:'package-summary.html',c:'rg/hibernate/hql/classic/',p:8826},
{t:I,n:'Parser',c:'`.html',p:1},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'ClassicQueryTranslatorFactory',c:'`.html',p:5},
{t:M,n:'createFilterTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'createQueryTranslator',u:'#`(java.lang.String, java.util.Map, org.hibernate.engine.SessionFactoryImplementor)',p:2},
{t:C,n:'ClauseParser',c:'`.html',p:8},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'FromParser',c:'`.html',p:12},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'FromPathExpressionParser',c:'`.html',p:16},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'setExpectingCollectionIndex',u:'#`()',p:2},
{t:C,n:'GroupByParser',c:'`.html',p:19},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'HavingParser',u:'`.html',p:23},
{t:C,n:'OrderByParser',c:'`.html',p:24},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'ParserHelper',c:'`.html',p:28},
{t:O,n:'HQL_SEPARATORS',u:'#`',p:1},
{t:O,n:'HQL_VARIABLE_PREFIX',u:'#`',p:2},
{t:O,n:'PATH_SEPARATORS',u:'#`',p:3},
{t:M,n:'isWhitespace',u:'#`(java.lang.String)',p:4},
{t:M,n:'parse',u:'#`(org.hibernate.hql.classic.Parser, java.lang.String, java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:5},
{t:C,n:'PathExpressionParser',c:'`.html',p:34},
{t:M,n:'addAssociation',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'addFromAssociation',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'addFromCollection',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:M,n:'currentColumns',u:'#`()',p:4},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:5},
{t:M,n:'fetch',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl, java.lang.String)',p:6},
{t:M,n:'getCollectionSubquery',u:'#`(java.util.Map)',p:7},
{t:M,n:'getName',u:'#`()',p:8},
{t:M,n:'getPropertyType',u:'#`()',p:9},
{t:M,n:'getWhereColumn',u:'#`()',p:10},
{t:M,n:'getWhereColumns',u:'#`()',p:11},
{t:M,n:'getWhereColumnType',u:'#`()',p:12},
{t:M,n:'getWhereJoin',u:'#`()',p:13},
{t:M,n:'ignoreInitialJoin',u:'#`()',p:14},
{t:M,n:'isCollectionValued',u:'#`()',p:15},
{t:M,n:'isExpectingCollectionIndex',u:'#`()',p:16},
{t:M,n:'lastCollectionElement',u:'#`()',p:17},
{t:M,n:'setExpectingCollectionIndex',u:'#`()',p:18},
{t:M,n:'setLastCollectionElementIndexValue',u:'#`(java.lang.String)',p:19},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:20},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:21},
{t:C,n:'PreprocessingParser',c:'`.html',p:56},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:C,n:'QueryTranslatorImpl',c:'`.html',p:60},
{t:M,n:'applyLocks',u:'#`(java.lang.String, java.util.Map, org.hibernate.dialect.Dialect)',p:1},
{t:M,n:'collectSqlStrings',u:'#`()',p:2},
{t:M,n:'compile',u:'#`(java.util.Map, boolean)',p:3},
{t:M,n:'containsCollectionFetches',u:'#`()',p:4},
{t:M,n:'executeUpdate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:5},
{t:M,n:'getAliases',u:'#`()',p:6},
{t:M,n:'getAliasName',u:'#`(java.lang.String)',p:7},
{t:M,n:'getCollectionOwners',u:'#`()',p:8},
{t:M,n:'getCollectionPersisters',u:'#`()',p:9},
{t:M,n:'getCollectionSuffixes',u:'#`()',p:10},
{t:M,n:'getColumnNames',u:'#`()',p:11},
{t:M,n:'getEnabledFilters',u:'#`()',p:12},
{t:M,n:'getEntityPersisters',u:'#`()',p:13},
{t:M,n:'getHolderClass',u:'#`()',p:14},
{t:M,n:'getLockModes',u:'#`(java.util.Map)',p:15},
{t:M,n:'getNamedParameterLocs',u:'#`(java.lang.String)',p:16},
{t:M,n:'getOwnerAssociationTypes',u:'#`()',p:17},
{t:M,n:'getOwners',u:'#`()',p:18},
{t:M,n:'getParameterTranslations',u:'#`()',p:19},
{t:M,n:'getQueryIdentifier',u:'#`()',p:20},
{t:M,n:'getQuerySpaces',u:'#`()',p:21},
{t:M,n:'getQueryString',u:'#`()',p:22},
{t:M,n:'getResultColumnOrRow',u:'#`(java.lang.Object[], java.sql.ResultSet, org.hibernate.engine.SessionImplementor)',p:23},
{t:M,n:'getResultList',u:'#`(java.util.List)',p:24},
{t:M,n:'getReturnAliases',u:'#`()',p:25},
{t:M,n:'getReturnTypes',u:'#`()',p:26},
{t:M,n:'getSQLString',u:'#`()',p:27},
{t:M,n:'getSuffixes',u:'#`()',p:28},
{t:M,n:'isCompiled',u:'#`()',p:29},
{t:M,n:'isManipulationStatement',u:'#`()',p:30},
{t:M,n:'isSubselectLoadingEnabled',u:'#`()',p:31},
{t:M,n:'iterate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.event.EventSource)',p:32},
{t:M,n:'list',u:'#`(org.hibernate.engine.SessionImplementor, org.hibernate.engine.QueryParameters)',p:33},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:34},
{t:M,n:'toString',u:'#`()',p:35},
{t:M,n:'upgradeLocks',u:'#`()',p:36},
{t:M,n:'validateScrollability',u:'#`()',p:37},
{t:C,n:'SelectParser',c:'`.html',p:98},
{t:M,n:'aggregateFuncNoArgsHasParenthesis',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'aggregateHasArgs',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'aggregateType',u:'#`(java.util.List, org.hibernate.type.Type, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:4},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:5},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:6},
{t:C,n:'SelectPathExpressionParser',c:'`.html',p:105},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'getSelectName',u:'#`()',p:2},
{t:M,n:'setExpectingCollectionIndex',u:'#`()',p:3},
{t:C,n:'WhereParser',c:'`.html',p:109},
{t:M,n:'end',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:1},
{t:M,n:'start',u:'#`(org.hibernate.hql.classic.QueryTranslatorImpl)',p:2},
{t:M,n:'token',u:'#`(java.lang.String, org.hibernate.hql.classic.QueryTranslatorImpl)',p:3},
{t:P,n:'org.hibernate.impl',u:'package-summary.html',c:'rg/hibernate/impl/',p:8939},
{t:C,n:'AbstractQueryImpl',c:'`.html',p:1},
{t:O,n:'parameterMetadata',u:'#`',p:1},
{t:O,n:'session',u:'#`',p:2},
{t:M,n:'after',u:'#`()',p:3},
{t:M,n:'before',u:'#`()',p:4},
{t:M,n:'determineType',u:'#`(int, java.lang.Object)',p:5},
{t:M,n:'executeUpdate',u:'#`()',p:6},
{t:M,n:'expandParameterLists',u:'#`(java.util.Map)',p:7},
{t:M,n:'getLockModes',u:'#`()',p:8},
{t:M,n:'getNamedParameterLists',u:'#`()',p:9},
{t:M,n:'getNamedParameters',u:'#`()',p:10},
{t:M,n:'getNamedParams',u:'#`()',p:11},
{t:M,n:'getQueryParameters',u:'#`(java.util.Map)',p:12},
{t:M,n:'getQueryString',u:'#`()',p:13},
{t:M,n:'getReturnAliases',u:'#`()',p:14},
{t:M,n:'getReturnTypes',u:'#`()',p:15},
{t:M,n:'getRowSelection',u:'#`()',p:16},
{t:M,n:'getSelection',u:'#`()',p:17},
{t:M,n:'getTypes',u:'#`()',p:18},
{t:M,n:'getValues',u:'#`()',p:19},
{t:M,n:'hasNamedParameters',u:'#`()',p:20},
{t:M,n:'isReadOnly',u:'#`()',p:21},
{t:M,n:'setBigDecimal',u:'#`(int, java.math.BigDecimal)',p:22},
{t:M,n:'setBigInteger',u:'#`(int, java.math.BigInteger)',p:23},
{t:M,n:'setBinary',u:'#`(int, byte[])',p:24},
{t:M,n:'setBoolean',u:'#`(int, boolean)',p:25},
{t:M,n:'setByte',u:'#`(int, byte)',p:26},
{t:M,n:'setCacheable',u:'#`(boolean)',p:27},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:28},
{t:M,n:'setCacheRegion',u:'#`(java.lang.String)',p:29},
{t:M,n:'setCalendar',u:'#`(int, java.util.Calendar)',p:30},
{t:M,n:'setCalendarDate',u:'#`(int, java.util.Calendar)',p:31},
{t:M,n:'setCharacter',u:'#`(int, char)',p:32},
{t:M,n:'setCollectionKey',u:'#`(java.io.Serializable)',p:33},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:34},
{t:M,n:'setDate',u:'#`(int, java.util.Date)',p:35},
{t:M,n:'setDouble',u:'#`(int, double)',p:36},
{t:M,n:'setEntity',u:'#`(int, java.lang.Object)',p:37},
{t:M,n:'setFetchSize',u:'#`(int)',p:38},
{t:M,n:'setFirstResult',u:'#`(int)',p:39},
{t:M,n:'setFloat',u:'#`(int, float)',p:40},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:41},
{t:M,n:'setInteger',u:'#`(int, int)',p:42},
{t:M,n:'setLocale',u:'#`(int, java.util.Locale)',p:43},
{t:M,n:'setLong',u:'#`(int, long)',p:44},
{t:M,n:'setMaxResults',u:'#`(int)',p:45},
{t:M,n:'setOptionalEntityName',u:'#`(java.lang.String)',p:46},
{t:M,n:'setOptionalId',u:'#`(java.io.Serializable)',p:47},
{t:M,n:'setOptionalObject',u:'#`(java.lang.Object)',p:48},
{t:M,n:'setParameter',u:'#`(int, java.lang.Object)',p:49},
{t:M,n:'setParameterList',u:'#`(java.lang.String, java.util.Collection)',p:50},
{t:M,n:'setParameters',u:'#`(java.lang.Object[], org.hibernate.type.Type[])',p:51},
{t:M,n:'setProperties',u:'#`(java.lang.Object)',p:52},
{t:M,n:'setReadOnly',u:'#`(boolean)',p:53},
{t:M,n:'setSerializable',u:'#`(int, java.io.Serializable)',p:54},
{t:M,n:'setShort',u:'#`(int, short)',p:55},
{t:M,n:'setString',u:'#`(int, java.lang.String)',p:56},
{t:M,n:'setText',u:'#`(int, java.lang.String)',p:57},
{t:M,n:'setTime',u:'#`(int, java.util.Date)',p:58},
{t:M,n:'setTimeout',u:'#`(int)',p:59},
{t:M,n:'setTimestamp',u:'#`(int, java.util.Date)',p:60},
{t:M,n:'toString',u:'#`()',p:61},
{t:M,n:'typeArray',u:'#`()',p:62},
{t:M,n:'uniqueResult',u:'#`()',p:63},
{t:M,n:'valueArray',u:'#`()',p:64},
{t:M,n:'verifyParameters',u:'#`()',p:65},
{t:C,n:'AbstractScrollableResults',c:'`.html',p:67},
{t:M,n:'afterScrollOperation',u:'#`()',p:1},
{t:M,n:'close',u:'#`()',p:2},
{t:M,n:'get',u:'#`()',p:3},
{t:M,n:'getBigDecimal',u:'#`(int)',p:4},
{t:M,n:'getBigInteger',u:'#`(int)',p:5},
{t:M,n:'getBinary',u:'#`(int)',p:6},
{t:M,n:'getBlob',u:'#`(int)',p:7},
{t:M,n:'getBoolean',u:'#`(int)',p:8},
{t:M,n:'getByte',u:'#`(int)',p:9},
{t:M,n:'getCalendar',u:'#`(int)',p:10},
{t:M,n:'getCharacter',u:'#`(int)',p:11},
{t:M,n:'getClob',u:'#`(int)',p:12},
{t:M,n:'getCurrentRow',u:'#`()',p:13},
{t:M,n:'getDate',u:'#`(int)',p:14},
{t:M,n:'getDouble',u:'#`(int)',p:15},
{t:M,n:'getFinal',u:'#`(int, org.hibernate.type.Type)',p:16},
{t:M,n:'getFloat',u:'#`(int)',p:17},
{t:M,n:'getHolderInstantiator',u:'#`()',p:18},
{t:M,n:'getInteger',u:'#`(int)',p:19},
{t:M,n:'getLoader',u:'#`()',p:20},
{t:M,n:'getLocale',u:'#`(int)',p:21},
{t:M,n:'getLong',u:'#`(int)',p:22},
{t:M,n:'getNonFinal',u:'#`(int, org.hibernate.type.Type)',p:23},
{t:M,n:'getPs',u:'#`()',p:24},
{t:M,n:'getQueryParameters',u:'#`()',p:25},
{t:M,n:'getResultSet',u:'#`()',p:26},
{t:M,n:'getSession',u:'#`()',p:27},
{t:M,n:'getShort',u:'#`(int)',p:28},
{t:M,n:'getString',u:'#`(int)',p:29},
{t:M,n:'getText',u:'#`(int)',p:30},
{t:M,n:'getTimeZone',u:'#`(int)',p:31},
{t:M,n:'getType',u:'#`(int)',p:32},
{t:M,n:'getTypes',u:'#`()',p:33},
{t:C,n:'AbstractSessionImpl',c:'`.html',p:101},
{t:O,n:'factory',u:'#`',p:1},
{t:M,n:'autoFlushIfRequired',u:'#`(java.util.Set)',p:2},
{t:M,n:'createQuery',u:'#`(java.lang.String)',p:3},
{t:M,n:'createSQLQuery',u:'#`(java.lang.String)',p:4},
{t:M,n:'errorIfClosed',u:'#`()',p:5},
{t:M,n:'getFactory',u:'#`()',p:6},
{t:M,n:'getHQLQueryPlan',u:'#`(java.lang.String, boolean)',p:7},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:8},
{t:M,n:'getNamedSQLQuery',u:'#`(java.lang.String)',p:9},
{t:M,n:'getNativeSQLQueryPlan',u:'#`(org.hibernate.engine.query.NativeSQLQuerySpecification)',p:10},
{t:M,n:'isClosed',u:'#`()',p:11},
{t:M,n:'list',u:'#`(org.hibernate.engine.query.NativeSQLQuerySpecification, org.hibernate.engine.QueryParameters)',p:12},
{t:M,n:'scroll',u:'#`(org.hibernate.engine.query.NativeSQLQuerySpecification, org.hibernate.engine.QueryParameters)',p:13},
{t:M,n:'setClosed',u:'#`()',p:14},
{t:C,n:'CollectionFilterImpl',c:'`.html',p:116},
{t:M,n:'iterate',u:'#`()',p:1},
{t:M,n:'list',u:'#`()',p:2},
{t:M,n:'scroll',u:'#`()',p:3},
{t:M,n:'typeArray',u:'#`()',p:4},
{t:M,n:'valueArray',u:'#`()',p:5},
{t:C,n:'CriteriaImpl',c:'`.html',p:122},
{t:M,n:'add',u:'#`(org.hibernate.Criteria, org.hibernate.criterion.Criterion)',p:1},
{t:M,n:'addOrder',u:'#`(org.hibernate.criterion.Order)',p:2},
{t:M,n:'after',u:'#`()',p:3},
{t:M,n:'before',u:'#`()',p:4},
{t:M,n:'createAlias',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'createCriteria',u:'#`(java.lang.String)',p:6},
{t:M,n:'getAlias',u:'#`()',p:7},
{t:M,n:'getCacheable',u:'#`()',p:8},
{t:M,n:'getCacheRegion',u:'#`()',p:9},
{t:M,n:'getComment',u:'#`()',p:10},
{t:M,n:'getEntityOrClassName',u:'#`()',p:11},
{t:M,n:'getFetchMode',u:'#`(java.lang.String)',p:12},
{t:M,n:'getFetchSize',u:'#`()',p:13},
{t:M,n:'getFirstResult',u:'#`()',p:14},
{t:M,n:'getLockModes',u:'#`()',p:15},
{t:M,n:'getMaxResults',u:'#`()',p:16},
{t:M,n:'getProjection',u:'#`()',p:17},
{t:M,n:'getProjectionCriteria',u:'#`()',p:18},
{t:M,n:'getResultTransformer',u:'#`()',p:19},
{t:M,n:'getSession',u:'#`()',p:20},
{t:M,n:'getTimeout',u:'#`()',p:21},
{t:M,n:'isLookupByNaturalKey',u:'#`()',p:22},
{t:M,n:'iterateExpressionEntries',u:'#`()',p:23},
{t:M,n:'iterateOrderings',u:'#`()',p:24},
{t:M,n:'iterateSubcriteria',u:'#`()',p:25},
{t:M,n:'list',u:'#`()',p:26},
{t:M,n:'scroll',u:'#`()',p:27},
{t:M,n:'setCacheable',u:'#`(boolean)',p:28},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:29},
{t:M,n:'setCacheRegion',u:'#`(java.lang.String)',p:30},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:31},
{t:M,n:'setFetchMode',u:'#`(java.lang.String, org.hibernate.FetchMode)',p:32},
{t:M,n:'setFetchSize',u:'#`(int)',p:33},
{t:M,n:'setFirstResult',u:'#`(int)',p:34},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:35},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:36},
{t:M,n:'setMaxResults',u:'#`(int)',p:37},
{t:M,n:'setProjection',u:'#`(org.hibernate.criterion.Projection)',p:38},
{t:M,n:'setResultTransformer',u:'#`(org.hibernate.transform.ResultTransformer)',p:39},
{t:M,n:'setSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:40},
{t:M,n:'setTimeout',u:'#`(int)',p:41},
{t:M,n:'toString',u:'#`()',p:42},
{t:M,n:'uniqueResult',u:'#`()',p:43},
{t:C,n:'FetchingScrollableResultsImpl',c:'`.html',p:166},
{t:M,n:'afterLast',u:'#`()',p:1},
{t:M,n:'beforeFirst',u:'#`()',p:2},
{t:M,n:'first',u:'#`()',p:3},
{t:M,n:'getCurrentRow',u:'#`()',p:4},
{t:M,n:'getRowNumber',u:'#`()',p:5},
{t:M,n:'isFirst',u:'#`()',p:6},
{t:M,n:'isLast',u:'#`()',p:7},
{t:M,n:'last',u:'#`()',p:8},
{t:M,n:'next',u:'#`()',p:9},
{t:M,n:'previous',u:'#`()',p:10},
{t:M,n:'scroll',u:'#`(int)',p:11},
{t:M,n:'setRowNumber',u:'#`(int)',p:12},
{t:C,n:'FilterImpl',c:'`.html',p:179},
{t:O,n:'MARKER',u:'#`',p:1},
{t:M,n:'getFilterDefinition',u:'#`()',p:2},
{t:M,n:'getName',u:'#`()',p:3},
{t:M,n:'getParameter',u:'#`(java.lang.String)',p:4},
{t:M,n:'getParameters',u:'#`()',p:5},
{t:M,n:'setParameter',u:'#`(java.lang.String, java.lang.Object)',p:6},
{t:M,n:'setParameterList',u:'#`(java.lang.String, java.util.Collection)',p:7},
{t:M,n:'validate',u:'#`()',p:8},
{t:C,n:'IteratorImpl',c:'`.html',p:188},
{t:M,n:'close',u:'#`()',p:1},
{t:M,n:'hasNext',u:'#`()',p:2},
{t:M,n:'next',u:'#`()',p:3},
{t:M,n:'remove',u:'#`()',p:4},
{t:C,n:'QueryImpl',c:'`.html',p:193},
{t:M,n:'executeUpdate',u:'#`()',p:1},
{t:M,n:'getLockModes',u:'#`()',p:2},
{t:M,n:'iterate',u:'#`()',p:3},
{t:M,n:'list',u:'#`()',p:4},
{t:M,n:'scroll',u:'#`()',p:5},
{t:M,n:'setLockMode',u:'#`(java.lang.String, org.hibernate.LockMode)',p:6},
{t:C,n:'ScrollableResultsImpl',c:'`.html',p:200},
{t:M,n:'afterLast',u:'#`()',p:1},
{t:M,n:'beforeFirst',u:'#`()',p:2},
{t:M,n:'first',u:'#`()',p:3},
{t:M,n:'getCurrentRow',u:'#`()',p:4},
{t:M,n:'getRowNumber',u:'#`()',p:5},
{t:M,n:'isFirst',u:'#`()',p:6},
{t:M,n:'isLast',u:'#`()',p:7},
{t:M,n:'last',u:'#`()',p:8},
{t:M,n:'next',u:'#`()',p:9},
{t:M,n:'previous',u:'#`()',p:10},
{t:M,n:'scroll',u:'#`(int)',p:11},
{t:M,n:'setRowNumber',u:'#`(int)',p:12},
{t:C,n:'SessionFactoryImpl',c:'`.html',p:213},
{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:'getAllSecondLevelCacheRegions',u:'#`()',p:8},
{t:M,n:'getBatcherFactory',u:'#`()',p:9},
{t:M,n:'getClassMetadata',u:'#`(java.lang.Class)',p:10},
{t:M,n:'getCollectionMetadata',u:'#`(java.lang.String)',p:11},
{t:M,n:'getCollectionPersister',u:'#`(java.lang.String)',p:12},
{t:M,n:'getCollectionRolesByEntityParticipant',u:'#`(java.lang.String)',p:13},
{t:M,n:'getConnectionProvider',u:'#`()',p:14},
{t:M,n:'getCurrentSession',u:'#`()',p:15},
{t:M,n:'getDefinedFilterNames',u:'#`()',p:16},
{t:M,n:'getDialect',u:'#`()',p:17},
{t:M,n:'getEntityPersister',u:'#`(java.lang.String)',p:18},
{t:M,n:'getEventListeners',u:'#`()',p:19},
{t:M,n:'getFilterDefinition',u:'#`(java.lang.String)',p:20},
{t:M,n:'getIdentifierGenerator',u:'#`(java.lang.String)',p:21},
{t:M,n:'getIdentifierPropertyName',u:'#`(java.lang.String)',p:22},
{t:M,n:'getIdentifierType',u:'#`(java.lang.String)',p:23},
{t:M,n:'getImplementors',u:'#`(java.lang.String)',p:24},
{t:M,n:'getImportedClassName',u:'#`(java.lang.String)',p:25},
{t:M,n:'getInterceptor',u:'#`()',p:26},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:27},
{t:M,n:'getNamedSQLQuery',u:'#`(java.lang.String)',p:28},
{t:M,n:'getQueryCache',u:'#`()',p:29},
{t:M,n:'getQueryPlanCache',u:'#`()',p:30},
{t:M,n:'getReference',u:'#`()',p:31},
{t:M,n:'getReferencedPropertyType',u:'#`(java.lang.String, java.lang.String)',p:32},
{t:M,n:'getResultSetMapping',u:'#`(java.lang.String)',p:33},
{t:M,n:'getReturnAliases',u:'#`(java.lang.String)',p:34},
{t:M,n:'getReturnTypes',u:'#`(java.lang.String)',p:35},
{t:M,n:'getSecondLevelCacheRegion',u:'#`(java.lang.String)',p:36},
{t:M,n:'getSettings',u:'#`()',p:37},
{t:M,n:'getSQLExceptionConverter',u:'#`()',p:38},
{t:M,n:'getStatistics',u:'#`()',p:39},
{t:M,n:'getStatisticsImplementor',u:'#`()',p:40},
{t:M,n:'getTransactionFactory',u:'#`()',p:41},
{t:M,n:'getTransactionManager',u:'#`()',p:42},
{t:M,n:'getUpdateTimestampsCache',u:'#`()',p:43},
{t:M,n:'isClosed',u:'#`()',p:44},
{t:M,n:'openSession',u:'#`()',p:45},
{t:M,n:'openStatelessSession',u:'#`()',p:46},
{t:M,n:'openTemporarySession',u:'#`()',p:47},
{t:C,n:'SessionFactoryObjectFactory',c:'`.html',p:261},
{t:M,n:'addInstance',u:'#`(java.lang.String, java.lang.String, org.hibernate.SessionFactory, java.util.Properties)',p:1},
{t:M,n:'getInstance',u:'#`(java.lang.String)',p:2},
{t:M,n:'getNamedInstance',u:'#`(java.lang.String)',p:3},
{t:M,n:'getObjectInstance',u:'#`(java.lang.Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable)',p:4},
{t:M,n:'removeInstance',u:'#`(java.lang.String, java.lang.String, java.util.Properties)',p:5},
{t:C,n:'SessionImpl',c:'`.html',p:267},
{t:M,n:'afterOperation',u:'#`(boolean)',p:1},
{t:M,n:'afterScrollOperation',u:'#`()',p:2},
{t:M,n:'afterTransactionBegin',u:'#`(org.hibernate.Transaction)',p:3},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean, org.hibernate.Transaction)',p:4},
{t:M,n:'autoFlushIfRequired',u:'#`(java.util.Set)',p:5},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:6},
{t:M,n:'beginTransaction',u:'#`()',p:7},
{t:M,n:'bestGuessEntityName',u:'#`(java.lang.Object)',p:8},
{t:M,n:'cancelQuery',u:'#`()',p:9},
{t:M,n:'clear',u:'#`()',p:10},
{t:M,n:'close',u:'#`()',p:11},
{t:M,n:'connection',u:'#`()',p:12},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:13},
{t:M,n:'createCriteria',u:'#`(java.lang.Class)',p:14},
{t:M,n:'createFilter',u:'#`(java.lang.Object, java.lang.String)',p:15},
{t:M,n:'createQuery',u:'#`(java.lang.String)',p:16},
{t:M,n:'createSQLQuery',u:'#`(java.lang.String)',p:17},
{t:M,n:'delete',u:'#`(java.lang.Object)',p:18},
{t:M,n:'disableFilter',u:'#`(java.lang.String)',p:19},
{t:M,n:'disconnect',u:'#`()',p:20},
{t:M,n:'enableFilter',u:'#`(java.lang.String)',p:21},
{t:M,n:'evict',u:'#`(java.lang.Object)',p:22},
{t:M,n:'executeUpdate',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters)',p:23},
{t:M,n:'filter',u:'#`(java.lang.Object, java.lang.String)',p:24},
{t:M,n:'find',u:'#`(java.lang.String)',p:25},
{t:M,n:'flush',u:'#`()',p:26},
{t:M,n:'forceFlush',u:'#`(org.hibernate.engine.EntityEntry)',p:27},
{t:M,n:'get',u:'#`(java.lang.Class, java.io.Serializable)',p:28},
{t:M,n:'getActionQueue',u:'#`()',p:29},
{t:M,n:'getBatcher',u:'#`()',p:30},
{t:M,n:'getCacheMode',u:'#`()',p:31},
{t:M,n:'getConnectionReleaseMode',u:'#`()',p:32},
{t:M,n:'getContextEntityIdentifier',u:'#`(java.lang.Object)',p:33},
{t:M,n:'getCurrentLockMode',u:'#`(java.lang.Object)',p:34},
{t:M,n:'getDontFlushFromFind',u:'#`()',p:35},
{t:M,n:'getEnabledFilter',u:'#`(java.lang.String)',p:36},
{t:M,n:'getEnabledFilters',u:'#`()',p:37},
{t:M,n:'getEntityMode',u:'#`()',p:38},
{t:M,n:'getEntityName',u:'#`(java.lang.Object)',p:39},
{t:M,n:'getEntityPersister',u:'#`(java.lang.String, java.lang.Object)',p:40},
{t:M,n:'getEntityUsingInterceptor',u:'#`(org.hibernate.engine.EntityKey)',p:41},
{t:M,n:'getFetchProfile',u:'#`()',p:42},
{t:M,n:'getFilterParameterType',u:'#`(java.lang.String)',p:43},
{t:M,n:'getFilterParameterValue',u:'#`(java.lang.String)',p:44},
{t:M,n:'getFlushMode',u:'#`()',p:45},
{t:M,n:'getIdentifier',u:'#`(java.lang.Object)',p:46},
{t:M,n:'getInterceptor',u:'#`()',p:47},
{t:M,n:'getJDBCCotext',u:'#`()',p:48},
{t:M,n:'getListeners',u:'#`()',p:49},
{t:M,n:'getNamedQuery',u:'#`(java.lang.String)',p:50},
{t:M,n:'getPersistenceContext',u:'#`()',p:51},
{t:M,n:'getSession',u:'#`(org.hibernate.EntityMode)',p:52},
{t:M,n:'getSessionFactory',u:'#`()',p:53},
{t:M,n:'getStatistics',u:'#`()',p:54},
{t:M,n:'getTimestamp',u:'#`()',p:55},
{t:M,n:'getTransaction',u:'#`()',p:56},
{t:M,n:'guessEntityName',u:'#`(java.lang.Object)',p:57},
{t:M,n:'immediateLoad',u:'#`(java.lang.String, java.io.Serializable)',p:58},
{t:M,n:'initializeCollection',u:'#`(org.hibernate.collection.PersistentCollection, boolean)',p:59},
{t:M,n:'instantiate',u:'#`(org.hibernate.persister.entity.EntityPersister, java.io.Serializable)',p:60},
{t:M,n:'internalLoad',u:'#`(java.lang.String, java.io.Serializable, boolean, boolean)',p:61},
{t:M,n:'isAutoCloseSessionEnabled',u:'#`()',p:62},
{t:M,n:'isConnected',u:'#`()',p:63},
{t:M,n:'isDirty',u:'#`()',p:64},
{t:M,n:'isEventSource',u:'#`()',p:65},
{t:M,n:'isFlushBeforeCompletionEnabled',u:'#`()',p:66},
{t:M,n:'isFlushModeNever',u:'#`()',p:67},
{t:M,n:'isOpen',u:'#`()',p:68},
{t:M,n:'isTransactionInProgress',u:'#`()',p:69},
{t:M,n:'iterate',u:'#`(java.lang.String)',p:70},
{t:M,n:'iterateFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:71},
{t:M,n:'list',u:'#`(org.hibernate.impl.CriteriaImpl)',p:72},
{t:M,n:'listCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:73},
{t:M,n:'listFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:74},
{t:M,n:'load',u:'#`(java.lang.Class, java.io.Serializable)',p:75},
{t:M,n:'lock',u:'#`(java.lang.Object, org.hibernate.LockMode)',p:76},
{t:M,n:'managedClose',u:'#`()',p:77},
{t:M,n:'managedFlush',u:'#`()',p:78},
{t:M,n:'merge',u:'#`(java.lang.Object)',p:79},
{t:M,n:'persist',u:'#`(java.lang.Object)',p:80},
{t:M,n:'persistOnFlush',u:'#`(java.lang.Object)',p:81},
{t:M,n:'reconnect',u:'#`()',p:82},
{t:M,n:'refresh',u:'#`(java.lang.Object)',p:83},
{t:M,n:'replicate',u:'#`(java.lang.Object, org.hibernate.ReplicationMode)',p:84},
{t:M,n:'save',u:'#`(java.lang.Object)',p:85},
{t:M,n:'saveOrUpdate',u:'#`(java.lang.Object)',p:86},
{t:M,n:'saveOrUpdateCopy',u:'#`(java.lang.Object)',p:87},
{t:M,n:'scroll',u:'#`(org.hibernate.impl.CriteriaImpl, org.hibernate.ScrollMode)',p:88},
{t:M,n:'scrollCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:89},
{t:M,n:'setAutoClear',u:'#`(boolean)',p:90},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:91},
{t:M,n:'setFetchProfile',u:'#`(java.lang.String)',p:92},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:93},
{t:M,n:'setReadOnly',u:'#`(java.lang.Object, boolean)',p:94},
{t:M,n:'shouldAutoClose',u:'#`()',p:95},
{t:M,n:'toString',u:'#`()',p:96},
{t:M,n:'update',u:'#`(java.lang.Object)',p:97},
{t:C,n:'SQLQueryImpl',c:'`.html',p:365},
{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:'getLockModes',u:'#`()',p:4},
{t:M,n:'getQueryParameters',u:'#`(java.util.Map)',p:5},
{t:M,n:'getReturnAliases',u:'#`()',p:6},
{t:M,n:'getReturnTypes',u:'#`()',p:7},
{t:M,n:'iterate',u:'#`()',p:8},
{t:M,n:'list',u:'#`()',p:9},
{t:M,n:'scroll',u:'#`()',p:10},
{t:M,n:'setLockMode',u:'#`(java.lang.String, org.hibernate.LockMode)',p:11},
{t:M,n:'setResultSetMapping',u:'#`(java.lang.String)',p:12},
{t:M,n:'verifyParameters',u:'#`()',p:13},
{t:C,n:'StatelessSessionImpl',c:'`.html',p:379},
{t:M,n:'afterOperation',u:'#`(boolean)',p:1},
{t:M,n:'afterScrollOperation',u:'#`()',p:2},
{t:M,n:'afterTransactionBegin',u:'#`(org.hibernate.Transaction)',p:3},
{t:M,n:'afterTransactionCompletion',u:'#`(boolean, org.hibernate.Transaction)',p:4},
{t:M,n:'autoFlushIfRequired',u:'#`(java.util.Set)',p:5},
{t:M,n:'beforeTransactionCompletion',u:'#`(org.hibernate.Transaction)',p:6},
{t:M,n:'beginTransaction',u:'#`()',p:7},
{t:M,n:'bestGuessEntityName',u:'#`(java.lang.Object)',p:8},
{t:M,n:'close',u:'#`()',p:9},
{t:M,n:'connection',u:'#`()',p:10},
{t:M,n:'createCriteria',u:'#`(java.lang.Class)',p:11},
{t:M,n:'delete',u:'#`(java.lang.Object)',p:12},
{t:M,n:'executeUpdate',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters)',p:13},
{t:M,n:'flush',u:'#`()',p:14},
{t:M,n:'get',u:'#`(java.lang.Class, java.io.Serializable)',p:15},
{t:M,n:'getBatcher',u:'#`()',p:16},
{t:M,n:'getCacheMode',u:'#`()',p:17},
{t:M,n:'getConnectionReleaseMode',u:'#`()',p:18},
{t:M,n:'getContextEntityIdentifier',u:'#`(java.lang.Object)',p:19},
{t:M,n:'getDontFlushFromFind',u:'#`()',p:20},
{t:M,n:'getEnabledFilters',u:'#`()',p:21},
{t:M,n:'getEntityMode',u:'#`()',p:22},
{t:M,n:'getEntityPersister',u:'#`(java.lang.String, java.lang.Object)',p:23},
{t:M,n:'getEntityUsingInterceptor',u:'#`(org.hibernate.engine.EntityKey)',p:24},
{t:M,n:'getFetchProfile',u:'#`()',p:25},
{t:M,n:'getFilterParameterType',u:'#`(java.lang.String)',p:26},
{t:M,n:'getFilterParameterValue',u:'#`(java.lang.String)',p:27},
{t:M,n:'getFlushMode',u:'#`()',p:28},
{t:M,n:'getInterceptor',u:'#`()',p:29},
{t:M,n:'getJDBCCotext',u:'#`()',p:30},
{t:M,n:'getListeners',u:'#`()',p:31},
{t:M,n:'getPersistenceContext',u:'#`()',p:32},
{t:M,n:'getTimestamp',u:'#`()',p:33},
{t:M,n:'getTransaction',u:'#`()',p:34},
{t:M,n:'guessEntityName',u:'#`(java.lang.Object)',p:35},
{t:M,n:'immediateLoad',u:'#`(java.lang.String, java.io.Serializable)',p:36},
{t:M,n:'initializeCollection',u:'#`(org.hibernate.collection.PersistentCollection, boolean)',p:37},
{t:M,n:'insert',u:'#`(java.lang.Object)',p:38},
{t:M,n:'instantiate',u:'#`(java.lang.String, java.io.Serializable)',p:39},
{t:M,n:'internalLoad',u:'#`(java.lang.String, java.io.Serializable, boolean, boolean)',p:40},
{t:M,n:'isAutoCloseSessionEnabled',u:'#`()',p:41},
{t:M,n:'isConnected',u:'#`()',p:42},
{t:M,n:'isEventSource',u:'#`()',p:43},
{t:M,n:'isFlushBeforeCompletionEnabled',u:'#`()',p:44},
{t:M,n:'isFlushModeNever',u:'#`()',p:45},
{t:M,n:'isOpen',u:'#`()',p:46},
{t:M,n:'isTransactionInProgress',u:'#`()',p:47},
{t:M,n:'iterate',u:'#`(java.lang.String, org.hibernate.engine.QueryParameters)',p:48},
{t:M,n:'iterateFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:49},
{t:M,n:'list',u:'#`(org.hibernate.impl.CriteriaImpl)',p:50},
{t:M,n:'listCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:51},
{t:M,n:'listFilter',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.QueryParameters)',p:52},
{t:M,n:'managedClose',u:'#`()',p:53},
{t:M,n:'managedFlush',u:'#`()',p:54},
{t:M,n:'scroll',u:'#`(org.hibernate.impl.CriteriaImpl, org.hibernate.ScrollMode)',p:55},
{t:M,n:'scrollCustomQuery',u:'#`(org.hibernate.loader.custom.CustomQuery, org.hibernate.engine.QueryParameters)',p:56},
{t:M,n:'setAutoClear',u:'#`(boolean)',p:57},
{t:M,n:'setCacheMode',u:'#`(org.hibernate.CacheMode)',p:58},
{t:M,n:'setFetchProfile',u:'#`(java.lang.String)',p:59},
{t:M,n:'setFlushMode',u:'#`(org.hibernate.FlushMode)',p:60},
{t:M,n:'shouldAutoClose',u:'#`()',p:61},
{t:M,n:'update',u:'#`(java.lang.Object)',p:62},
{t:P,n:'org.hibernate.intercept',u:'package-summary.html',c:'rg/hibernate/intercept/',p:9381},
{t:I,n:'LazyPropertyInitializer',c:'`.html',p:1},
{t:O,n:'UNFETCHED_PROPERTY',u:'#`',p:1},
{t:M,n:'initializeLazyProperty',u:'#`(java.lang.String, java.lang.Object, org.hibernate.engine.SessionImplementor)',p:2},
{t:C,n:'FieldInterceptor',c:'`.html',p:4},
{t:M,n:'clearDirty',u:'#`()',p:1},
{t:M,n:'dirty',u:'#`()',p:2},
{t:M,n:'getFieldInterceptor',u:'#`(java.lang.Object)',p:3},
{t:M,n:'hasInterceptor',u:'#`(java.lang.Object)',p:4},
{t:M,n:'initFieldInterceptor',u:'#`(java.lang.Object, java.lang.String, org.hibernate.engine.SessionImplementor, java.util.Set)',p:5},
{t:M,n:'isDirty',u:'#`()',p:6},
{t:M,n:'isInitialized',u:'#`()',p:7},
{t:M,n:'readBoolean',u:'#`(java.lang.Object, java.lang.String, boolean)',p:8},
{t:M,n:'readByte',u:'#`(java.lang.Object, java.lang.String, byte)',p:9},
{t:M,n:'readChar',u:'#`(java.lang.Object, java.lang.String, char)',p:10},
{t:M,n:'readDouble',u:'#`(java.lang.Object, java.lang.String, double)',p:11},
{t:M,n:'readFloat',u:'#`(java.lang.Object, java.lang.String, float)',p:12},
{t:M,n:'readInt',u:'#`(java.lang.Object, java.lang.String, int)',p:13},
{t:M,n:'readLong',u:'#`(java.lang.Object, java.lang.String, long)',p:14},
{t:M,n:'readObject',u:'#`(java.lang.Object, java.lang.String, java.lang.Object)',p:15},
{t:M,n:'readShort',u:'#`(java.lang.Object, java.lang.String, short)',p:16},
{t:M,n:'setSession',u:'#`(org.hibernate.engine.SessionImplementor)',p:17},
{t:M,n:'toString',u:'#`()',p:18},
{t:M,n:'writeBoolean',u:'#`(java.lang.Object, java.lang.String, boolean, boolean)',p:19},
{t:M,n:'writeByte',u:'#`(java.lang.Object, java.lang.String, byte, byte)',p:20},
{t:M,n:'writeChar',u:'#`(java.lang.Object, java.lang.String, char, char)',p:21},
{t:M,n:'writeDouble',u:'#`(java.lang.Object, java.lang.String, double, double)',p:22},
{t:M,n:'writeFloat',u:'#`(java.lang.Object, java.lang.String, float, float)',p:23},
{t:M,n:'writeInt',u:'#`(java.lang.Object, java.lang.String, int, int)',p:24},
{t:M,n:'writeLong',u:'#`(java.lang.Object, java.lang.String, long, long)',p:25},
{t:M,n:'writeObject',u:'#`(java.lang.Object, java.lang.String, java.lang.Object, java.lang.Object)',p:26},
{t:M,n:'writeShort',u:'#`(java.lang.Object, java.lang.String, short, short)',p:27},
{t:P,n:'org.hibernate.lob',u:'package-summary.html',c:'rg/hibernate/lob/',p:9413},
{t:C,n:'BlobImpl',c:'`.html',p:1},
{t:M,n:'getBinaryStream',u:'#`()',p:1},
{t:M,n:'getBytes',u:'#`(long, int)',p:2},
{t:M,n:'length',u:'#`()',p:3},
{t:M,n:'position',u:'#`(java.sql.Blob, long)',p:4},
{t:M,n:'setBinaryStream',u:'#`(long)',p:5},
{t:M,n:'setBytes',u:'#`(long, byte[])',p:6},
{t:M,n:'truncate',u:'#`(long)',p:7},
{t:C,n:'ClobImpl',c:'`.html',p:9},
{t:M,n:'getAsciiStream',u:'#`()',p:1},
{t:M,n:'getCharacterStream',u:'#`()',p:2},
{t:M,n:'getSubString',u:'#`(long, int)',p:3},
{t:M,n:'length',u:'#`()',p:4},
{t:M,n:'position',u:'#`(java.sql.Clob, long)',p:5},
{t:M,n:'setAsciiStream',u:'#`(long)',p:6},
{t:M,n:'setCharacterStream',u:'#`(long)',p:7},
{t:M,n:'setString',u:'#`(long, java.lang.String)',p:8},
{t:M,n:'truncate',u:'#`(long)',p:9},
{t:C,n:'ReaderInputStream',c:'`.html',p:19},
{t:M,n:'read',u:'#`()',p:1},
{t:C,n:'SerializableBlob',c:'`.html',p:21},
{t:M,n:'getBinaryStream',u:'#`()',p:1},
{t:M,n:'getBytes',u:'#`(long, int)',p:2},
{t:M,n:'getWrappedBlob',u:'#`()',p:3},
{t:M,n:'length',u:'#`()',p:4},
{t:M,n:'position',u:'#`(java.sql.Blob, long)',p:5},
{t:M,n:'setBinaryStream',u:'#`(long)',p:6},
{t:M,n:'setBytes',u:'#`(long, byte[])',p:7},
{t:M,n:'truncate',u:'#`(long)',p:8},
{t:C,n:'SerializableClob',c:'`.html',p:30},
{t:M,n:'getAsciiStream',u:'#`()',p:1},
{t:M,n:'getCharacterStream',u:'#`()',p:2},
{t:M,n:'getSubString',u:'#`(long, int)',p:3},
{t:M,n:'getWrappedClob',u:'#`()',p:4},
{t:M,n:'length',u:'#`()',p:5},
{t:M,n:'position',u:'#`(java.sql.Clob, long)',p:6},
{t:M,n:'setAsciiStream',u:'#`(long)',p:7},
{t:M,n:'setCharacterStream',u:'#`(long)',p:8},
{t:M,n:'setString',u:'#`(long, java.lang.String)',p:9},
{t:M,n:'truncate',u:'#`(long)',p:10},
{t:P,n:'org.hibernate.pretty',u:'package-summary.html',c:'rg/hibernate/pretty/',p:9454},
{t:C,n:'DDLFormatter',c:'`.html',p:1},
{t:M,n:'format',u:'#`()',p:1},
{t:C,n:'Formatter',c:'`.html',p:3},
{t:M,n:'format',u:'#`()',p:1},
{t:M,n:'main',u:'#`(java.lang.String[])',p:2},
{t:M,n:'setIndentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'setInitialString',u:'#`(java.lang.String)',p:4},
{t:C,n:'MessageHelper',c:'`.html',p:8},
{t:M,n:'collectionInfoString',u:'#`(org.hibernate.persister.collection.CollectionPersister, java.io.Serializable[], org.hibernate.engine.SessionFactoryImplementor)',p:1},
{t:M,n:'infoString',u:'#`(org.hibernate.persister.entity.EntityPersister)',p:2},
{t:C,n:'Printer',c:'`.html',p:11},
{t:M,n:'toString',u:'#`(java.util.Iterator, org.hibernate.EntityMode)',p:1},
{t:P,n:'org.hibernate.secure',u:'package-summary.html',c:'rg/hibernate/secure/',p:9467},
{t:I,n:'JACCSecurityListener',u:'`.html',p:1},
{t:C,n:'HibernatePermission',c:'`.html',p:2},
{t:O,n:'ANY',u:'#`',p:1},
{t:O,n:'DELETE',u:'#`',p:2},
{t:O,n:'INSERT',u:'#`',p:3},
{t:O,n:'READ',u:'#`',p:4},
{t:O,n:'UPDATE',u:'#`',p:5},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:6},
{t:M,n:'getActions',u:'#`()',p:7},
{t:M,n:'hashCode',u:'#`()',p:8},
{t:M,n:'implies',u:'#`(java.security.Permission)',p:9},
{t:M,n:'toString',u:'#`()',p:10},
{t:C,n:'JACCConfiguration',c:'`.html',p:13},
{t:M,n:'addPermission',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:1},
{t:C,n:'JACCPermissions',c:'`.html',p:15},
{t:M,n:'checkPermission',u:'#`(java.lang.Class, java.lang.String, javax.security.jacc.EJBMethodPermission)',p:1},
{t:C,n:'JACCPreDeleteEventListener',c:'`.html',p:17},
{t:M,n:'initialize',u:'#`(org.hibernate.cfg.Configuration)',p:1},
{t:M,n:'onPreDelete',u:'#`(org.hibernate.event.PreDeleteEvent)',p:2},
{t:C,n:'JACCPreInsertEventListener',c:'`.html',p:20},
{t:M,n:'initialize',u:'#`(org.hibernate.cfg.Configuration)',p:1},
{t:M,n:'onPreInsert',u:'#`(org.hibernate.event.PreInsertEvent)',p:2},
{t:C,n:'JACCPreLoadEventListener',c:'`.html',p:23},
{t:M,n:'initialize',u:'#`(org.hibernate.cfg.Configuration)',p:1},
{t:M,n:'onPreLoad',u:'#`(org.hibernate.event.PreLoadEvent)',p:2},
{t:C,n:'JACCPreUpdateEventListener',c:'`.html',p:26},
{t:M,n:'initialize',u:'#`(org.hibernate.cfg.Configuration)',p:1},
{t:M,n:'onPreUpdate',u:'#`(org.hibernate.event.PreUpdateEvent)',p:2},
{t:P,n:'org.hibernate.sql',u:'package-summary.html',c:'rg/hibernate/sql/',p:9496},
{t:C,n:'Alias',c:'`.html',p:1},
{t:M,n:'toAliasString',u:'#`(java.lang.String)',p:1},
{t:M,n:'toAliasStrings',u:'#`(java.lang.String[])',p:2},
{t:M,n:'toUnquotedAliasString',u:'#`(java.lang.String)',p:3},
{t:M,n:'toUnquotedAliasStrings',u:'#`(java.lang.String[])',p:4},
{t:C,n:'ANSICaseFragment',c:'`.html',p:6},
{t:M,n:'toFragmentString',u:'#`()',p:1},
{t:C,n:'ANSIJoinFragment',c:'`.html',p:8},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:1},
{t:M,n:'addCrossJoin',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addFromFragmentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String, java.lang.String[], java.lang.String[], int)',p:4},
{t:M,n:'addJoins',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'copy',u:'#`()',p:6},
{t:M,n:'toFromFragmentString',u:'#`()',p:7},
{t:M,n:'toWhereFragmentString',u:'#`()',p:8},
{t:C,n:'CaseFragment',c:'`.html',p:17},
{t:O,n:'cases',u:'#`',p:1},
{t:O,n:'returnColumnName',u:'#`',p:2},
{t:M,n:'addWhenColumnNotNull',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:3},
{t:M,n:'setReturnColumnName',u:'#`(java.lang.String)',p:4},
{t:M,n:'toFragmentString',u:'#`()',p:5},
{t:C,n:'ConditionFragment',c:'`.html',p:23},
{t:M,n:'setCondition',u:'#`(java.lang.String[], java.lang.String)',p:1},
{t:M,n:'setOp',u:'#`(java.lang.String)',p:2},
{t:M,n:'setTableAlias',u:'#`(java.lang.String)',p:3},
{t:M,n:'toFragmentString',u:'#`()',p:4},
{t:C,n:'DecodeCaseFragment',c:'`.html',p:28},
{t:M,n:'toFragmentString',u:'#`()',p:1},
{t:C,n:'Delete',c:'`.html',p:30},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:1},
{t:M,n:'setPrimaryKeyColumnNames',u:'#`(java.lang.String[])',p:2},
{t:M,n:'setTableName',u:'#`(java.lang.String)',p:3},
{t:M,n:'setVersionColumnName',u:'#`(java.lang.String)',p:4},
{t:M,n:'setWhere',u:'#`(java.lang.String)',p:5},
{t:M,n:'toStatementString',u:'#`()',p:6},
{t:C,n:'DerbyCaseFragment',c:'`.html',p:37},
{t:M,n:'toFragmentString',u:'#`()',p:1},
{t:C,n:'DisjunctionFragment',c:'`.html',p:39},
{t:M,n:'addCondition',u:'#`(org.hibernate.sql.ConditionFragment)',p:1},
{t:M,n:'toFragmentString',u:'#`()',p:2},
{t:C,n:'ForUpdateFragment',c:'`.html',p:42},
{t:M,n:'addTableAlias',u:'#`(java.lang.String)',p:1},
{t:M,n:'setNowaitEnabled',u:'#`(boolean)',p:2},
{t:M,n:'toFragmentString',u:'#`()',p:3},
{t:C,n:'HSQLCaseFragment',c:'`.html',p:46},
{t:M,n:'toFragmentString',u:'#`()',p:1},
{t:C,n:'InFragment',c:'`.html',p:48},
{t:O,n:'NOT_NULL',u:'#`',p:1},
{t:O,n:'NULL',u:'#`',p:2},
{t:M,n:'addValue',u:'#`(java.lang.Object)',p:3},
{t:M,n:'setColumn',u:'#`(java.lang.String)',p:4},
{t:M,n:'setFormula',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'toFragmentString',u:'#`()',p:6},
{t:C,n:'Insert',c:'`.html',p:55},
{t:M,n:'addColumn',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumns',u:'#`(java.lang.String[])',p:2},
{t:M,n:'addIdentityColumn',u:'#`(java.lang.String)',p:3},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:4},
{t:M,n:'setTableName',u:'#`(java.lang.String)',p:5},
{t:M,n:'toStatementString',u:'#`()',p:6},
{t:C,n:'InsertSelect',c:'`.html',p:62},
{t:M,n:'addColumn',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumns',u:'#`(java.lang.String[])',p:2},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:3},
{t:M,n:'setSelect',u:'#`(org.hibernate.sql.Select)',p:4},
{t:M,n:'setTableName',u:'#`(java.lang.String)',p:5},
{t:M,n:'toStatementString',u:'#`()',p:6},
{t:C,n:'JoinFragment',c:'`.html',p:69},
{t:O,n:'FULL_JOIN',u:'#`',p:1},
{t:O,n:'INNER_JOIN',u:'#`',p:2},
{t:O,n:'LEFT_OUTER_JOIN',u:'#`',p:3},
{t:O,n:'RIGHT_OUTER_JOIN',u:'#`',p:4},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:5},
{t:M,n:'addCrossJoin',u:'#`(java.lang.String, java.lang.String)',p:6},
{t:M,n:'addFragment',u:'#`(org.hibernate.sql.JoinFragment)',p:7},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String, java.lang.String[], java.lang.String[], int)',p:8},
{t:M,n:'addJoins',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:M,n:'copy',u:'#`()',p:10},
{t:M,n:'hasFilterCondition',u:'#`()',p:11},
{t:M,n:'hasThetaJoins',u:'#`()',p:12},
{t:M,n:'setHasFilterCondition',u:'#`(boolean)',p:13},
{t:M,n:'setHasThetaJoins',u:'#`(boolean)',p:14},
{t:M,n:'toFromFragmentString',u:'#`()',p:15},
{t:M,n:'toWhereFragmentString',u:'#`()',p:16},
{t:C,n:'MckoiCaseFragment',c:'`.html',p:86},
{t:M,n:'toFragmentString',u:'#`()',p:1},
{t:C,n:'OracleJoinFragment',c:'`.html',p:88},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:1},
{t:M,n:'addCrossJoin',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addFromFragmentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String, java.lang.String[], java.lang.String[], int)',p:4},
{t:M,n:'addJoins',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'copy',u:'#`()',p:6},
{t:M,n:'toFromFragmentString',u:'#`()',p:7},
{t:M,n:'toWhereFragmentString',u:'#`()',p:8},
{t:C,n:'QueryJoinFragment',c:'`.html',p:97},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:1},
{t:M,n:'addCrossJoin',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addFromFragmentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String, java.lang.String[], java.lang.String[], int)',p:4},
{t:M,n:'addJoins',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'clearWherePart',u:'#`()',p:6},
{t:M,n:'copy',u:'#`()',p:7},
{t:M,n:'toFromFragmentString',u:'#`()',p:8},
{t:M,n:'toWhereFragmentString',u:'#`()',p:9},
{t:C,n:'QuerySelect',c:'`.html',p:107},
{t:M,n:'addOrderBy',u:'#`(java.lang.String)',p:1},
{t:M,n:'addSelectColumn',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addSelectFragmentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'copy',u:'#`()',p:4},
{t:M,n:'getJoinFragment',u:'#`()',p:5},
{t:M,n:'prependWhereConditions',u:'#`(java.lang.String)',p:6},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:7},
{t:M,n:'setDistinct',u:'#`(boolean)',p:8},
{t:M,n:'setGroupByTokens',u:'#`(java.util.Iterator)',p:9},
{t:M,n:'setHavingTokens',u:'#`(java.util.Iterator)',p:10},
{t:M,n:'setOrderByTokens',u:'#`(java.util.Iterator)',p:11},
{t:M,n:'setWhereTokens',u:'#`(java.util.Iterator)',p:12},
{t:M,n:'toQueryString',u:'#`()',p:13},
{t:C,n:'Select',c:'`.html',p:121},
{t:O,n:'dialect',u:'#`',p:1},
{t:M,n:'getLockMode',u:'#`()',p:2},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:3},
{t:M,n:'setFromClause',u:'#`(java.lang.String)',p:4},
{t:M,n:'setGroupByClause',u:'#`(java.lang.String)',p:5},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:6},
{t:M,n:'setOrderByClause',u:'#`(java.lang.String)',p:7},
{t:M,n:'setOuterJoins',u:'#`(java.lang.String, java.lang.String)',p:8},
{t:M,n:'setSelectClause',u:'#`(java.lang.String)',p:9},
{t:M,n:'setWhereClause',u:'#`(java.lang.String)',p:10},
{t:M,n:'toStatementString',u:'#`()',p:11},
{t:C,n:'SelectFragment',c:'`.html',p:133},
{t:M,n:'addColumn',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumns',u:'#`(java.lang.String[])',p:2},
{t:M,n:'addFormula',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:3},
{t:M,n:'addFormulas',u:'#`(java.lang.String, java.lang.String[], java.lang.String[])',p:4},
{t:M,n:'setExtraSelectList',u:'#`(org.hibernate.sql.CaseFragment, java.lang.String)',p:5},
{t:M,n:'setSuffix',u:'#`(java.lang.String)',p:6},
{t:M,n:'setUsedAliases',u:'#`(java.lang.String[])',p:7},
{t:M,n:'toFragmentString',u:'#`()',p:8},
{t:C,n:'SimpleSelect',c:'`.html',p:142},
{t:M,n:'addColumn',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumns',u:'#`(java.lang.String[])',p:2},
{t:M,n:'addCondition',u:'#`(java.lang.String[], java.lang.String)',p:3},
{t:M,n:'addWhereToken',u:'#`(java.lang.String)',p:4},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:5},
{t:M,n:'setLockMode',u:'#`(org.hibernate.LockMode)',p:6},
{t:M,n:'setOrderBy',u:'#`(java.lang.String)',p:7},
{t:M,n:'setTableName',u:'#`(java.lang.String)',p:8},
{t:M,n:'toStatementString',u:'#`()',p:9},
{t:M,n:'toWhereClause',u:'#`()',p:10},
{t:C,n:'Sybase11JoinFragment',c:'`.html',p:153},
{t:M,n:'addCondition',u:'#`(java.lang.String)',p:1},
{t:M,n:'addCrossJoin',u:'#`(java.lang.String, java.lang.String)',p:2},
{t:M,n:'addFromFragmentString',u:'#`(java.lang.String)',p:3},
{t:M,n:'addJoin',u:'#`(java.lang.String, java.lang.String, java.lang.String[], java.lang.String[], int)',p:4},
{t:M,n:'addJoins',u:'#`(java.lang.String, java.lang.String)',p:5},
{t:M,n:'copy',u:'#`()',p:6},
{t:M,n:'toFromFragmentString',u:'#`()',p:7},
{t:M,n:'toWhereFragmentString',u:'#`()',p:8},
{t:C,n:'Template',c:'`.html',p:162},
{t:O,n:'TEMPLATE',u:'#`',p:1},
{t:M,n:'renderOrderByStringTemplate',u:'#`(java.lang.String, org.hibernate.dialect.Dialect)',p:2},
{t:M,n:'renderWhereStringTemplate',u:'#`(java.lang.String, org.hibernate.dialect.Dialect)',p:3},
{t:C,n:'Update',c:'`.html',p:166},
{t:M,n:'addColumn',u:'#`(java.lang.String)',p:1},
{t:M,n:'addColumns',u:'#`(java.lang.String[])',p:2},
{t:M,n:'addWhereColumn',u:'#`(java.lang.String)',p:3},
{t:M,n:'addWhereColumns',u:'#`(java.lang.String[])',p:4},
{t:M,n:'appendAssignmentFragment',u:'#`(java.lang.String)',p:5},
{t:M,n:'getTableName',u:'#`()',p:6},
{t:M,n:'setComment',u:'#`(java.lang.String)',p:7},
{t:M,n:'setPrimaryKeyColumnNames',u:'#`(java.lang.String[])',p:8},
{t:M,n:'setTableName',u:'#`(java.lang.String)',p:9},
{t:M,n:'setVersionColumnName',u:'#`(java.lang.String)',p:10},
{t:M,n:'setWhere',u:'#`(java.lang.String)',p:11},
{t:M,n:'toStatementString',u:'#`()',p:12},
{t:P,n:'org.hibernate.util',u:'package-summary.html',c:'rg/hibernate/util/',p:9675},
{t:C,n:'ArrayHelper',c:'`.html',p:1},
{t:O,n:'EMPTY_BOOLEAN_ARRAY',u:'#`',p:1},
{t:O,n:'EMPTY_CLASS_ARRAY',u:'#`',p:2},
{t:O,n:'EMPTY_INT_ARRAY',u:'#`',p:3},
{t:O,n:'EMPTY_OBJECT_ARRAY',u:'#`',p:4},
{t:O,n:'EMPTY_STRING_ARRAY',u:'#`',p:5},
{t:O,n:'EMPTY_TYPE_ARRAY',u:'#`',p:6},
{t:O,n:'FALSE',u:'#`',p:7},
{t:O,n:'TRUE',u:'#`',p:8},
{t:M,n:'addAll',u:'#`(java.util.Collection, java.lang.Object[])',p:9},
{t:M,n:'countTrue',u:'#`(boolean[])',p:10},
{t:M,n:'fillArray',u:'#`(int, int)',p:11},
{t:M,n:'getBatchSizes',u:'#`(int)',p:12},
{t:M,n:'hash',u:'#`(byte[])',p:13},
{t:M,n:'indexOf',u:'#`(java.lang.Object[], java.lang.Object)',p:14},
{t:M,n:'isAllFalse',u:'#`(boolean[])',p:15},
{t:M,n:'isAllNegative',u:'#`(int[])',p:16},
{t:M,n:'isAllTrue',u:'#`(boolean[])',p:17},
{t:M,n:'isEquals',u:'#`(byte[], byte[])',p:18},
{t:M,n:'join',u:'#`(int[], int[])',p:19},
{t:M,n:'slice',u:'#`(java.lang.Object[], int, int)',p:20},
{t:M,n:'to2DIntArray',u:'#`(java.util.Collection)',p:21},
{t:M,n:'to2DStringArray',u:'#`(java.util.Collection)',p:22},
{t:M,n:'toBooleanArray',u:'#`(java.util.Collection)',p:23},
{t:M,n:'toIntArray',u:'#`(java.util.Collection)',p:24},
{t:M,n:'toList',u:'#`(java.util.Iterator)',p:25},
{t:M,n:'toString',u:'#`(java.lang.Object[])',p:26},
{t:M,n:'toStringArray',u:'#`(java.util.Collection)',p:27},
{t:M,n:'toTypeArray',u:'#`(java.util.Collection)',p:28},
{t:M,n:'typecast',u:'#`(java.lang.Object[], java.lang.Object[])',p:29},
{t:C,n:'BytesHelper',c:'`.html',p:31},
{t:M,n:'toInt',u:'#`(byte[])',p:1},
{t:C,n:'CalendarComparator',c:'`.html',p:33},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object)',p:2},
{t:C,n:'Cloneable',c:'`.html',p:36},
{t:M,n:'shallowCopy',u:'#`()',p:1},
{t:M,n:'validate',u:'#`()',p:2},
{t:C,n:'CollectionHelper',c:'`.html',p:39},
{t:O,n:'EMPTY_COLLECTION',u:'#`',p:1},
{t:O,n:'EMPTY_LIST',u:'#`',p:2},
{t:O,n:'EMPTY_MAP',u:'#`',p:3},
{t:C,n:'ComparableComparator',c:'`.html',p:43},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'compare',u:'#`(java.lang.Object, java.lang.Object)',p:2},
{t:C,n:'ConfigHelper',c:'`.html',p:46},
{t:M,n:'findAsResource',u:'#`(java.lang.String)',p:1},
{t:M,n:'getConfigProperties',u:'#`(java.lang.String)',p:2},
{t:M,n:'getConfigStream',u:'#`(java.lang.String)',p:3},
{t:M,n:'getConfigStreamReader',u:'#`(java.lang.String)',p:4},
{t:M,n:'getResourceAsStream',u:'#`(java.lang.String)',p:5},
{t:M,n:'locateConfig',u:'#`(java.lang.String)',p:6},
{t:C,n:'DTDEntityResolver',c:'`.html',p:53},
{t:M,n:'resolveEntity',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:C,n:'EmptyIterator',c:'`.html',p:55},
{t:O,n:'INSTANCE',u:'#`',p:1},
{t:M,n:'hasNext',u:'#`()',p:2},
{t:M,n:'next',u:'#`()',p:3},
{t:M,n:'remove',u:'#`()',p:4},
{t:C,n:'EqualsHelper',c:'`.html',p:60},
{t:M,n:'equals',u:'#`(java.lang.Object, java.lang.Object)',p:1},
{t:C,n:'ExternalSessionFactoryConfig',c:'`.html',p:62},
{t:M,n:'addAdditionalProperty',u:'#`(java.lang.String, java.lang.String)',p:1},
{t:M,n:'addAll',u:'#`(java.util.Properties, java.util.Map)',p:2},
{t:M,n:'addMapResource',u:'#`(java.lang.String)',p:3},
{t:M,n:'buildConfiguration',u:'#`()',p:4},
{t:M,n:'buildProperties',u:'#`()',p:5},
{t:M,n:'getBatchVersionedDataEnabled',u:'#`()',p:6},
{t:M,n:'getCacheProviderClass',u:'#`()',p:7},
{t:M,n:'getCacheRegionPrefix',u:'#`()',p:8},
{t:M,n:'getCommentsEnabled',u:'#`()',p:9},
{t:M,n:'getCustomListeners',u:'#`()',p:10},
{t:M,n:'getDefaultCatalog',u:'#`()',p:11},
{t:M,n:'getDefaultSchema',u:'#`()',p:12},
{t:M,n:'getDialect',u:'#`()',p:13},
{t:M,n:'getExcludedPropertyNames',u:'#`()',p:14},
{t:M,n:'getExtraProperties',u:'#`()',p:15},
{t:M,n:'getGetGeneratedKeysEnabled',u:'#`()',p:16},
{t:M,n:'getJdbcBatchSize',u:'#`()',p:17},
{t:M,n:'getJdbcFetchSize',u:'#`()',p:18},
{t:M,n:'getJdbcScrollableResultSetEnabled',u:'#`()',p:19},
{t:M,n:'getMapResources',u:'#`()',p:20},
{t:M,n:'getMaximumFetchDepth',u:'#`()',p:21},
{t:M,n:'getMinimalPutsEnabled',u:'#`()',p:22},
{t:M,n:'getQueryCacheEnabled',u:'#`()',p:23},
{t:M,n:'getQuerySubstitutions',u:'#`()',p:24},
{t:M,n:'getReflectionOptimizationEnabled',u:'#`()',p:25},
{t:M,n:'getSecondLevelCacheEnabled',u:'#`()',p:26},
{t:M,n:'getShowSqlEnabled',u:'#`()',p:27},
{t:M,n:'getStreamsForBinaryEnabled',u:'#`()',p:28},
{t:M,n:'setBatchVersionedDataEnabled',u:'#`(java.lang.String)',p:29},
{t:M,n:'setCacheProviderClass',u:'#`(java.lang.String)',p:30},
{t:M,n:'setCacheRegionPrefix',u:'#`(java.lang.String)',p:31},
{t:M,n:'setCommentsEnabled',u:'#`(java.lang.String)',p:32},
{t:M,n:'setCustomListener',u:'#`(java.lang.String, java.lang.String)',p:33},
{t:M,n:'setCustomListeners',u:'#`(java.util.Map)',p:34},
{t:M,n:'setCustomListenersAsString',u:'#`(java.lang.String)',p:35},
{t:M,n:'setDefaultCatalog',u:'#`(java.lang.String)',p:36},
{t:M,n:'setDefaultSchema',u:'#`(java.lang.String)',p:37},
{t:M,n:'setDialect',u:'#`(java.lang.String)',p:38},
{t:M,n:'setGetGeneratedKeysEnabled',u:'#`(java.lang.String)',p:39},
{t:M,n:'setJdbcBatchSize',u:'#`(java.lang.String)',p:40},
{t:M,n:'setJdbcFetchSize',u:'#`(java.lang.String)',p:41},
{t:M,n:'setJdbcScrollableResultSetEnabled',u:'#`(java.lang.String)',p:42},
{t:M,n:'setMapResources',u:'#`(java.lang.String)',p:43},
{t:M,n:'setMaximumFetchDepth',u:'#`(java.lang.String)',p:44},
{t:M,n:'setMinimalPutsEnabled',u:'#`(java.lang.String)',p:45},
{t:M,n:'setQueryCacheEnabled',u:'#`(java.lang.String)',p:46},
{t:M,n:'setQuerySubstitutions',u:'#`(java.lang.String)',p:47},
{t:M,n:'setReflectionOptimizationEnabled',u:'#`(java.lang.String)',p:48},
{t:M,n:'setSecondLevelCacheEnabled',u:'#`(java.lang.String)',p:49},
{t:M,n:'setShowSqlEnabled',u:'#`(java.lang.String)',p:50},
{t:M,n:'setStreamsForBinaryEnabled',u:'#`(java.lang.String)',p:51},
{t:C,n:'FastHashMap',c:'`.html',p:114},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'clone',u:'#`()',p:2},
{t:M,n:'containsKey',u:'#`(java.lang.Object)',p:3},
{t:M,n:'containsValue',u:'#`(java.lang.Object)',p:4},
{t:M,n:'entrySet',u:'#`()',p:5},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:6},
{t:M,n:'get',u:'#`(java.lang.Object)',p:7},
{t:M,n:'hashCode',u:'#`()',p:8},
{t:M,n:'isEmpty',u:'#`()',p:9},
{t:M,n:'keySet',u:'#`()',p:10},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:11},
{t:M,n:'putAll',u:'#`(java.util.Map)',p:12},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:13},
{t:M,n:'size',u:'#`()',p:14},
{t:M,n:'toString',u:'#`()',p:15},
{t:M,n:'values',u:'#`()',p:16},
{t:C,n:'FilterHelper',c:'`.html',p:131},
{t:M,n:'isAffectedBy',u:'#`(java.util.Map)',p:1},
{t:M,n:'render',u:'#`(java.lang.StringBuffer, java.lang.String, java.util.Map)',p:2},
{t:C,n:'GetGeneratedKeysHelper',c:'`.html',p:134},
{t:M,n:'getGeneratedKey',u:'#`(java.sql.PreparedStatement)',p:1},
{t:M,n:'prepareStatement',u:'#`(java.sql.Connection, java.lang.String, java.lang.String[])',p:2},
{t:C,n:'IdentityMap',c:'`.html',p:137},
{t:M,n:'clear',u:'#`()',p:1},
{t:M,n:'concurrentEntries',u:'#`(java.util.Map)',p:2},
{t:M,n:'containsKey',u:'#`(java.lang.Object)',p:3},
{t:M,n:'containsValue',u:'#`(java.lang.Object)',p:4},
{t:M,n:'deserialize',u:'#`(java.lang.Object)',p:5},
{t:M,n:'entries',u:'#`(java.util.Map)',p:6},
{t:M,n:'entryArray',u:'#`()',p:7},
{t:M,n:'entryList',u:'#`()',p:8},
{t:M,n:'entrySet',u:'#`()',p:9},
{t:M,n:'get',u:'#`(java.lang.Object)',p:10},
{t:M,n:'instantiate',u:'#`(int)',p:11},
{t:M,n:'instantiateSequenced',u:'#`(int)',p:12},
{t:M,n:'invert',u:'#`(java.util.Map)',p:13},
{t:M,n:'isEmpty',u:'#`()',p:14},
{t:M,n:'keyIterator',u:'#`()',p:15},
{t:M,n:'keySet',u:'#`()',p:16},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:17},
{t:M,n:'putAll',u:'#`(java.util.Map)',p:18},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:19},
{t:M,n:'serialize',u:'#`(java.util.Map)',p:20},
{t:M,n:'size',u:'#`()',p:21},
{t:M,n:'toString',u:'#`()',p:22},
{t:M,n:'values',u:'#`()',p:23},
{t:C,n:'IdentitySet',c:'`.html',p:161},
{t:M,n:'add',u:'#`(java.lang.Object)',p:1},
{t:M,n:'addAll',u:'#`(java.util.Collection)',p:2},
{t:M,n:'clear',u:'#`()',p:3},
{t:M,n:'contains',u:'#`(java.lang.Object)',p:4},
{t:M,n:'containsAll',u:'#`(java.util.Collection)',p:5},
{t:M,n:'isEmpty',u:'#`()',p:6},
{t:M,n:'iterator',u:'#`()',p:7},
{t:M,n:'remove',u:'#`(java.lang.Object)',p:8},
{t:M,n:'removeAll',u:'#`(java.util.Collection)',p:9},
{t:M,n:'retainAll',u:'#`(java.util.Collection)',p:10},
{t:M,n:'size',u:'#`()',p:11},
{t:M,n:'toArray',u:'#`()',p:12},
{t:C,n:'JDBCExceptionReporter',c:'`.html',p:174},
{t:O,n:'DEFAULT_EXCEPTION_MSG',u:'#`',p:1},
{t:O,n:'DEFAULT_WARNING_MSG',u:'#`',p:2},
{t:O,n:'log',u:'#`',p:3},
{t:M,n:'logAndClearWarnings',u:'#`(java.sql.Connection)',p:4},
{t:M,n:'logExceptions',u:'#`(java.sql.SQLException)',p:5},
{t:M,n:'logWarnings',u:'#`(java.sql.SQLWarning)',p:6},
{t:C,n:'JoinedIterator',c:'`.html',p:181},
{t:M,n:'hasNext',u:'#`()',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:M,n:'remove',u:'#`()',p:3},
{t:M,n:'updateCurrentIterator',u:'#`()',p:4},
{t:C,n:'JTAHelper',c:'`.html',p:186},
{t:M,n:'isInProgress',u:'#`(int)',p:1},
{t:M,n:'isRollback',u:'#`(int)',p:2},
{t:M,n:'isTransactionInProgress',u:'#`(org.hibernate.engine.SessionFactoryImplementor)',p:3},
{t:C,n:'LazyIterator',c:'`.html',p:190},
{t:M,n:'hasNext',u:'#`()',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:M,n:'remove',u:'#`()',p:3},
{t:C,n:'LinkedHashCollectionHelper',c:'`.html',p:194},
{t:M,n:'createLinkedHashMap',u:'#`()',p:1},
{t:M,n:'createLinkedHashSet',u:'#`()',p:2},
{t:C,n:'MarkerObject',c:'`.html',p:197},
{t:M,n:'toString',u:'#`()',p:1},
{t:C,n:'NamingHelper',c:'`.html',p:199},
{t:M,n:'bind',u:'#`(javax.naming.Context, java.lang.String, java.lang.Object)',p:1},
{t:M,n:'getInitialContext',u:'#`(java.util.Properties)',p:2},
{t:M,n:'getJndiProperties',u:'#`(java.util.Properties)',p:3},
{t:C,n:'PropertiesHelper',c:'`.html',p:203},
{t:M,n:'getBoolean',u:'#`(java.lang.String, java.util.Properties)',p:1},
{t:M,n:'getInt',u:'#`(java.lang.String, java.util.Properties, int)',p:2},
{t:M,n:'getInteger',u:'#`(java.lang.String, java.util.Properties)',p:3},
{t:M,n:'getString',u:'#`(java.lang.String, java.util.Properties, java.lang.String)',p:4},
{t:M,n:'maskOut',u:'#`(java.util.Properties, java.lang.String)',p:5},
{t:M,n:'resolvePlaceHolder',u:'#`(java.lang.String)',p:6},
{t:M,n:'resolvePlaceHolders',u:'#`(java.util.Properties)',p:7},
{t:M,n:'toMap',u:'#`(java.lang.String, java.lang.String, java.util.Properties)',p:8},
{t:M,n:'toStringArray',u:'#`(java.lang.String, java.lang.String)',p:9},
{t:C,n:'Range',c:'`.html',p:213},
{t:M,n:'range',u:'#`(int, int)',p:1},
{t:C,n:'ReflectHelper',c:'`.html',p:215},
{t:O,n:'PROPERTY_GET_EXCEPTION',u:'#`',p:1},
{t:O,n:'PROPERTY_SET_EXCEPTION',u:'#`',p:2},
{t:M,n:'classForName',u:'#`(java.lang.String)',p:3},
{t:M,n:'getBulkBean',u:'#`(java.lang.Class, java.lang.String[], java.lang.String[], java.lang.Class[], net.sf.cglib.reflect.FastClass)',p:4},
{t:M,n:'getConstantValue',u:'#`(java.lang.String)',p:5},
{t:M,n:'getConstructor',u:'#`(java.lang.Class, org.hibernate.type.Type[])',p:6},
{t:M,n:'getDefaultConstructor',u:'#`(java.lang.Class)',p:7},
{t:M,n:'getFastClass',u:'#`(java.lang.Class)',p:8},
{t:M,n:'getGetter',u:'#`(java.lang.Class, java.lang.String)',p:9},
{t:M,n:'getMethod',u:'#`(java.lang.Class, java.lang.reflect.Method)',p:10},
{t:M,n:'getPropertyName',u:'#`(java.lang.Throwable, net.sf.cglib.beans.BulkBean)',p:11},
{t:M,n:'isAbstractClass',u:'#`(java.lang.Class)',p:12},
{t:M,n:'isFinalClass',u:'#`(java.lang.Class)',p:13},
{t:M,n:'isPublic',u:'#`(java.lang.Class, java.lang.reflect.Member)',p:14},
{t:M,n:'overridesEquals',u:'#`(java.lang.Class)',p:15},
{t:M,n:'overridesHashCode',u:'#`(java.lang.Class)',p:16},
{t:M,n:'reflectedPropertyClass',u:'#`(java.lang.String, java.lang.String)',p:17},
{t:C,n:'SerializationHelper',c:'`.html',p:233},
{t:M,n:'clone',u:'#`(java.io.Serializable)',p:1},
{t:M,n:'deserialize',u:'#`(byte[])',p:2},
{t:M,n:'serialize',u:'#`(java.io.Serializable)',p:3},
{t:C,n:'SimpleMRUCache',c:'`.html',p:237},
{t:O,n:'DEFAULT_STRONG_REF_COUNT',u:'#`',p:1},
{t:M,n:'entries',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'size',u:'#`()',p:5},
{t:C,n:'SingletonIterator',c:'`.html',p:243},
{t:M,n:'hasNext',u:'#`()',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:M,n:'remove',u:'#`()',p:3},
{t:C,n:'SoftLimitMRUCache',c:'`.html',p:247},
{t:O,n:'DEFAULT_STRONG_REF_COUNT',u:'#`',p:1},
{t:M,n:'entries',u:'#`()',p:2},
{t:M,n:'get',u:'#`(java.lang.Object)',p:3},
{t:M,n:'put',u:'#`(java.lang.Object, java.lang.Object)',p:4},
{t:M,n:'size',u:'#`()',p:5},
{t:M,n:'softEntries',u:'#`()',p:6},
{t:M,n:'softSize',u:'#`()',p:7},
{t:C,n:'StringHelper',c:'`.html',p:255},
{t:O,n:'WHITESPACE',u:'#`',p:1},
{t:M,n:'add',u:'#`(java.lang.String[], java.lang.String, java.lang.String[])',p:2},
{t:M,n:'booleanValue',u:'#`(java.lang.String)',p:3},
{t:M,n:'countUnquoted',u:'#`(java.lang.String, char)',p:4},
{t:M,n:'firstIndexOfChar',u:'#`(java.lang.String, java.lang.String, int)',p:5},
{t:M,n:'generateAlias',u:'#`(java.lang.String)',p:6},
{t:M,n:'isEmpty',u:'#`(java.lang.String)',p:7},
{t:M,n:'isNotEmpty',u:'#`(java.lang.String)',p:8},
{t:M,n:'join',u:'#`(java.lang.String, java.util.Iterator)',p:9},
{t:M,n:'lastIndexOfLetter',u:'#`(java.lang.String)',p:10},
{t:M,n:'locateUnquoted',u:'#`(java.lang.String, char)',p:11},
{t:M,n:'moveAndToBeginning',u:'#`(java.lang.String)',p:12},
{t:M,n:'multiply',u:'#`(java.lang.String, java.util.Iterator, java.util.Iterator)',p:13},
{t:M,n:'qualifier',u:'#`(java.lang.String)',p:14},
{t:M,n:'qualify',u:'#`(java.lang.String, java.lang.String)',p:15},
{t:M,n:'repeat',u:'#`(java.lang.String, int)',p:16},
{t:M,n:'replace',u:'#`(java.lang.String[], java.lang.String, java.lang.String)',p:17},
{t:M,n:'replaceOnce',u:'#`(java.lang.String, java.lang.String, java.lang.String)',p:18},
{t:M,n:'root',u:'#`(java.lang.String)',p:19},
{t:M,n:'split',u:'#`(java.lang.String, java.lang.String)',p:20},
{t:M,n:'suffix',u:'#`(java.lang.String[], java.lang.String)',p:21},
{t:M,n:'toLowerCase',u:'#`(java.lang.String)',p:22},
{t:M,n:'toString',u:'#`(java.lang.Object[])',p:23},
{t:M,n:'toUpperCase',u:'#`(java.lang.String)',p:24},
{t:M,n:'truncate',u:'#`(java.lang.String, int)',p:25},
{t:M,n:'unqualify',u:'#`(java.lang.String)',p:26},
{t:M,n:'unqualifyEntityName',u:'#`(java.lang.String)',p:27},
{t:M,n:'unroot',u:'#`(java.lang.String)',p:28},
{t:C,n:'XMLHelper',c:'`.html',p:284},
{t:O,n:'DEFAULT_DTD_RESOLVER',u:'#`',p:1},
{t:M,n:'createDOMReader',u:'#`()',p:2},
{t:M,n:'createSAXReader',u:'#`(java.lang.String, java.util.List, org.xml.sax.EntityResolver)',p:3},
{t:M,n:'dump',u:'#`(org.dom4j.Element)',p:4},
{t:M,n:'generateDom4jElement',u:'#`(java.lang.String)',p:5},
{t:P,n:'org.hibernate.context',u:'package-summary.html',c:'rg/hibernate/context/',p:9965},
{t:I,n:'CurrentSessionContext',c:'`.html',p:1},
{t:M,n:'currentSession',u:'#`()',p:1},
{t:C,n:'JTASessionContext',c:'`.html',p:3},
{t:O,n:'factory',u:'#`',p:1},
{t:M,n:'buildOrObtainSession',u:'#`()',p:2},
{t:M,n:'currentSession',u:'#`()',p:3},
{t:M,n:'getConnectionReleaseMode',u:'#`()',p:4},
{t:M,n:'isAutoCloseEnabled',u:'#`()',p:5},
{t:M,n:'isAutoFlushEnabled',u:'#`()',p:6},
{t:C,n:'ManagedSessionContext',c:'`.html',p:10},
{t:M,n:'bind',u:'#`(org.hibernate.classic.Session)',p:1},
{t:M,n:'currentSession',u:'#`()',p:2},
{t:M,n:'hasBind',u:'#`(org.hibernate.SessionFactory)',p:3},
{t:M,n:'sessionMap',u:'#`()',p:4},
{t:M,n:'unbind',u:'#`(org.hibernate.SessionFactory)',p:5},
{t:C,n:'ThreadLocalSessionContext',c:'`.html',p:16},
{t:O,n:'factory',u:'#`',p:1},
{t:M,n:'bind',u:'#`(org.hibernate.Session)',p:2},
{t:M,n:'buildCleanupSynch',u:'#`()',p:3},
{t:M,n:'buildOrObtainSession',u:'#`()',p:4},
{t:M,n:'currentSession',u:'#`()',p:5},
{t:M,n:'getConnectionReleaseMode',u:'#`()',p:6},
{t:M,n:'getFactory',u:'#`()',p:7},
{t:M,n:'isAutoCloseEnabled',u:'#`()',p:8},
{t:M,n:'isAutoFlushEnabled',u:'#`()',p:9},
{t:M,n:'sessionMap',u:'#`()',p:10},
{t:M,n:'unbind',u:'#`(org.hibernate.SessionFactory)',p:11},
{t:M,n:'wrap',u:'#`(org.hibernate.classic.Session)',p:12},
{t:P,n:'org.hibernate.engine.query',u:'package-summary.html',c:'rg/hibernate/engine/query/',p:9994},
{t:C,n:'FilterQueryPlan',c:'`.html',p:1},
{t:M,n:'getCollectionRole',u:'#`()',p:1},
{t:C,n:'HQLQueryPlan',c:'`.html',p:3},
{t:M,n:'getEnabledFilterNames',u:'#`()',p:1},
{t:M,n:'getParameterMetadata',u:'#`()',p:2},
{t:M,n:'getQuerySpaces',u:'#`()',p:3},
{t:M,n:'getReturnMetadata',u:'#`()',p:4},
{t:M,n:'getSourceQuery',u:'#`()',p:5},
{t:M,n:'getSqlStrings',u:'#`()',p:6},
{t:M,n:'getTranslators',u:'#`()',p:7},
{t:M,n:'getUtilizedFilterNames',u:'#`()',p:8},
{t:M,n:'isShallow',u:'#`()',p:9},
{t:M,n:'performExecuteUpdate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:10},
{t:M,n:'performIterate',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.event.EventSource)',p:11},
{t:M,n:'performList',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:12},
{t:M,n:'performScroll',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:13},
{t:C,n:'NamedParameterDescriptor',c:'`.html',p:17},
{t:M,n:'getExpectedType',u:'#`()',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'getSourceLocations',u:'#`()',p:3},
{t:C,n:'NativeSQLQueryPlan',c:'`.html',p:21},
{t:M,n:'getCustomQuery',u:'#`()',p:1},
{t:M,n:'getSourceQuery',u:'#`()',p:2},
{t:C,n:'NativeSQLQuerySpecification',c:'`.html',p:24},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:1},
{t:M,n:'getQuerySpaces',u:'#`()',p:2},
{t:M,n:'getQueryString',u:'#`()',p:3},
{t:M,n:'getSqlQueryReturns',u:'#`()',p:4},
{t:M,n:'getSqlQueryScalarReturns',u:'#`()',p:5},
{t:M,n:'hashCode',u:'#`()',p:6},
{t:C,n:'OrdinalParameterDescriptor',c:'`.html',p:31},
{t:M,n:'getExpectedType',u:'#`()',p:1},
{t:M,n:'getOrdinalPosition',u:'#`()',p:2},
{t:M,n:'getSourceLocation',u:'#`()',p:3},
{t:C,n:'ParameterMetadata',c:'`.html',p:35},
{t:M,n:'getNamedParameterDescriptor',u:'#`(java.lang.String)',p:1},
{t:M,n:'getNamedParameterExpectedType',u:'#`(java.lang.String)',p:2},
{t:M,n:'getNamedParameterNames',u:'#`()',p:3},
{t:M,n:'getNamedParameterSourceLocations',u:'#`(java.lang.String)',p:4},
{t:M,n:'getOrdinalParameterCount',u:'#`()',p:5},
{t:M,n:'getOrdinalParameterDescriptor',u:'#`(int)',p:6},
{t:M,n:'getOrdinalParameterExpectedType',u:'#`(int)',p:7},
{t:M,n:'getOrdinalParameterSourceLocation',u:'#`(int)',p:8},
{t:C,n:'ParameterParser',c:'`.html',p:44},
{t:M,n:'parse',u:'#`(java.lang.String, org.hibernate.engine.query.ParameterParser.Recognizer)',p:1},
{t:C,n:'ParamLocationRecognizer',c:'`.html',p:46},
{t:M,n:'ejb3PositionalParameter',u:'#`(java.lang.String, int)',p:1},
{t:M,n:'getNamedParameterLocationMap',u:'#`()',p:2},
{t:M,n:'getOrdinalParameterLocationList',u:'#`()',p:3},
{t:M,n:'namedParameter',u:'#`(java.lang.String, int)',p:4},
{t:M,n:'ordinalParameter',u:'#`(int)',p:5},
{t:M,n:'other',u:'#`(char)',p:6},
{t:M,n:'outParameter',u:'#`(int)',p:7},
{t:M,n:'parseLocations',u:'#`(java.lang.String)',p:8},
{t:C,n:'QueryMetadata',c:'`.html',p:55},
{t:M,n:'getParameterMetadata',u:'#`()',p:1},
{t:M,n:'getQuerySpaces',u:'#`()',p:2},
{t:M,n:'getReturnAliases',u:'#`()',p:3},
{t:M,n:'getReturnTypes',u:'#`()',p:4},
{t:M,n:'getSourceQuery',u:'#`()',p:5},
{t:C,n:'QueryPlanCache',c:'`.html',p:61},
{t:M,n:'getFilterQueryPlan',u:'#`(java.lang.String, java.lang.String, boolean, java.util.Map)',p:1},
{t:M,n:'getHQLQueryPlan',u:'#`(java.lang.String, boolean, java.util.Map)',p:2},
{t:M,n:'getNativeSQLQueryPlan',u:'#`(org.hibernate.engine.query.NativeSQLQuerySpecification)',p:3},
{t:M,n:'getSQLParameterMetadata',u:'#`(java.lang.String)',p:4},
{t:C,n:'ReturnMetadata',c:'`.html',p:66},
{t:M,n:'getReturnAliases',u:'#`()',p:1},
{t:M,n:'getReturnTypes',u:'#`()',p:2},
{t:P,n:'org.hibernate.engine.transaction',u:'package-summary.html',c:'rg/hibernate/engine/transaction/',p:10063},
{t:I,n:'IsolatedWork',c:'`.html',p:1},
{t:M,n:'doWork',u:'#`(java.sql.Connection)',p:1},
{t:C,n:'Isolater',c:'`.html',p:3},
{t:M,n:'doIsolatedWork',u:'#`(org.hibernate.engine.transaction.IsolatedWork, org.hibernate.engine.SessionImplementor)',p:1},
{t:P,n:'org.hibernate.hql.ast.exec',u:'package-summary.html',c:'rg/hibernate/hql/ast/exec/',p:10068},
{t:I,n:'StatementExecutor',c:'`.html',p:1},
{t:M,n:'execute',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getSqlStatements',u:'#`()',p:2},
{t:C,n:'AbstractStatementExecutor',c:'`.html',p:4},
{t:M,n:'coordinateSharedCacheCleanup',u:'#`(org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'createTemporaryTableIfNecessary',u:'#`(org.hibernate.persister.entity.Queryable, org.hibernate.engine.SessionImplementor)',p:2},
{t:M,n:'dropTemporaryTableIfNecessary',u:'#`(org.hibernate.persister.entity.Queryable, org.hibernate.engine.SessionImplementor)',p:3},
{t:M,n:'generateIdInsertSelect',u:'#`(org.hibernate.persister.entity.Queryable, antlr.collections.AST)',p:4},
{t:M,n:'generateIdSubselect',u:'#`(org.hibernate.persister.entity.Queryable)',p:5},
{t:M,n:'getAffectedQueryables',u:'#`()',p:6},
{t:M,n:'getFactory',u:'#`()',p:7},
{t:M,n:'getWalker',u:'#`()',p:8},
{t:C,n:'BasicExecutor',c:'`.html',p:13},
{t:M,n:'execute',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getAffectedQueryables',u:'#`()',p:2},
{t:M,n:'getSqlStatements',u:'#`()',p:3},
{t:C,n:'MultiTableDeleteExecutor',c:'`.html',p:17},
{t:M,n:'execute',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getAffectedQueryables',u:'#`()',p:2},
{t:M,n:'getSqlStatements',u:'#`()',p:3},
{t:C,n:'MultiTableUpdateExecutor',c:'`.html',p:21},
{t:M,n:'execute',u:'#`(org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor)',p:1},
{t:M,n:'getAffectedQueryable',u:'#`()',p:2},
{t:M,n:'getAffectedQueryables',u:'#`()',p:3},
{t:M,n:'getSqlStatements',u:'#`()',p:4},
{t:P,n:'org.hibernate.hql.ast.tree',u:'package-summary.html',c:'rg/hibernate/hql/ast/tree/',p:10094},
{t:I,n:'BinaryOperatorNode',c:'`.html',p:1},
{t:M,n:'getLeftHandOperand',u:'#`()',p:1},
{t:M,n:'getRightHandOperand',u:'#`()',p:2},
{t:I,n:'DisplayableNode',c:'`.html',p:4},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:I,n:'InitializeableNode',c:'`.html',p:6},
{t:M,n:'initialize',u:'#`(java.lang.Object)',p:1},
{t:I,n:'OperatorNode',c:'`.html',p:8},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'initialize',u:'#`()',p:2},
{t:I,n:'PathNode',c:'`.html',p:11},
{t:M,n:'getPath',u:'#`()',p:1},
{t:I,n:'ResolvableNode',c:'`.html',p:13},
{t:M,n:'resolve',u:'#`(boolean, boolean)',p:1},
{t:M,n:'resolveIndex',u:'#`(antlr.collections.AST)',p:2},
{t:M,n:'resolveInFunctionCall',u:'#`(boolean, boolean)',p:3},
{t:I,n:'RestrictableStatement',c:'`.html',p:17},
{t:M,n:'getFromClause',u:'#`()',p:1},
{t:M,n:'getWhereClause',u:'#`()',p:2},
{t:M,n:'hasWhereClause',u:'#`()',p:3},
{t:I,n:'SelectExpression',c:'`.html',p:21},
{t:M,n:'getAlias',u:'#`()',p:1},
{t:M,n:'getDataType',u:'#`()',p:2},
{t:M,n:'getFromElement',u:'#`()',p:3},
{t:M,n:'isConstructor',u:'#`()',p:4},
{t:M,n:'isReturnableEntity',u:'#`()',p:5},
{t:M,n:'isScalar',u:'#`()',p:6},
{t:M,n:'setAlias',u:'#`(java.lang.String)',p:7},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:8},
{t:M,n:'setText',u:'#`(java.lang.String)',p:9},
{t:I,n:'Statement',c:'`.html',p:31},
{t:M,n:'getStatementType',u:'#`()',p:1},
{t:M,n:'getWalker',u:'#`()',p:2},
{t:M,n:'needsExecutor',u:'#`()',p:3},
{t:I,n:'UnaryOperatorNode',c:'`.html',p:35},
{t:M,n:'getOperand',u:'#`()',p:1},
{t:C,n:'AbstractRestrictableStatement',c:'`.html',p:37},
{t:M,n:'getFromClause',u:'#`()',p:1},
{t:M,n:'getLog',u:'#`()',p:2},
{t:M,n:'getWhereClause',u:'#`()',p:3},
{t:M,n:'getWhereClauseParentTokenType',u:'#`()',p:4},
{t:M,n:'hasWhereClause',u:'#`()',p:5},
{t:M,n:'locateWhereClause',u:'#`()',p:6},
{t:C,n:'AbstractSelectExpression',c:'`.html',p:44},
{t:M,n:'getAlias',u:'#`()',p:1},
{t:M,n:'getFromElement',u:'#`()',p:2},
{t:M,n:'isConstructor',u:'#`()',p:3},
{t:M,n:'isReturnableEntity',u:'#`()',p:4},
{t:M,n:'isScalar',u:'#`()',p:5},
{t:M,n:'setAlias',u:'#`(java.lang.String)',p:6},
{t:C,n:'AbstractStatement',c:'`.html',p:51},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:C,n:'AggregateNode',c:'`.html',p:53},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:2},
{t:C,n:'AssignmentSpecification',c:'`.html',p:56},
{t:M,n:'affectsTable',u:'#`(java.lang.String)',p:1},
{t:M,n:'getParameters',u:'#`()',p:2},
{t:M,n:'getSqlAssignmentFragment',u:'#`()',p:3},
{t:C,n:'BetweenOperatorNode',c:'`.html',p:60},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getFixtureOperand',u:'#`()',p:2},
{t:M,n:'getHighOperand',u:'#`()',p:3},
{t:M,n:'getLowOperand',u:'#`()',p:4},
{t:M,n:'initialize',u:'#`()',p:5},
{t:C,n:'BinaryArithmeticOperatorNode',c:'`.html',p:66},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getDisplayText',u:'#`()',p:2},
{t:M,n:'getLeftHandOperand',u:'#`()',p:3},
{t:M,n:'getRightHandOperand',u:'#`()',p:4},
{t:M,n:'initialize',u:'#`()',p:5},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:6},
{t:C,n:'BinaryLogicOperatorNode',c:'`.html',p:73},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getLeftHandOperand',u:'#`()',p:2},
{t:M,n:'getRightHandOperand',u:'#`()',p:3},
{t:M,n:'initialize',u:'#`()',p:4},
{t:C,n:'Case2Node',c:'`.html',p:78},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:2},
{t:C,n:'CaseNode',c:'`.html',p:81},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:2},
{t:C,n:'CollectionFunction',c:'`.html',p:84},
{t:M,n:'prepareSelectColumns',u:'#`(java.lang.String[])',p:1},
{t:M,n:'resolve',u:'#`(boolean)',p:2},
{t:C,n:'ConstructorNode',c:'`.html',p:87},
{t:M,n:'getAlias',u:'#`()',p:1},
{t:M,n:'getAliases',u:'#`()',p:2},
{t:M,n:'getConstructor',u:'#`()',p:3},
{t:M,n:'getConstructorArgumentTypeList',u:'#`()',p:4},
{t:M,n:'getDataType',u:'#`()',p:5},
{t:M,n:'getFirstSelectExpression',u:'#`()',p:6},
{t:M,n:'getFromElement',u:'#`()',p:7},
{t:M,n:'isConstructor',u:'#`()',p:8},
{t:M,n:'isList',u:'#`()',p:9},
{t:M,n:'isMap',u:'#`()',p:10},
{t:M,n:'isReturnableEntity',u:'#`()',p:11},
{t:M,n:'isScalar',u:'#`()',p:12},
{t:M,n:'prepare',u:'#`()',p:13},
{t:M,n:'setAlias',u:'#`(java.lang.String)',p:14},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:15},
{t:C,n:'CountNode',c:'`.html',p:103},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:2},
{t:C,n:'DeleteStatement',c:'`.html',p:106},
{t:M,n:'getLog',u:'#`()',p:1},
{t:M,n:'getStatementType',u:'#`()',p:2},
{t:M,n:'getWhereClauseParentTokenType',u:'#`()',p:3},
{t:M,n:'needsExecutor',u:'#`()',p:4},
{t:C,n:'DotNode',c:'`.html',p:111},
{t:O,n:'useThetaStyleImplicitJoins',u:'#`',p:1},
{t:M,n:'getDataType',u:'#`()',p:2},
{t:M,n:'getDisplayText',u:'#`()',p:3},
{t:M,n:'getImpliedJoin',u:'#`()',p:4},
{t:M,n:'getLhs',u:'#`()',p:5},
{t:M,n:'getPath',u:'#`()',p:6},
{t:M,n:'getPropertyPath',u:'#`()',p:7},
{t:M,n:'resolve',u:'#`(boolean, boolean, java.lang.String, antlr.collections.AST)',p:8},
{t:M,n:'resolveFirstChild',u:'#`()',p:9},
{t:M,n:'resolveIndex',u:'#`(antlr.collections.AST)',p:10},
{t:M,n:'resolveInFunctionCall',u:'#`(boolean, boolean)',p:11},
{t:M,n:'resolveSelectExpression',u:'#`()',p:12},
{t:M,n:'setFetch',u:'#`(boolean)',p:13},
{t:M,n:'setJoinType',u:'#`(int)',p:14},
{t:M,n:'setPropertyPath',u:'#`(java.lang.String)',p:15},
{t:M,n:'setResolvedConstant',u:'#`(java.lang.String)',p:16},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:17},
{t:C,n:'FromClause',c:'`.html',p:129},
{t:O,n:'ROOT_LEVEL',u:'#`',p:1},
{t:M,n:'addFromElement',u:'#`(java.lang.String, antlr.collections.AST)',p:2},
{t:M,n:'addImpliedFromElement',u:'#`(org.hibernate.hql.ast.tree.FromElement)',p:3},
{t:M,n:'containsClassAlias',u:'#`(java.lang.String)',p:4},
{t:M,n:'containsTableAlias',u:'#`(java.lang.String)',p:5},
{t:M,n:'getCollectionFetches',u:'#`()',p:6},
{t:M,n:'getDisplayText',u:'#`()',p:7},
{t:M,n:'getExplicitFromElements',u:'#`()',p:8},
{t:M,n:'getFromElement',u:'#`()',p:9},
{t:M,n:'getFromElements',u:'#`()',p:10},
{t:M,n:'getLevel',u:'#`()',p:11},
{t:M,n:'getParentFromClause',u:'#`()',p:12},
{t:M,n:'getProjectionList',u:'#`()',p:13},
{t:M,n:'hasCollectionFecthes',u:'#`()',p:14},
{t:M,n:'isFromElementAlias',u:'#`(java.lang.String)',p:15},
{t:M,n:'isSubQuery',u:'#`()',p:16},
{t:M,n:'locateChildFromClauseWithJoinByPath',u:'#`(java.lang.String)',p:17},
{t:M,n:'nextFromElementCounter',u:'#`()',p:18},
{t:M,n:'promoteJoin',u:'#`(org.hibernate.hql.ast.tree.FromElement)',p:19},
{t:M,n:'resolve',u:'#`()',p:20},
{t:M,n:'setParentFromClause',u:'#`(org.hibernate.hql.ast.tree.FromClause)',p:21},
{t:M,n:'toString',u:'#`()',p:22},
{t:C,n:'FromElement',c:'`.html',p:152},
{t:M,n:'appendDisplayText',u:'#`(java.lang.StringBuffer)',p:1},
{t:M,n:'equals',u:'#`(java.lang.Object)',p:2},
{t:M,n:'getAdHocOnClauseFragment',u:'#`()',p:3},
{t:M,n:'getClassAlias',u:'#`()',p:4},
{t:M,n:'getClassName',u:'#`()',p:5},
{t:M,n:'getCollectionSuffix',u:'#`()',p:6},
{t:M,n:'getCollectionTableAlias',u:'#`()',p:7},
{t:M,n:'getDataType',u:'#`()',p:8},
{t:M,n:'getDestinations',u:'#`()',p:9},
{t:M,n:'getDisplayText',u:'#`()',p:10},
{t:M,n:'getEntityPersister',u:'#`()',p:11},
{t:M,n:'getFromClause',u:'#`()',p:12},
{t:M,n:'getIdentityColumn',u:'#`()',p:13},
{t:M,n:'getJoinSequence',u:'#`()',p:14},
{t:M,n:'getOrigin',u:'#`()',p:15},
{t:M,n:'getPropertyMapping',u:'#`(java.lang.String)',p:16},
{t:M,n:'getPropertyType',u:'#`(java.lang.String, java.lang.String)',p:17},
{t:M,n:'getQueryable',u:'#`()',p:18},
{t:M,n:'getQueryableCollection',u:'#`()',p:19},
{t:M,n:'getRealOrigin',u:'#`()',p:20},
{t:M,n:'getSelectType',u:'#`()',p:21},
{t:M,n:'getSequence',u:'#`()',p:22},
{t:M,n:'getTableAlias',u:'#`()',p:23},
{t:M,n:'hasCacheablePersister',u:'#`()',p:24},
{t:M,n:'hashCode',u:'#`()',p:25},
{t:M,n:'initializeCollection',u:'#`(org.hibernate.hql.ast.tree.FromClause, java.lang.String, java.lang.String)',p:26},
{t:M,n:'initializeEntity',u:'#`(org.hibernate.hql.ast.tree.FromClause, java.lang.String, org.hibernate.persister.entity.EntityPersister, org.hibernate.type.EntityType, java.lang.String, java.lang.String)',p:27},
{t:M,n:'inProjectionList',u:'#`()',p:28},
{t:M,n:'isAllPropertyFetch',u:'#`()',p:29},
{t:M,n:'isCollectionJoin',u:'#`()',p:30},
{t:M,n:'isCollectionOfValuesOrComponents',u:'#`()',p:31},
{t:M,n:'isEntity',u:'#`()',p:32},
{t:M,n:'isFetch',u:'#`()',p:33},
{t:M,n:'isFilter',u:'#`()',p:34},
{t:M,n:'isFromOrJoinFragment',u:'#`()',p:35},
{t:M,n:'isImplied',u:'#`()',p:36},
{t:M,n:'isImpliedInFromClause',u:'#`()',p:37},
{t:M,n:'isIncludeSubclasses',u:'#`()',p:38},
{t:M,n:'isManyToMany',u:'#`()',p:39},
{t:M,n:'setAdHocOnClauseFragment',u:'#`(java.lang.String)',p:40},
{t:M,n:'setAllPropertyFetch',u:'#`(boolean)',p:41},
{t:M,n:'setCollectionJoin',u:'#`(boolean)',p:42},
{t:M,n:'setCollectionSuffix',u:'#`(java.lang.String)',p:43},
{t:M,n:'setCollectionTableAlias',u:'#`(java.lang.String)',p:44},
{t:M,n:'setColumns',u:'#`(java.lang.String[])',p:45},
{t:M,n:'setFetch',u:'#`(boolean)',p:46},
{t:M,n:'setFilter',u:'#`(boolean)',p:47},
{t:M,n:'setImpliedInFromClause',u:'#`(boolean)',p:48},
{t:M,n:'setIncludeSubclasses',u:'#`(boolean)',p:49},
{t:M,n:'setInProjectionList',u:'#`(boolean)',p:50},
{t:M,n:'setJoinSequence',u:'#`(org.hibernate.engine.JoinSequence)',p:51},
{t:M,n:'setOrigin',u:'#`(org.hibernate.hql.ast.tree.FromElement, boolean)',p:52},
{t:M,n:'setQueryableCollection',u:'#`(org.hibernate.persister.collection.QueryableCollection)',p:53},
{t:M,n:'setRole',u:'#`(java.lang.String)',p:54},
{t:M,n:'setUseFromFragment',u:'#`(boolean)',p:55},
{t:M,n:'setUseWhereFragment',u:'#`(boolean)',p:56},
{t:M,n:'toColumns',u:'#`(java.lang.String, java.lang.String, boolean)',p:57},
{t:M,n:'useFromFragment',u:'#`()',p:58},
{t:M,n:'useWhereFragment',u:'#`()',p:59},
{t:C,n:'FromReferenceNode',c:'`.html',p:212},
{t:O,n:'ROOT_LEVEL',u:'#`',p:1},
{t:M,n:'getDisplayText',u:'#`()',p:2},
{t:M,n:'getFromElement',u:'#`()',p:3},
{t:M,n:'getImpliedJoin',u:'#`()',p:4},
{t:M,n:'getPath',u:'#`()',p:5},
{t:M,n:'isResolved',u:'#`()',p:6},
{t:M,n:'isReturnableEntity',u:'#`()',p:7},
{t:M,n:'prepareForDot',u:'#`(java.lang.String)',p:8},
{t:M,n:'recursiveResolve',u:'#`(int, boolean, java.lang.String)',p:9},
{t:M,n:'resolve',u:'#`(boolean, boolean)',p:10},
{t:M,n:'resolveFirstChild',u:'#`()',p:11},
{t:M,n:'resolveInFunctionCall',u:'#`(boolean, boolean)',p:12},
{t:M,n:'setFromElement',u:'#`(org.hibernate.hql.ast.tree.FromElement)',p:13},
{t:M,n:'setResolved',u:'#`()',p:14},
{t:C,n:'HqlSqlWalkerNode',c:'`.html',p:227},
{t:M,n:'getAliasGenerator',u:'#`()',p:1},
{t:M,n:'getASTFactory',u:'#`()',p:2},
{t:M,n:'getSessionFactoryHelper',u:'#`()',p:3},
{t:M,n:'getWalker',u:'#`()',p:4},
{t:M,n:'initialize',u:'#`(java.lang.Object)',p:5},
{t:C,n:'IdentNode',c:'`.html',p:233},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getDisplayText',u:'#`()',p:2},
{t:M,n:'resolve',u:'#`(boolean, boolean, java.lang.String, antlr.collections.AST)',p:3},
{t:M,n:'resolveIndex',u:'#`(antlr.collections.AST)',p:4},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:5},
{t:C,n:'ImpliedFromElement',c:'`.html',p:239},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:M,n:'inProjectionList',u:'#`()',p:2},
{t:M,n:'isImplied',u:'#`()',p:3},
{t:M,n:'isImpliedInFromClause',u:'#`()',p:4},
{t:M,n:'isIncludeSubclasses',u:'#`()',p:5},
{t:M,n:'setImpliedInFromClause',u:'#`(boolean)',p:6},
{t:M,n:'setInProjectionList',u:'#`(boolean)',p:7},
{t:C,n:'IndexNode',c:'`.html',p:247},
{t:M,n:'prepareForDot',u:'#`(java.lang.String)',p:1},
{t:M,n:'resolve',u:'#`(boolean, boolean, java.lang.String, antlr.collections.AST)',p:2},
{t:M,n:'resolveIndex',u:'#`(antlr.collections.AST)',p:3},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:4},
{t:C,n:'InLogicOperatorNode',c:'`.html',p:252},
{t:M,n:'getInList',u:'#`()',p:1},
{t:M,n:'initialize',u:'#`()',p:2},
{t:C,n:'InsertStatement',c:'`.html',p:255},
{t:M,n:'getIntoClause',u:'#`()',p:1},
{t:M,n:'getSelectClause',u:'#`()',p:2},
{t:M,n:'getStatementType',u:'#`()',p:3},
{t:M,n:'needsExecutor',u:'#`()',p:4},
{t:M,n:'validate',u:'#`()',p:5},
{t:C,n:'IntoClause',c:'`.html',p:261},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:M,n:'getEntityName',u:'#`()',p:2},
{t:M,n:'getInsertionTypes',u:'#`()',p:3},
{t:M,n:'getQueryable',u:'#`()',p:4},
{t:M,n:'getTableName',u:'#`()',p:5},
{t:M,n:'initialize',u:'#`(org.hibernate.persister.entity.Queryable)',p:6},
{t:M,n:'isDiscriminated',u:'#`()',p:7},
{t:M,n:'isExplicitIdInsertion',u:'#`()',p:8},
{t:M,n:'isExplicitVersionInsertion',u:'#`()',p:9},
{t:M,n:'prependIdColumnSpec',u:'#`()',p:10},
{t:M,n:'prependVersionColumnSpec',u:'#`()',p:11},
{t:M,n:'validateTypes',u:'#`(org.hibernate.hql.ast.tree.SelectClause)',p:12},
{t:C,n:'LiteralNode',c:'`.html',p:274},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:2},
{t:C,n:'MethodNode',c:'`.html',p:277},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:M,n:'getFromElement',u:'#`()',p:2},
{t:M,n:'getSQLFunction',u:'#`()',p:3},
{t:M,n:'initializeMethodNode',u:'#`(antlr.collections.AST, boolean)',p:4},
{t:M,n:'isCollectionPropertyMethod',u:'#`()',p:5},
{t:M,n:'isScalar',u:'#`()',p:6},
{t:M,n:'prepareSelectColumns',u:'#`(java.lang.String[])',p:7},
{t:M,n:'resolve',u:'#`(boolean)',p:8},
{t:M,n:'resolveCollectionProperty',u:'#`(antlr.collections.AST)',p:9},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:10},
{t:C,n:'Node',c:'`.html',p:288},
{t:M,n:'getColumn',u:'#`()',p:1},
{t:M,n:'getFilename',u:'#`()',p:2},
{t:M,n:'getLine',u:'#`()',p:3},
{t:M,n:'getTextLength',u:'#`()',p:4},
{t:M,n:'initialize',u:'#`(antlr.collections.AST)',p:5},
{t:C,n:'OrderByClause',c:'`.html',p:294},
{t:M,n:'addOrderFragment',u:'#`(java.lang.String)',p:1},
{t:C,n:'ParameterNode',c:'`.html',p:296},
{t:M,n:'getDisplayText',u:'#`()',p:1},
{t:M,n:'getHqlParameterSpecification',u:'#`()',p:2},
{t:M,n:'setHqlParameterSpecification',u:'#`(org.hibernate.param.ParameterSpecification)',p:3},
{t:C,n:'QueryNode',c:'`.html',p:300},
{t:M,n:'getAlias',u:'#`()',p:1},
{t:M,n:'getDataType',u:'#`()',p:2},
{t:M,n:'getFromElement',u:'#`()',p:3},
{t:M,n:'getLog',u:'#`()',p:4},
{t:M,n:'getOrderByClause',u:'#`()',p:5},
{t:M,n:'getSelectClause',u:'#`()',p:6},
{t:M,n:'getStatementType',u:'#`()',p:7},
{t:M,n:'getWhereClauseParentTokenType',u:'#`()',p:8},
{t:M,n:'hasOrderByClause',u:'#`()',p:9},
{t:M,n:'isConstructor',u:'#`()',p:10},
{t:M,n:'isReturnableEntity',u:'#`()',p:11},
{t:M,n:'isScalar',u:'#`()',p:12},
{t:M,n:'needsExecutor',u:'#`()',p:13},
{t:M,n:'setAlias',u:'#`(java.lang.String)',p:14},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:15},
{t:C,n:'SelectClause',c:'`.html',p:316},
{t:O,n:'VERSION2_SQL',u:'#`',p:1},
{t:M,n:'getCollectionFromElements',u:'#`()',p:2},
{t:M,n:'getColumnNames',u:'#`()',p:3},
{t:M,n:'getConstructor',u:'#`()',p:4},
{t:M,n:'getFirstSelectExpression',u:'#`()',p:5},
{t:M,n:'getFromElementsForLoad',u:'#`()',p:6},
{t:M,n:'getQueryReturnAliases',u:'#`()',p:7},
{t:M,n:'getQueryReturnTypes',u:'#`()',p:8},
{t:M,n:'initializeDerivedSelectClause',u:'#`(org.hibernate.hql.ast.tree.FromClause)',p:9},
{t:M,n:'initializeExplicitSelectClause',u:'#`(org.hibernate.hql.ast.tree.FromClause)',p:10},
{t:M,n:'isList',u:'#`()',p:11},
{t:M,n:'isMap',u:'#`()',p:12},
{t:M,n:'isScalarSelect',u:'#`()',p:13},
{t:C,n:'SelectExpressionImpl',c:'`.html',p:330},
{t:M,n:'resolve',u:'#`(boolean, boolean, java.lang.String, antlr.collections.AST)',p:1},
{t:M,n:'resolveIndex',u:'#`(antlr.collections.AST)',p:2},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:3},
{t:C,n:'SelectExpressionList',c:'`.html',p:334},
{t:M,n:'collectSelectExpressions',u:'#`()',p:1},
{t:M,n:'getFirstSelectExpression',u:'#`()',p:2},
{t:C,n:'SqlFragment',c:'`.html',p:337},
{t:M,n:'getFromElement',u:'#`()',p:1},
{t:M,n:'hasFilterCondition',u:'#`()',p:2},
{t:M,n:'setFromElement',u:'#`(org.hibernate.hql.ast.tree.FromElement)',p:3},
{t:M,n:'setJoinFragment',u:'#`(org.hibernate.sql.JoinFragment)',p:4},
{t:C,n:'SqlNode',c:'`.html',p:342},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getOriginalText',u:'#`()',p:2},
{t:M,n:'setDataType',u:'#`(org.hibernate.type.Type)',p:3},
{t:M,n:'setText',u:'#`(java.lang.String)',p:4},
{t:C,n:'UnaryArithmeticNode',c:'`.html',p:347},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getOperand',u:'#`()',p:2},
{t:M,n:'initialize',u:'#`()',p:3},
{t:M,n:'setScalarColumnText',u:'#`(int)',p:4},
{t:C,n:'UnaryLogicOperatorNode',c:'`.html',p:352},
{t:M,n:'getDataType',u:'#`()',p:1},
{t:M,n:'getOperand',u:'#`()',p:2},
{t:M,n:'initialize',u:'#`()',p:3},
{t:C,n:'UpdateStatement',c:'`.html',p:356},
{t:M,n:'getLog',u:'#`()',p:1},
{t:M,n:'getSetClause',u:'#`()',p:2},
{t:M,n:'getStatementType',u:'#`()',p:3},
{t:M,n:'getWhereClauseParentTokenType',u:'#`()',p:4},
{t:M,n:'needsExecutor',u:'#`()',p:5},
{t:P,n:'org.hibernate.hql.ast.util',u:'package-summary.html',c:'rg/hibernate/hql/ast/util/',p:10456},
{t:C,n:'AliasGenerator',c:'`.html',p:1},
{t:M,n:'createName',u:'#`(java.lang.String)',p:1},
{t:C,n:'ASTAppender',c:'`.html',p:3},
{t:M,n:'append',u:'#`(antlr.collections.AST)',p:1},
{t:C,n:'ASTIterator',c:'`.html',p:5},
{t:M,n:'hasNext',u:'#`()',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:M,n:'nextNode',u:'#`()',p:3},
{t:M,n:'remove',u:'#`()',p:4},
{t:C,n:'ASTParentsFirstIterator',c:'`.html',p:10},
{t:M,n:'hasNext',u:'#`()',p:1},
{t:M,n:'next',u:'#`()',p:2},
{t:M,n:'nextNode',u:'#`()',p:3},
{t:M,n:'remove',u:'#`()',p:4},
{t:C,n:'ASTPrinter',c:'`.html',p:15},
{t:M,n:'appendEscapedMultibyteChars',u:'#`(java.lang.String, java.lang.StringBuffer)',p:1},
{t:M,n:'escapeMultibyteChars',u:'#`(java.lang.String)',p:2},
{t:M,n:'getConstantName',u:'#`(java.lang.Class, int)',p:3},
{t:M,n:'isShowClassNames',u:'#`()',p:4},
{t:M,n:'nodeToString',u:'#`(antlr.collections.AST, boolean)',p:5},
{t:M,n:'setShowClassNames',u:'#`(boolean)',p:6},
{t:M,n:'showAsString',u:'#`(antlr.collections.AST, java.lang.String)',p:7},
{t:M,n:'showAst',u:'#`(antlr.collections.AST, java.io.PrintWriter)',p:8},
{t:C,n:'ASTUtil',c:'`.html',p:24},
{t:M,n:'appendSibling',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:1},
{t:M,n:'collectChildren',u:'#`(antlr.collections.AST, org.hibernate.hql.ast.util.ASTUtil.FilterPredicate)',p:2},
{t:M,n:'create',u:'#`(antlr.ASTFactory, int, java.lang.String)',p:3},
{t:M,n:'createBinarySubtree',u:'#`(antlr.ASTFactory, int, java.lang.String, antlr.collections.AST, antlr.collections.AST)',p:4},
{t:M,n:'createParent',u:'#`(antlr.ASTFactory, int, java.lang.String, antlr.collections.AST)',p:5},
{t:M,n:'createSibling',u:'#`(antlr.ASTFactory, int, java.lang.String, antlr.collections.AST)',p:6},
{t:M,n:'createTree',u:'#`(antlr.ASTFactory, antlr.collections.AST[])',p:7},
{t:M,n:'findPreviousSibling',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:8},
{t:M,n:'findTypeInChildren',u:'#`(antlr.collections.AST, int)',p:9},
{t:M,n:'getDebugString',u:'#`(antlr.collections.AST)',p:10},
{t:M,n:'getLastChild',u:'#`(antlr.collections.AST)',p:11},
{t:M,n:'getPathText',u:'#`(antlr.collections.AST)',p:12},
{t:M,n:'hasExactlyOneChild',u:'#`(antlr.collections.AST)',p:13},
{t:M,n:'insertChild',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:14},
{t:M,n:'insertSibling',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:15},
{t:M,n:'makeSiblingOfParent',u:'#`(antlr.collections.AST, antlr.collections.AST)',p:16},
{t:C,n:'ColumnHelper',c:'`.html',p:41},
{t:M,n:'generateScalarColumns',u:'#`(org.hibernate.hql.ast.tree.HqlSqlWalkerNode, java.lang.String[], int)',p:1},
{t:M,n:'generateSingleScalarColumn',u:'#`(org.hibernate.hql.ast.tree.HqlSqlWalkerNode, int)',p:2},
{t:C,n:'JoinProcessor',c:'`.html',p:44},
{t:M,n:'processJoins',u:'#`(org.hibernate.hql.ast.tree.QueryNode, boolean)',p:1},
{t:M,n:'toHibernateJoinType',u:'#`(int)',p:2},
{t:C,n:'LiteralProcessor',c:'`.html',p:47},
{t:O,n:'APPROXIMATE',u:'#`',p:1},
{t:O,n:'DECIMAL_LITERAL_FORMAT',u:'#`',p:2},
{t:O,n:'EXACT',u:'#`',p:3},
{t:M,n:'determineDecimalRepresentation',u:'#`(java.lang.String, int)',p:4},
{t:M,n:'isAlias',u:'#`(java.lang.String)',p:5},
{t:M,n:'lookupConstant',u:'#`(org.hibernate.hql.ast.tree.DotNode)',p:6},
{t:M,n:'processBoolean',u:'#`(antlr.collections.AST)',p:7},
{t:M,n:'processConstant',u:'#`(antlr.collections.AST, boolean)',p:8},
{t:M,n:'processNumeric',u:'#`(antlr.collections.AST)',p:9},
{t:C,n:'PathHelper',c:'`.html',p:57},
{t:M,n:'getAlias',u:'#`(java.lang.String)',p:1},
{t:M,n:'parsePath',u:'#`(java.lang.String, antlr.ASTFactory)',p:2},
{t:C,n:'SessionFactoryHelper',c:'`.html',p:60},
{t:M,n:'createCollectionJoinSequence',u:'#`(org.hibernate.persister.collection.QueryableCollection, java.lang.String)',p:1},
{t:M,n:'createJoinSequence',u:'#`()',p:2},
{t:M,n:'findFunctionReturnType',u:'#`(java.lang.String, antlr.collections.AST)',p:3},
{t:M,n:'findQueryableUsingImports',u:'#`(org.hibernate.engine.SessionFactoryImplementor, java.lang.String)',p:4},
{t:M,n:'findSQLFunction',u:'#`(java.lang.String)',p:5},
{t:M,n:'generateColumnNames',u:'#`(org.hibernate.type.Type[])',p:6},
{t:M,n:'getAssociatedEntityName',u:'#`(org.hibernate.type.CollectionType)',p:7},
{t:M,n:'getCollectionElementColumns',u:'#`(java.lang.String, java.lang.String)',p:8},
{t:M,n:'getCollectionPersister',u:'#`(java.lang.String)',p:9},
{t:M,n:'getColumnSpan',u:'#`(org.hibernate.type.Type)',p:10},
{t:M,n:'getElementAssociationType',u:'#`(org.hibernate.type.CollectionType)',p:11},
{t:M,n:'getFactory',u:'#`()',p:12},
{t:M,n:'getIdentifierOrUniqueKeyPropertyName',u:'#`(org.hibernate.type.EntityType)',p:13},
{t:M,n:'getImportedClassName',u:'#`(java.lang.String)',p:14},
{t:M,n:'hasPhysicalDiscriminatorColumn',u:'#`(org.hibernate.persister.entity.Queryable)',p:15},
{t:M,n:'requireClassPersister',u:'#`(java.lang.String)',p:16},
{t:M,n:'requireQueryableCollection',u:'#`(java.lang.String)',p:17},
{t:C,n:'SyntheticAndFactory',c:'`.html',p:78},
{t:M,n:'addDiscriminatorWhereFragment',u:'#`(org.hibernate.hql.ast.tree.RestrictableStatement, org.hibernate.persister.entity.Queryable, java.util.Map, java.lang.String)',p:1},
{t:M,n:'addWhereFragment',u:'#`(org.hibernate.sql.JoinFragment, java.lang.String, org.hibernate.hql.ast.tree.QueryNode, org.hibernate.hql.ast.tree.FromElement)',p:2},
{t:P,n:'org.hibernate.param',u:'package-summary.html',c:'rg/hibernate/param/',p:10537},
{t:I,n:'ExplicitParameterSpecification',c:'`.html',p:1},
{t:M,n:'getSourceColumn',u:'#`()',p:1},
{t:M,n:'getSourceLine',u:'#`()',p:2},
{t:I,n:'ParameterSpecification',c:'`.html',p:4},
{t:M,n:'bind',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor, int)',p:1},
{t:M,n:'getExpectedType',u:'#`()',p:2},
{t:M,n:'renderDisplayInfo',u:'#`()',p:3},
{t:M,n:'setExpectedType',u:'#`(org.hibernate.type.Type)',p:4},
{t:C,n:'AbstractExplicitParameterSpecification',c:'`.html',p:9},
{t:M,n:'getExpectedType',u:'#`()',p:1},
{t:M,n:'getSourceColumn',u:'#`()',p:2},
{t:M,n:'getSourceLine',u:'#`()',p:3},
{t:M,n:'setExpectedType',u:'#`(org.hibernate.type.Type)',p:4},
{t:C,n:'NamedParameterSpecification',c:'`.html',p:14},
{t:M,n:'bind',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor, int)',p:1},
{t:M,n:'getName',u:'#`()',p:2},
{t:M,n:'renderDisplayInfo',u:'#`()',p:3},
{t:C,n:'PositionalParameterSpecification',c:'`.html',p:18},
{t:M,n:'bind',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor, int)',p:1},
{t:M,n:'getHqlPosition',u:'#`()',p:2},
{t:M,n:'renderDisplayInfo',u:'#`()',p:3},
{t:C,n:'VersionTypeSeedParameterSpecification',c:'`.html',p:22},
{t:M,n:'bind',u:'#`(java.sql.PreparedStatement, org.hibernate.engine.QueryParameters, org.hibernate.engine.SessionImplementor, int)',p:1},
{t:M,n:'getExpectedType',u:'#`()',p:2},
{t:M,n:'renderDisplayInfo',u:'#`()',p:3},
{t:M,n:'setExpectedType',u:'#`(org.hibernate.type.Type)',p:4},
null);
finishModuleProcessing('module_hibernate.js',tmp);