http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1809c234/content/site/apidocs/org/apache/juneau/BeanContext.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/BeanContext.html b/content/site/apidocs/org/apache/juneau/BeanContext.html index 0a91186..82d81e8 100644 --- a/content/site/apidocs/org/apache/juneau/BeanContext.html +++ b/content/site/apidocs/org/apache/juneau/BeanContext.html @@ -133,9 +133,9 @@ extends <a href="../../../org/apache/juneau/Context.html" title="class in org.ap All serializer and parser contexts extend from this context. <h5 class='topic'>Bean Contexts</h5> - Bean contexts are created through the <a href="../../../org/apache/juneau/ContextFactory.html#getContext-java.lang.Class-"><code>ContextFactory.getContext(Class)</code></a> method. + Bean contexts are created through the <a href="../../../org/apache/juneau/PropertyStore.html#getContext-java.lang.Class-"><code>PropertyStore.getContext(Class)</code></a> method. These context objects are read-only, reusable, and thread-safe. - The <a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau"><code>ContextFactory</code></a> class will typically cache copies of <code>Context</code> objects based on + The <a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau"><code>PropertyStore</code></a> class will typically cache copies of <code>Context</code> objects based on the current settings on the factory. <p> Each bean context maintains a cache of <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> objects that describe information about classes encountered. @@ -164,20 +164,20 @@ extends <a href="../../../org/apache/juneau/Context.html" title="class in org.ap <p> Some settings (e.g. <a href="../../../org/apache/juneau/BeanContext.html#BEAN_beanMapPutReturnsOldValue"><code>BEAN_beanMapPutReturnsOldValue</code></a>) change the runtime behavior of bean maps. <p> - Settings are specified using the <a href="../../../org/apache/juneau/ContextFactory.html#setProperty-java.lang.String-java.lang.Object-"><code>ContextFactory.setProperty(String, Object)</code></a> method and related convenience methods. + Settings are specified using the <a href="../../../org/apache/juneau/PropertyStore.html#setProperty-java.lang.String-java.lang.Object-"><code>PropertyStore.setProperty(String, Object)</code></a> method and related convenience methods. <h5 class='section'>Example:</h5> <p class='bcode'> <jc>// Construct a context from scratch.</jc> - BeanContext beanContext = ContextFactory.<jsm>create</jsm>() - .setProperty(BeanContext.<jsf>BEAN_beansRequireDefaultConstructor</jsf>, <jk>true</jk>) - .addNotBeanClasses(Foo.<jk>class</jk>) + BeanContext beanContext = PropertyStore.<jsm>create</jsm>() + .property(BeanContext.<jsf>BEAN_beansRequireDefaultConstructor</jsf>, <jk>true</jk>) + .notBeanClasses(Foo.<jk>class</jk>) .getBeanContext(); - <jc>// Clone an existing context factory.</jc> - BeanContext beanContext = ContextFactory.<jsm>create</jsm>(otherConfig) - .setProperty(BeanContext.<jsf>BEAN_beansRequireDefaultConstructor</jsf>, <jk>true</jk>) - .addNotBeanClasses(Foo.<jk>class</jk>) + <jc>// Clone an existing property store.</jc> + BeanContext beanContext = PropertyStore.<jsm>create</jsm>(otherConfig) + .property(BeanContext.<jsf>BEAN_beansRequireDefaultConstructor</jsf>, <jk>true</jk>) + .notBeanClasses(Foo.<jk>class</jk>) .getBeanContext(); </p> @@ -562,7 +562,7 @@ extends <a href="../../../org/apache/juneau/Context.html" title="class in org.ap <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> -<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/BeanContext.html#BeanContext-org.apache.juneau.ContextFactory-">BeanContext</a></span>(<a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a> cf)</code> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/BeanContext.html#BeanContext-org.apache.juneau.PropertyStore-">BeanContext</a></span>(<a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau">PropertyStore</a> ps)</code> <div class="block">Constructor.</div> </td> </tr> @@ -1658,19 +1658,19 @@ extends <a href="../../../org/apache/juneau/Context.html" title="class in org.ap <!-- --> </a> <h3>Constructor Detail</h3> -<a name="BeanContext-org.apache.juneau.ContextFactory-"> +<a name="BeanContext-org.apache.juneau.PropertyStore-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>BeanContext</h4> -<pre>public <a href="../../../src-html/org/apache/juneau/BeanContext.html#line.836">BeanContext</a>(<a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a> cf)</pre> +<pre>public <a href="../../../src-html/org/apache/juneau/BeanContext.html#line.836">BeanContext</a>(<a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau">PropertyStore</a> ps)</pre> <div class="block">Constructor. <p> - Typically only called from <a href="../../../org/apache/juneau/ContextFactory.html#getContext-java.lang.Class-"><code>ContextFactory.getContext(Class)</code></a> or <a href="../../../org/apache/juneau/ContextFactory.html#getBeanContext--"><code>ContextFactory.getBeanContext()</code></a>.</div> + Typically only called from <a href="../../../org/apache/juneau/PropertyStore.html#getContext-java.lang.Class-"><code>PropertyStore.getContext(Class)</code></a> or <a href="../../../org/apache/juneau/PropertyStore.html#getBeanContext--"><code>PropertyStore.getBeanContext()</code></a>.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> -<dd><code>cf</code> - The factory that created this context.</dd> +<dd><code>ps</code> - The property store that created this context.</dd> </dl> </li> </ul>
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1809c234/content/site/apidocs/org/apache/juneau/BeanMap.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/BeanMap.html b/content/site/apidocs/org/apache/juneau/BeanMap.html index af2c805..16b9dc3 100644 --- a/content/site/apidocs/org/apache/juneau/BeanMap.html +++ b/content/site/apidocs/org/apache/juneau/BeanMap.html @@ -564,7 +564,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i Person p = <jk>new</jk> Person(); <jc>// Create a bean context and add the ISO8601 date-time swap</jc> - BeanContext beanContext = <jk>new</jk> BeanContext().addPojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>); + BeanContext beanContext = <jk>new</jk> BeanContext().pojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>); <jc>// Wrap our bean in a bean map</jc> BeanMap<Person> b = beanContext.forBean(p); @@ -635,7 +635,7 @@ implements <a href="../../../org/apache/juneau/Delegate.html" title="interface i p.setBirthDate(<jk>new</jk> Date(1, 2, 3, 4, 5, 6)); <jc>// Create a bean context and add the ISO8601 date-time swap</jc> - BeanContext beanContext = <jk>new</jk> BeanContext().addPojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>); + BeanContext beanContext = <jk>new</jk> BeanContext().pojoSwaps(DateSwap.ISO8601DT.<jk>class</jk>); <jc>// Wrap our bean in a bean map</jc> BeanMap<Person> b = beanContext.forBean(p); http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1809c234/content/site/apidocs/org/apache/juneau/Context.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/Context.html b/content/site/apidocs/org/apache/juneau/Context.html index 8fd367c..a662126 100644 --- a/content/site/apidocs/org/apache/juneau/Context.html +++ b/content/site/apidocs/org/apache/juneau/Context.html @@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab"; <div class="subNav"> <ul class="navList"> <li><a href="../../../org/apache/juneau/ConfigException.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev Class</span></a></li> -<li><a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> +<li><a href="../../../org/apache/juneau/CoreObject.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/apache/juneau/Context.html" target="_top">Frames</a></li> @@ -108,7 +108,7 @@ var activeTableTab = "activeTableTab"; <li class="blockList"> <dl> <dt>Direct Known Subclasses:</dt> -<dd><a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau">BeanContext</a>, <a href="../../../org/apache/juneau/rest/RestServletContext.html" title="class in org.apache.juneau.rest">RestServletContext</a>, <a href="../../../org/apache/juneau/svl/VarResolverContext.html" title="class in org.apache.juneau.svl">VarResolverContext</a></dd> +<dd><a href="../../../org/apache/juneau/BeanContext.html" title="class in org.apache.juneau">BeanContext</a>, <a href="../../../org/apache/juneau/rest/RestContext.html" title="class in org.apache.juneau.rest">RestContext</a></dd> </dl> <hr> <br> @@ -116,15 +116,15 @@ var activeTableTab = "activeTableTab"; extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre> <div class="block">A reusable stateless thread-safe read-only configuration, typically used for creating one-time use <a href="../../../org/apache/juneau/Session.html" title="class in org.apache.juneau"><code>Session</code></a> objects. <p> - Contexts are created through the <a href="../../../org/apache/juneau/ContextFactory.html#getContext-java.lang.Class-"><code>ContextFactory.getContext(Class)</code></a> method. + Contexts are created through the <a href="../../../org/apache/juneau/PropertyStore.html#getContext-java.lang.Class-"><code>PropertyStore.getContext(Class)</code></a> method. <p> - Subclasses MUST implement a constructor method that takes in a <a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau"><code>ContextFactory</code></a> parameter. + Subclasses MUST implement a constructor method that takes in a <a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau"><code>PropertyStore</code></a> parameter. Besides that restriction, a context object can do anything you desire. However, it MUST be thread-safe and all fields should be declared final to prevent modification. It should NOT be used for storing temporary or state information.</div> <dl> <dt><span class="seeLabel">See Also:</span></dt> -<dd><a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau"><code>ContextFactory</code></a></dd> +<dd><a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau"><code>PropertyStore</code></a></dd> </dl> </li> </ul> @@ -144,7 +144,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html? <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> -<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/Context.html#Context-org.apache.juneau.ContextFactory-">Context</a></span>(<a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a> configFactory)</code> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/Context.html#Context-org.apache.juneau.PropertyStore-">Context</a></span>(<a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau">PropertyStore</a> propertyStore)</code> <div class="block">Constructor for this class.</div> </td> </tr> @@ -195,19 +195,19 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html? <!-- --> </a> <h3>Constructor Detail</h3> -<a name="Context-org.apache.juneau.ContextFactory-"> +<a name="Context-org.apache.juneau.PropertyStore-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Context</h4> -<pre>public <a href="../../../src-html/org/apache/juneau/Context.html#line.40">Context</a>(<a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a> configFactory)</pre> +<pre>public <a href="../../../src-html/org/apache/juneau/Context.html#line.40">Context</a>(<a href="../../../org/apache/juneau/PropertyStore.html" title="class in org.apache.juneau">PropertyStore</a> propertyStore)</pre> <div class="block">Constructor for this class. <p> Subclasses MUST implement the same constructor.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> -<dd><code>configFactory</code> - The factory that created this config.</dd> +<dd><code>propertyStore</code> - The factory that created this config.</dd> </dl> </li> </ul> @@ -275,7 +275,7 @@ public <a href="../../../org/apache/juneau/ObjectMap.html" title="class in <div class="subNav"> <ul class="navList"> <li><a href="../../../org/apache/juneau/ConfigException.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev Class</span></a></li> -<li><a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> +<li><a href="../../../org/apache/juneau/CoreObject.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/apache/juneau/Context.html" target="_top">Frames</a></li> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/1809c234/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html b/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html deleted file mode 100644 index 2670abd..0000000 --- a/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html +++ /dev/null @@ -1,369 +0,0 @@ -<!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 --> -<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>ContextFactory.PropertyMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title> -<link rel="stylesheet" type="text/css" href="../../../javadoc.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="ContextFactory.PropertyMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)"; - } - } - catch(err) { - } -//--> -var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10}; -var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 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/juneau/ContextFactory.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev Class</span></a></li> -<li><a href="../../../org/apache/juneau/CoreApi.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> -</ul> -<ul class="navList"> -<li><a href="../../../index.html?org/apache/juneau/ContextFactory.PropertyMap.html" target="_top">Frames</a></li> -<li><a href="ContextFactory.PropertyMap.html" target="_top">No Frames</a></li> -</ul> -<ul class="navList" id="allclasses_navbar_top"> -<li><a href="../../../allclasses-noframe.html">All 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: </li> -<li>Nested | </li> -<li>Field | </li> -<li>Constr | </li> -<li><a href="#method.summary">Method</a></li> -</ul> -<ul class="subNavList"> -<li>Detail: </li> -<li>Field | </li> -<li>Constr | </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.juneau</div> -<h2 title="Class ContextFactory.PropertyMap" class="title">Class ContextFactory.PropertyMap</h2> -</div> -<div class="contentContainer"> -<ul class="inheritance"> -<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> -<li> -<ul class="inheritance"> -<li>org.apache.juneau.ContextFactory.PropertyMap</li> -</ul> -</li> -</ul> -<div class="description"> -<ul class="blockList"> -<li class="blockList"> -<dl> -<dt>Enclosing class:</dt> -<dd><a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a></dd> -</dl> -<hr> -<br> -<pre>public class <a href="../../../src-html/org/apache/juneau/ContextFactory.html#line.796">ContextFactory.PropertyMap</a> -extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre> -<div class="block">Contains all the properties for a particular property prefix (e.g. <js>'BeanContext'</js>) - <p> - Instances of this map are immutable from outside this class. - <p> - The <a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#hashCode--"><code>hashCode()</code></a> and <a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#equals-java.lang.Object-"><code>equals(Object)</code></a> methods - can be used to compare with other property maps.</div> -</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"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </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="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#asMap--">asMap</a></span>()</code> -<div class="block">Convenience method for returning all values in this property map as a simple map.</div> -</td> -</tr> -<tr id="i1" class="rowColor"> -<td class="colFirst"><code>boolean</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#equals-java.lang.Object-">equals</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</code> </td> -</tr> -<tr id="i2" class="altColor"> -<td class="colFirst"><code><T> T</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#get-java.lang.String-java.lang.Class-T-">get</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><T> type, - T def)</code> -<div class="block">Returns the specified property as the specified class type.</div> -</td> -</tr> -<tr id="i3" class="rowColor"> -<td class="colFirst"><code><K,V> <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><K,V></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#getMap-java.lang.String-java.lang.Class-java.lang.Class-java.util.Map-">getMap</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><K> keyType, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><V> valueType, - <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><K,V> def)</code> -<div class="block">Returns the specified property as a map with the specified key and value types.</div> -</td> -</tr> -<tr id="i4" class="altColor"> -<td class="colFirst"><code>int</code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#hashCode--">hashCode</a></span>()</code> </td> -</tr> -<tr id="i5" class="rowColor"> -<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/ContextFactory.PropertyMap.html#toString--">toString</a></span>()</code> </td> -</tr> -</table> -<ul class="blockList"> -<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> -<!-- --> -</a> -<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> -<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-ex ternal=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> -</ul> -</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="get-java.lang.String-java.lang.Class-java.lang.Object-"> -<!-- --> -</a><a name="get-java.lang.String-java.lang.Class-T-"> -<!-- --> -</a> -<ul class="blockList"> -<li class="blockList"> -<h4>get</h4> -<pre>public <T> T <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.831">get</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><T> type, - T def)</pre> -<div class="block">Returns the specified property as the specified class type.</div> -<dl> -<dt><span class="paramLabel">Parameters:</span></dt> -<dd><code>name</code> - The property name.</dd> -<dd><code>type</code> - The type of object to convert the value to.</dd> -<dd><code>def</code> - The default value if the specified property is not set.</dd> -<dt><span class="returnLabel">Returns:</span></dt> -<dd>The property value.</dd> -</dl> -</li> -</ul> -<a name="getMap-java.lang.String-java.lang.Class-java.lang.Class-java.util.Map-"> -<!-- --> -</a> -<ul class="blockList"> -<li class="blockList"> -<h4>getMap</h4> -<pre>public <K,V> <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><K,V> <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.862">getMap</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><K> keyType, - <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a><V> valueType, - <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><K,V> def)</pre> -<div class="block">Returns the specified property as a map with the specified key and value types. - <p> - The map returned is an instance of <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedHashMap.html?is-external=true" title="class or interface in java.util"><code>LinkedHashMap</code></a>.</div> -<dl> -<dt><span class="paramLabel">Parameters:</span></dt> -<dd><code>name</code> - The property name.</dd> -<dd><code>keyType</code> - The class type of the keys of the map.</dd> -<dd><code>valueType</code> - The class type of the values of the map.</dd> -<dd><code>def</code> - The default value if the specified property is not set.</dd> -<dt><span class="returnLabel">Returns:</span></dt> -<dd>The property value.</dd> -</dl> -</li> -</ul> -<a name="asMap--"> -<!-- --> -</a> -<ul class="blockList"> -<li class="blockList"> -<h4>asMap</h4> -<pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>> <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.889">asMap</a>()</pre> -<div class="block">Convenience method for returning all values in this property map as a simple map. - <p> - Primarily useful for debugging.</div> -<dl> -<dt><span class="returnLabel">Returns:</span></dt> -<dd>A new <a href="http://docs.oracle.com/javase/7/docs/api/java/util/LinkedHashMap.html?is-external=true" title="class or interface in java.util"><code>LinkedHashMap</code></a> with all values in this property map.</dd> -</dl> -</li> -</ul> -<a name="hashCode--"> -<!-- --> -</a> -<ul class="blockList"> -<li class="blockList"> -<h4>hashCode</h4> -<pre>public int <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.962">hashCode</a>()</pre> -<dl> -<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> -<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a></code> in class <code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> -</dl> -</li> -</ul> -<a name="equals-java.lang.Object-"> -<!-- --> -</a> -<ul class="blockList"> -<li class="blockList"> -<h4>equals</h4> -<pre>public boolean <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.978">equals</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</pre> -<dl> -<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> -<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code> in class <code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> -</dl> -</li> -</ul> -<a name="toString--"> -<!-- --> -</a> -<ul class="blockListLast"> -<li class="blockList"> -<h4>toString</h4> -<pre>public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../src-html/org/apache/juneau/ContextFactory.PropertyMap.html#line.994">toString</a>()</pre> -<dl> -<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> -<dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code> in class <code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></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/juneau/ContextFactory.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev Class</span></a></li> -<li><a href="../../../org/apache/juneau/CoreApi.html" title="class in org.apache.juneau"><span class="typeNameLink">Next Class</span></a></li> -</ul> -<ul class="navList"> -<li><a href="../../../index.html?org/apache/juneau/ContextFactory.PropertyMap.html" target="_top">Frames</a></li> -<li><a href="ContextFactory.PropertyMap.html" target="_top">No Frames</a></li> -</ul> -<ul class="navList" id="allclasses_navbar_bottom"> -<li><a href="../../../allclasses-noframe.html">All 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: </li> -<li>Nested | </li> -<li>Field | </li> -<li>Constr | </li> -<li><a href="#method.summary">Method</a></li> -</ul> -<ul class="subNavList"> -<li>Detail: </li> -<li>Field | </li> -<li>Constr | </li> -<li><a href="#method.detail">Method</a></li> -</ul> -</div> -<a name="skip.navbar.bottom"> -<!-- --> -</a></div> -<!-- ======== END OF BOTTOM NAVBAR ======= --> -<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> -</body> -</html>
