1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2<!-- NewPage --> 3<html lang="en"> 4<head> 5<!-- Generated by javadoc (version 1.7.0_67) on Thu Jul 16 17:03:17 PDT 2015 --> 6<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> 7<title>JsonCreator (Jackson-annotations 2.6.0 API)</title> 8<meta name="date" content="2015-07-16"> 9<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> 10</head> 11<body> 12<script type="text/javascript"><!-- 13 if (location.href.indexOf('is-external=true') == -1) { 14 parent.document.title="JsonCreator (Jackson-annotations 2.6.0 API)"; 15 } 16//--> 17</script> 18<noscript> 19<div>JavaScript is disabled on your browser.</div> 20</noscript> 21<!-- ========= START OF TOP NAVBAR ======= --> 22<div class="topNav"><a name="navbar_top"> 23<!-- --> 24</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> 25<!-- --> 26</a> 27<ul class="navList" title="Navigation"> 28<li><a href="../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> 29<li class="navBarCell1Rev">Class</li> 30<li><a href="class-use/JsonCreator.html">Use</a></li> 31<li><a href="package-tree.html">Tree</a></li> 32<li><a href="../../../../deprecated-list.html">Deprecated</a></li> 33<li><a href="../../../../index-all.html">Index</a></li> 34<li><a href="../../../../help-doc.html">Help</a></li> 35</ul> 36</div> 37<div class="subNav"> 38<ul class="navList"> 39<li><a href="../../../../com/fasterxml/jackson/annotation/JsonBackReference.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Prev Class</span></a></li> 40<li><a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html" title="enum in com.fasterxml.jackson.annotation"><span class="strong">Next Class</span></a></li> 41</ul> 42<ul class="navList"> 43<li><a href="../../../../index.html?com/fasterxml/jackson/annotation/JsonCreator.html" target="_top">Frames</a></li> 44<li><a href="JsonCreator.html" target="_top">No Frames</a></li> 45</ul> 46<ul class="navList" id="allclasses_navbar_top"> 47<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> 48</ul> 49<div> 50<script type="text/javascript"><!-- 51 allClassesLink = document.getElementById("allclasses_navbar_top"); 52 if(window==top) { 53 allClassesLink.style.display = "block"; 54 } 55 else { 56 allClassesLink.style.display = "none"; 57 } 58 //--> 59</script> 60</div> 61<div> 62<ul class="subNavList"> 63<li>Summary: </li> 64<li>Required | </li> 65<li><a href="#annotation_type_optional_element_summary">Optional</a></li> 66</ul> 67<ul class="subNavList"> 68<li>Detail: </li> 69<li><a href="#annotation_type_element_detail">Element</a></li> 70</ul> 71</div> 72<a name="skip-navbar_top"> 73<!-- --> 74</a></div> 75<!-- ========= END OF TOP NAVBAR ========= --> 76<!-- ======== START OF CLASS DATA ======== --> 77<div class="header"> 78<div class="subTitle">com.fasterxml.jackson.annotation</div> 79<h2 title="Annotation Type JsonCreator" class="title">Annotation Type JsonCreator</h2> 80</div> 81<div class="contentContainer"> 82<div class="description"> 83<ul class="blockList"> 84<li class="blockList"> 85<hr> 86<br> 87<pre><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/Target.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>={<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#ANNOTATION_TYPE" title="class or interface in java.lang.annotation">ANNOTATION_TYPE</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#METHOD" title="class or interface in java.lang.annotation">METHOD</a>,<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/ElementType.html?is-external=true#CONSTRUCTOR" title="class or interface in java.lang.annotation">CONSTRUCTOR</a>}) 88<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/Retention.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#RUNTIME" title="class or interface in java.lang.annotation">RUNTIME</a>) 89public @interface <span class="strong">JsonCreator</span></pre> 90<div class="block">Marker annotation that can be used to define constructors and factory 91 methods as one to use for instantiating new instances of the associated 92 class. 93<p> 94 NOTE: when annotating creator methods (constructors, factory methods), 95 method must either be: 96<ul> 97 <li>Single-argument constructor/factory method without <a href="../../../../com/fasterxml/jackson/annotation/JsonProperty.html" title="annotation in com.fasterxml.jackson.annotation"><code>JsonProperty</code></a> 98 annotation for the argument: if so, this is so-called "delegate creator", 99 in which case Jackson first binds JSON into type of the argument, and 100 then calls creator 101 </li> 102 <li>Constructor/factory method where <b>every argument</b> is annotated with 103 either <a href="../../../../com/fasterxml/jackson/annotation/JsonProperty.html" title="annotation in com.fasterxml.jackson.annotation"><code>JsonProperty</code></a> or <a href="../../../../com/fasterxml/jackson/annotation/JacksonInject.html" title="annotation in com.fasterxml.jackson.annotation"><code>JacksonInject</code></a>, to indicate name 104 of property to bind to 105 </li> 106 </ul> 107 Also note that all <a href="../../../../com/fasterxml/jackson/annotation/JsonProperty.html" title="annotation in com.fasterxml.jackson.annotation"><code>JsonProperty</code></a> annotations must specify actual name 108 (NOT empty String for "default") unless you use one of extension modules 109 that can detect parameter name; this because default JDK versions before 8 110 have not been able to store and/or retrieve parameter names from bytecode. 111 But with JDK 8 (or using helper libraries such as Paranamer, or other JVM 112 languages like Scala or Kotlin), specifying name is optional. 113<p> 114 NOTE: As of Jackson 2.6, use of <a href="../../../../com/fasterxml/jackson/annotation/JsonProperty.html#required()"><code>JsonProperty.required()</code></a> is supported 115 for Creator methods (but not necessarily for regular setters or fields!).</div> 116</li> 117</ul> 118</div> 119<div class="summary"> 120<ul class="blockList"> 121<li class="blockList"> 122<!-- =========== ANNOTATION TYPE OPTIONAL MEMBER SUMMARY =========== --> 123<ul class="blockList"> 124<li class="blockList"><a name="annotation_type_optional_element_summary"> 125<!-- --> 126</a> 127<h3>Optional Element Summary</h3> 128<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Optional Element Summary table, listing optional elements, and an explanation"> 129<caption><span>Optional Elements</span><span class="tabEnd"> </span></caption> 130<tr> 131<th class="colFirst" scope="col">Modifier and Type</th> 132<th class="colLast" scope="col">Optional Element and Description</th> 133</tr> 134<tr class="altColor"> 135<td class="colFirst"><code><a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html" title="enum in com.fasterxml.jackson.annotation">JsonCreator.Mode</a></code></td> 136<td class="colLast"><code><strong><a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.html#mode()">mode</a></strong></code> 137<div class="block">Property that is used to indicate how argument(s) is/are bound for creator, 138 in cases there may be multiple alternatives.</div> 139</td> 140</tr> 141</table> 142</li> 143</ul> 144</li> 145</ul> 146</div> 147<div class="details"> 148<ul class="blockList"> 149<li class="blockList"> 150<!-- ============ ANNOTATION TYPE MEMBER DETAIL =========== --> 151<ul class="blockList"> 152<li class="blockList"><a name="annotation_type_element_detail"> 153<!-- --> 154</a> 155<h3>Element Detail</h3> 156<a name="mode()"> 157<!-- --> 158</a> 159<ul class="blockListLast"> 160<li class="blockList"> 161<h4>mode</h4> 162<pre>public abstract <a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html" title="enum in com.fasterxml.jackson.annotation">JsonCreator.Mode</a> mode</pre> 163<div class="block">Property that is used to indicate how argument(s) is/are bound for creator, 164 in cases there may be multiple alternatives. Currently the one case is that 165 of a single-argument creator method, for which both so-called "delegating" and 166 "property-based" bindings are possible: since 167 delegating mode can not be used for multi-argument creators, the only choice 168 there is "property-based" mode. 169 Check <a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html" title="enum in com.fasterxml.jackson.annotation"><code>JsonCreator.Mode</code></a> for more complete explanation of possible choices. 170<p> 171 Default value of <a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html#DEFAULT"><code>JsonCreator.Mode.DEFAULT</code></a> means that caller is to use standard 172 heuristics for choosing mode to use.</div> 173<dl><dt><span class="strong">Since:</span></dt> 174 <dd>2.5</dd></dl> 175<dl> 176<dt>Default:</dt> 177<dd>com.fasterxml.jackson.annotation.JsonCreator.Mode.DEFAULT</dd> 178</dl> 179</li> 180</ul> 181</li> 182</ul> 183</li> 184</ul> 185</div> 186</div> 187<!-- ========= END OF CLASS DATA ========= --> 188<!-- ======= START OF BOTTOM NAVBAR ====== --> 189<div class="bottomNav"><a name="navbar_bottom"> 190<!-- --> 191</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> 192<!-- --> 193</a> 194<ul class="navList" title="Navigation"> 195<li><a href="../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> 196<li class="navBarCell1Rev">Class</li> 197<li><a href="class-use/JsonCreator.html">Use</a></li> 198<li><a href="package-tree.html">Tree</a></li> 199<li><a href="../../../../deprecated-list.html">Deprecated</a></li> 200<li><a href="../../../../index-all.html">Index</a></li> 201<li><a href="../../../../help-doc.html">Help</a></li> 202</ul> 203</div> 204<div class="subNav"> 205<ul class="navList"> 206<li><a href="../../../../com/fasterxml/jackson/annotation/JsonBackReference.html" title="annotation in com.fasterxml.jackson.annotation"><span class="strong">Prev Class</span></a></li> 207<li><a href="../../../../com/fasterxml/jackson/annotation/JsonCreator.Mode.html" title="enum in com.fasterxml.jackson.annotation"><span class="strong">Next Class</span></a></li> 208</ul> 209<ul class="navList"> 210<li><a href="../../../../index.html?com/fasterxml/jackson/annotation/JsonCreator.html" target="_top">Frames</a></li> 211<li><a href="JsonCreator.html" target="_top">No Frames</a></li> 212</ul> 213<ul class="navList" id="allclasses_navbar_bottom"> 214<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> 215</ul> 216<div> 217<script type="text/javascript"><!-- 218 allClassesLink = document.getElementById("allclasses_navbar_bottom"); 219 if(window==top) { 220 allClassesLink.style.display = "block"; 221 } 222 else { 223 allClassesLink.style.display = "none"; 224 } 225 //--> 226</script> 227</div> 228<div> 229<ul class="subNavList"> 230<li>Summary: </li> 231<li>Required | </li> 232<li><a href="#annotation_type_optional_element_summary">Optional</a></li> 233</ul> 234<ul class="subNavList"> 235<li>Detail: </li> 236<li><a href="#annotation_type_element_detail">Element</a></li> 237</ul> 238</div> 239<a name="skip-navbar_bottom"> 240<!-- --> 241</a></div> 242<!-- ======== END OF BOTTOM NAVBAR ======= --> 243<p class="legalCopy"><small>Copyright © 2014–2015 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p> 244</body> 245</html> 246