blob: e3d1a8ccbb4c0591ee641aeab3b128792a0c3beb [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>ClientRegionFactory (Apache Geode 1.15.1)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ClientRegionFactory (Apache Geode 1.15.1)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/geode/cache/client/ClientNotReadyException.html" title="class in org.apache.geode.cache.client"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../../org/apache/geode/cache/client/ClientRegionShortcut.html" title="enum in org.apache.geode.cache.client"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/geode/cache/client/ClientRegionFactory.html" target="_top">Frames</a></li>
<li><a href="ClientRegionFactory.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.geode.cache.client</div>
<h2 title="Interface ClientRegionFactory" class="title">Interface ClientRegionFactory&lt;K,V&gt;</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public interface <span class="typeNameLabel">ClientRegionFactory&lt;K,V&gt;</span></pre>
<div class="block">A factory for constructing <a href="../../../../../org/apache/geode/cache/client/ClientCache.html" title="interface in org.apache.geode.cache.client"><code>client cache</code></a> <a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache"><code>regions</code></a>. Instances of
this interface can be created using region shortcuts by calling
<a href="../../../../../org/apache/geode/cache/client/ClientCache.html#createClientRegionFactory-org.apache.geode.cache.client.ClientRegionShortcut-"><code>ClientCache.createClientRegionFactory(ClientRegionShortcut)</code></a> or using named region
attributes by calling <a href="../../../../../org/apache/geode/cache/client/ClientCache.html#createClientRegionFactory-java.lang.String-"><code>ClientCache.createClientRegionFactory(String)</code></a>.
<p>
The factory can then be customized using its methods.
<p>
The final step is to produce a <a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache"><code>Region</code></a> by calling <a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#create-java.lang.String-"><code>create(String)</code></a>.
<p>
Client regions may be:
<ul>
<li>PROXY: which pass through to server and have no local data.
<li>CACHING_PROXY: which fetch data from servers and cache it locally.
<li>LOCAL: which only have local data; they do not communicate with the servers.
</ul>
See <a href="../../../../../org/apache/geode/cache/client/ClientRegionShortcut.html" title="enum in org.apache.geode.cache.client"><code>ClientRegionShortcut</code></a> for the shortcuts for these three types of client regions.
<p>
Example: Create a client region with a CacheListener
<PRE>
ClientCache c = new ClientCacheFactory().addLocator(host, port).create();
// Create local caching region that is connected to a server side region
// Add a cache listener before creating region
Region r =
c.createClientRegionFactory(CACHING_PROXY).addCacheListener(myListener).create(&quot;customers&quot;);
</PRE></div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>GemFire 6.5</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#addCacheListener-org.apache.geode.cache.CacheListener-">addCacheListener</a></span>(<a href="../../../../../org/apache/geode/cache/CacheListener.html" title="interface in org.apache.geode.cache">CacheListener</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;aListener)</code>
<div class="block">Adds a cache listener to the end of the list of cache listeners on this factory.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#create-java.lang.String-">create</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Creates a region in the <a href="../../../../../org/apache/geode/cache/client/ClientCache.html" title="interface in org.apache.geode.cache.client"><code>ClientCache</code></a> using the configuration contained in this
ClientRegionFactory.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#createSubregion-org.apache.geode.cache.Region-java.lang.String-">createSubregion</a></span>(<a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;?,?&gt;&nbsp;parent,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Creates a sub-region in the <a href="../../../../../org/apache/geode/cache/client/ClientCache.html" title="interface in org.apache.geode.cache.client"><code>ClientCache</code></a> using the configuration contained in this
ClientRegionFactory.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#initCacheListeners-org.apache.geode.cache.CacheListener:A-">initCacheListeners</a></span>(<a href="../../../../../org/apache/geode/cache/CacheListener.html" title="interface in org.apache.geode.cache">CacheListener</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;[]&nbsp;newListeners)</code>
<div class="block">Removes all cache listeners and then adds each listener in the specified array.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setCloningEnabled-boolean-">setCloningEnabled</a></span>(boolean&nbsp;cloningEnable)</code>
<div class="block">Sets cloning on region Note: off-heap regions always behave as if cloning is enabled.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setCompressor-org.apache.geode.compression.Compressor-">setCompressor</a></span>(<a href="../../../../../org/apache/geode/compression/Compressor.html" title="interface in org.apache.geode.compression">Compressor</a>&nbsp;compressor)</code>
<div class="block">Set the compressor to be used by this region for compressing region entry values.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setConcurrencyChecksEnabled-boolean-">setConcurrencyChecksEnabled</a></span>(boolean&nbsp;concurrencyChecksEnabled)</code>
<div class="block">Enables or disabled concurrent modification checks</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setConcurrencyLevel-int-">setConcurrencyLevel</a></span>(int&nbsp;concurrencyLevel)</code>
<div class="block">Sets the concurrency level tof the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setCustomEntryIdleTimeout-org.apache.geode.cache.CustomExpiry-">setCustomEntryIdleTimeout</a></span>(<a href="../../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache">CustomExpiry</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;custom)</code>
<div class="block">Sets the custom idleTimeout for the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setCustomEntryTimeToLive-org.apache.geode.cache.CustomExpiry-">setCustomEntryTimeToLive</a></span>(<a href="../../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache">CustomExpiry</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;custom)</code>
<div class="block">Sets the custom timeToLive expiration method for the next <code>RegionAttributes</code>
created.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setDiskStoreName-java.lang.String-">setDiskStoreName</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
<div class="block">Sets the DiskStore name attribute.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setDiskSynchronous-boolean-">setDiskSynchronous</a></span>(boolean&nbsp;isSynchronous)</code>
<div class="block">Sets whether or not the writing to the disk is synchronous.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setEntryIdleTimeout-org.apache.geode.cache.ExpirationAttributes-">setEntryIdleTimeout</a></span>(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;idleTimeout)</code>
<div class="block">Sets the idleTimeout expiration attributes for region entries for the next
<code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setEntryTimeToLive-org.apache.geode.cache.ExpirationAttributes-">setEntryTimeToLive</a></span>(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;timeToLive)</code>
<div class="block">Sets the timeToLive expiration attributes for region entries for the next
<code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setEvictionAttributes-org.apache.geode.cache.EvictionAttributes-">setEvictionAttributes</a></span>(<a href="../../../../../org/apache/geode/cache/EvictionAttributes.html" title="class in org.apache.geode.cache">EvictionAttributes</a>&nbsp;evictionAttributes)</code>
<div class="block">Sets the eviction attributes that controls growth of the Region to be created.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setInitialCapacity-int-">setInitialCapacity</a></span>(int&nbsp;initialCapacity)</code>
<div class="block">Sets the entry initial capacity for the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setKeyConstraint-java.lang.Class-">setKeyConstraint</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>&gt;&nbsp;keyConstraint)</code>
<div class="block">Sets the key constraint for the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setLoadFactor-float-">setLoadFactor</a></span>(float&nbsp;loadFactor)</code>
<div class="block">Sets the entry load factor for the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setPoolName-java.lang.String-">setPoolName</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;poolName)</code>
<div class="block">Sets the pool name attribute.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setRegionIdleTimeout-org.apache.geode.cache.ExpirationAttributes-">setRegionIdleTimeout</a></span>(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;idleTimeout)</code>
<div class="block">Sets the idleTimeout expiration attributes for the region itself for the next
<code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setRegionTimeToLive-org.apache.geode.cache.ExpirationAttributes-">setRegionTimeToLive</a></span>(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;timeToLive)</code>
<div class="block">Sets the timeToLive expiration attributes for the region itself for the next
<code>RegionAttributes</code> created.</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setStatisticsEnabled-boolean-">setStatisticsEnabled</a></span>(boolean&nbsp;statisticsEnabled)</code>
<div class="block">Sets whether statistics are enabled for this region and its entries.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html#setValueConstraint-java.lang.Class-">setValueConstraint</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;valueConstraint)</code>
<div class="block">Sets the value constraint for the next <code>RegionAttributes</code> created.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="addCacheListener-org.apache.geode.cache.CacheListener-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addCacheListener</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;addCacheListener(<a href="../../../../../org/apache/geode/cache/CacheListener.html" title="interface in org.apache.geode.cache">CacheListener</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;aListener)</pre>
<div class="block">Adds a cache listener to the end of the list of cache listeners on this factory.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>aListener</code> - the cache listener to add</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if <code>aListener</code> is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#addCacheListener-org.apache.geode.cache.CacheListener-"><code>AttributesFactory.addCacheListener(org.apache.geode.cache.CacheListener&lt;K, V&gt;)</code></a></dd>
</dl>
</li>
</ul>
<a name="initCacheListeners-org.apache.geode.cache.CacheListener:A-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>initCacheListeners</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;initCacheListeners(<a href="../../../../../org/apache/geode/cache/CacheListener.html" title="interface in org.apache.geode.cache">CacheListener</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;[]&nbsp;newListeners)</pre>
<div class="block">Removes all cache listeners and then adds each listener in the specified array. for the next
<code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newListeners</code> - a possibly null or empty array of listeners to add to this factory.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if the <code>newListeners</code> array has a null element</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#initCacheListeners-org.apache.geode.cache.CacheListener:A-"><code>AttributesFactory.initCacheListeners(org.apache.geode.cache.CacheListener&lt;K, V&gt;[])</code></a></dd>
</dl>
</li>
</ul>
<a name="setEvictionAttributes-org.apache.geode.cache.EvictionAttributes-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEvictionAttributes</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setEvictionAttributes(<a href="../../../../../org/apache/geode/cache/EvictionAttributes.html" title="class in org.apache.geode.cache">EvictionAttributes</a>&nbsp;evictionAttributes)</pre>
<div class="block">Sets the eviction attributes that controls growth of the Region to be created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>evictionAttributes</code> - for the Region to create</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
</dl>
</li>
</ul>
<a name="setEntryIdleTimeout-org.apache.geode.cache.ExpirationAttributes-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEntryIdleTimeout</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setEntryIdleTimeout(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;idleTimeout)</pre>
<div class="block">Sets the idleTimeout expiration attributes for region entries for the next
<code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>idleTimeout</code> - the idleTimeout ExpirationAttributes for entries in this region</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if idleTimeout is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setEntryIdleTimeout-org.apache.geode.cache.ExpirationAttributes-"><code>AttributesFactory.setEntryIdleTimeout(org.apache.geode.cache.ExpirationAttributes)</code></a></dd>
</dl>
</li>
</ul>
<a name="setCustomEntryIdleTimeout-org.apache.geode.cache.CustomExpiry-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCustomEntryIdleTimeout</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setCustomEntryIdleTimeout(<a href="../../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache">CustomExpiry</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;custom)</pre>
<div class="block">Sets the custom idleTimeout for the next <code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>custom</code> - the custom method</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the receiver</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setCustomEntryIdleTimeout-org.apache.geode.cache.CustomExpiry-"><code>AttributesFactory.setCustomEntryIdleTimeout(CustomExpiry)</code></a></dd>
</dl>
</li>
</ul>
<a name="setEntryTimeToLive-org.apache.geode.cache.ExpirationAttributes-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEntryTimeToLive</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setEntryTimeToLive(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;timeToLive)</pre>
<div class="block">Sets the timeToLive expiration attributes for region entries for the next
<code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>timeToLive</code> - the timeToLive ExpirationAttributes for entries in this region</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if timeToLive is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setEntryTimeToLive-org.apache.geode.cache.ExpirationAttributes-"><code>AttributesFactory.setEntryTimeToLive(org.apache.geode.cache.ExpirationAttributes)</code></a></dd>
</dl>
</li>
</ul>
<a name="setCustomEntryTimeToLive-org.apache.geode.cache.CustomExpiry-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCustomEntryTimeToLive</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setCustomEntryTimeToLive(<a href="../../../../../org/apache/geode/cache/CustomExpiry.html" title="interface in org.apache.geode.cache">CustomExpiry</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;custom)</pre>
<div class="block">Sets the custom timeToLive expiration method for the next <code>RegionAttributes</code>
created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>custom</code> - the custom method</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the receiver</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setCustomEntryTimeToLive-org.apache.geode.cache.CustomExpiry-"><code>AttributesFactory.setCustomEntryTimeToLive(CustomExpiry)</code></a></dd>
</dl>
</li>
</ul>
<a name="setRegionIdleTimeout-org.apache.geode.cache.ExpirationAttributes-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRegionIdleTimeout</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setRegionIdleTimeout(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;idleTimeout)</pre>
<div class="block">Sets the idleTimeout expiration attributes for the region itself for the next
<code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>idleTimeout</code> - the ExpirationAttributes for this region idleTimeout</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if idleTimeout is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setRegionIdleTimeout-org.apache.geode.cache.ExpirationAttributes-"><code>AttributesFactory.setRegionIdleTimeout(org.apache.geode.cache.ExpirationAttributes)</code></a></dd>
</dl>
</li>
</ul>
<a name="setRegionTimeToLive-org.apache.geode.cache.ExpirationAttributes-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRegionTimeToLive</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setRegionTimeToLive(<a href="../../../../../org/apache/geode/cache/ExpirationAttributes.html" title="class in org.apache.geode.cache">ExpirationAttributes</a>&nbsp;timeToLive)</pre>
<div class="block">Sets the timeToLive expiration attributes for the region itself for the next
<code>RegionAttributes</code> created.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>timeToLive</code> - the ExpirationAttributes for this region timeToLive</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if timeToLive is null</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setRegionTimeToLive-org.apache.geode.cache.ExpirationAttributes-"><code>AttributesFactory.setRegionTimeToLive(org.apache.geode.cache.ExpirationAttributes)</code></a></dd>
</dl>
</li>
</ul>
<a name="setKeyConstraint-java.lang.Class-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setKeyConstraint</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setKeyConstraint(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>&gt;&nbsp;keyConstraint)</pre>
<div class="block">Sets the key constraint for the next <code>RegionAttributes</code> created. Keys in the region
will be constrained to this class (or subclass). Any attempt to store a key of an incompatible
type in the region will cause a <code>ClassCastException</code> to be thrown.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>keyConstraint</code> - The Class to constrain the keys to, or null if no constraint</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if <code>keyConstraint</code> is a class denoting a primitive
type</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setKeyConstraint-java.lang.Class-"><code>AttributesFactory.setKeyConstraint(java.lang.Class&lt;K&gt;)</code></a></dd>
</dl>
</li>
</ul>
<a name="setValueConstraint-java.lang.Class-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setValueConstraint</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setValueConstraint(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;valueConstraint)</pre>
<div class="block">Sets the value constraint for the next <code>RegionAttributes</code> created. Values in the
region will be constrained to this class (or subclass). Any attempt to store a value of an
incompatible type in the region will cause a <code>ClassCastException</code> to be thrown.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>valueConstraint</code> - The Class to constrain the values to, or null if no constraint</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if <code>valueConstraint</code> is a class denoting a
primitive type</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setValueConstraint-java.lang.Class-"><code>AttributesFactory.setValueConstraint(java.lang.Class&lt;V&gt;)</code></a></dd>
</dl>
</li>
</ul>
<a name="setInitialCapacity-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInitialCapacity</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setInitialCapacity(int&nbsp;initialCapacity)</pre>
<div class="block">Sets the entry initial capacity for the next <code>RegionAttributes</code> created. This value
is used in initializing the map that holds the entries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>initialCapacity</code> - the initial capacity of the entry map</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if initialCapacity is negative.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util"><code>HashMap</code></a>,
<a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setInitialCapacity-int-"><code>AttributesFactory.setInitialCapacity(int)</code></a></dd>
</dl>
</li>
</ul>
<a name="setLoadFactor-float-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLoadFactor</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setLoadFactor(float&nbsp;loadFactor)</pre>
<div class="block">Sets the entry load factor for the next <code>RegionAttributes</code> created. This value is
used in initializing the map that holds the entries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>loadFactor</code> - the load factor of the entry map</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if loadFactor is nonpositive</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util"><code>HashMap</code></a>,
<a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setLoadFactor-float-"><code>AttributesFactory.setLoadFactor(float)</code></a></dd>
</dl>
</li>
</ul>
<a name="setConcurrencyLevel-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setConcurrencyLevel</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setConcurrencyLevel(int&nbsp;concurrencyLevel)</pre>
<div class="block">Sets the concurrency level tof the next <code>RegionAttributes</code> created. This value is
used in initializing the map that holds the entries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>concurrencyLevel</code> - the concurrency level of the entry map</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if concurrencyLevel is nonpositive</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setConcurrencyLevel-int-"><code>AttributesFactory.setConcurrencyLevel(int)</code></a></dd>
</dl>
</li>
</ul>
<a name="setConcurrencyChecksEnabled-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setConcurrencyChecksEnabled</h4>
<pre>void&nbsp;setConcurrencyChecksEnabled(boolean&nbsp;concurrencyChecksEnabled)</pre>
<div class="block">Enables or disabled concurrent modification checks</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>concurrencyChecksEnabled</code> - whether to perform concurrency checks on operations</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>GemFire 7.0</dd>
</dl>
</li>
</ul>
<a name="setDiskStoreName-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDiskStoreName</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setDiskStoreName(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
<div class="block">Sets the DiskStore name attribute. This causes the region to belong to the DiskStore.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the diskstore</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setDiskStoreName-java.lang.String-"><code>AttributesFactory.setDiskStoreName(java.lang.String)</code></a></dd>
</dl>
</li>
</ul>
<a name="setDiskSynchronous-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDiskSynchronous</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setDiskSynchronous(boolean&nbsp;isSynchronous)</pre>
<div class="block">Sets whether or not the writing to the disk is synchronous.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>isSynchronous</code> - boolean if true indicates synchronous writes</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
</dl>
</li>
</ul>
<a name="setStatisticsEnabled-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setStatisticsEnabled</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setStatisticsEnabled(boolean&nbsp;statisticsEnabled)</pre>
<div class="block">Sets whether statistics are enabled for this region and its entries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>statisticsEnabled</code> - whether statistics are enabled</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setStatisticsEnabled-boolean-"><code>AttributesFactory.setStatisticsEnabled(boolean)</code></a></dd>
</dl>
</li>
</ul>
<a name="setCloningEnabled-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCloningEnabled</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setCloningEnabled(boolean&nbsp;cloningEnable)</pre>
<div class="block">Sets cloning on region Note: off-heap regions always behave as if cloning is enabled.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>cloningEnable</code> - whether cloning is enabled on the region</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/AttributesFactory.html#setCloningEnabled-boolean-"><code>AttributesFactory.setCloningEnabled(boolean)</code></a></dd>
</dl>
</li>
</ul>
<a name="setPoolName-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPoolName</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setPoolName(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;poolName)</pre>
<div class="block">Sets the pool name attribute. This causes regions that use these attributes to be a client
region which communicates with the servers that the connection pool communicates with.
<p>
The named connection pool must exist on the cache at the time these attributes are used to
create a region. See <a href="../../../../../org/apache/geode/cache/client/PoolManager.html#createFactory--"><code>PoolManager.createFactory()</code></a> for how to create a connection pool.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>poolName</code> - the name of the connection pool to use</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this ClientRegionFactory object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang">IllegalStateException</a></code> - if a cache loader or cache writer has already been set.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../../org/apache/geode/cache/client/PoolManager.html" title="class in org.apache.geode.cache.client"><code>PoolManager</code></a></dd>
</dl>
</li>
</ul>
<a name="setCompressor-org.apache.geode.compression.Compressor-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCompressor</h4>
<pre><a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="interface in org.apache.geode.cache.client">ClientRegionFactory</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;setCompressor(<a href="../../../../../org/apache/geode/compression/Compressor.html" title="interface in org.apache.geode.compression">Compressor</a>&nbsp;compressor)</pre>
<div class="block">Set the compressor to be used by this region for compressing region entry values.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>compressor</code> - a compressor</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a reference to this RegionFactory instance</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>GemFire 8.0</dd>
</dl>
</li>
</ul>
<a name="create-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>create</h4>
<pre><a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;create(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)
throws <a href="../../../../../org/apache/geode/cache/RegionExistsException.html" title="class in org.apache.geode.cache">RegionExistsException</a></pre>
<div class="block">Creates a region in the <a href="../../../../../org/apache/geode/cache/client/ClientCache.html" title="interface in org.apache.geode.cache.client"><code>ClientCache</code></a> using the configuration contained in this
ClientRegionFactory. Validation of the provided attributes may cause exceptions to be thrown if
there are problems with the configuration data.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the region to create</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the region object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../../org/apache/geode/cache/RegionExistsException.html" title="class in org.apache.geode.cache">RegionExistsException</a></code> - if a region with the given name already exists in this cache</dd>
<dd><code><a href="../../../../../org/apache/geode/cache/CacheClosedException.html" title="class in org.apache.geode.cache">CacheClosedException</a></code> - if the cache is closed</dd>
</dl>
</li>
</ul>
<a name="createSubregion-org.apache.geode.cache.Region-java.lang.String-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>createSubregion</h4>
<pre><a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">K</a>,<a href="../../../../../org/apache/geode/cache/client/ClientRegionFactory.html" title="type parameter in ClientRegionFactory">V</a>&gt;&nbsp;createSubregion(<a href="../../../../../org/apache/geode/cache/Region.html" title="interface in org.apache.geode.cache">Region</a>&lt;?,?&gt;&nbsp;parent,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)
throws <a href="../../../../../org/apache/geode/cache/RegionExistsException.html" title="class in org.apache.geode.cache">RegionExistsException</a></pre>
<div class="block">Creates a sub-region in the <a href="../../../../../org/apache/geode/cache/client/ClientCache.html" title="interface in org.apache.geode.cache.client"><code>ClientCache</code></a> using the configuration contained in this
ClientRegionFactory. Validation of the provided attributes may cause exceptions to be thrown if
there are problems with the configuration data.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>parent</code> - the existing region that will contain the created sub-region</dd>
<dd><code>name</code> - the name of the region to create</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the region object</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../../org/apache/geode/cache/RegionExistsException.html" title="class in org.apache.geode.cache">RegionExistsException</a></code> - if a region with the given name already exists in this cache</dd>
<dd><code><a href="../../../../../org/apache/geode/cache/RegionDestroyedException.html" title="class in org.apache.geode.cache">RegionDestroyedException</a></code> - if the parent region has been closed or destroyed</dd>
<dd><code><a href="../../../../../org/apache/geode/cache/CacheClosedException.html" title="class in org.apache.geode.cache">CacheClosedException</a></code> - if the cache is closed</dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>GemFire 7.0</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/geode/cache/client/ClientNotReadyException.html" title="class in org.apache.geode.cache.client"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../../org/apache/geode/cache/client/ClientRegionShortcut.html" title="enum in org.apache.geode.cache.client"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/geode/cache/client/ClientRegionFactory.html" target="_top">Frames</a></li>
<li><a href="ClientRegionFactory.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>