blob: 1ab60f7e40225638fcd7f4a9b130e436f4cc1d20 [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 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Items (Apache Juneau 9.0-B1)</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="Items (Apache Juneau 9.0-B1)";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":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/dto/openapi3/Info.html" title="class in org.apache.juneau.dto.openapi3"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../../org/apache/juneau/dto/openapi3/License.html" title="class in org.apache.juneau.dto.openapi3"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/juneau/dto/openapi3/Items.html" target="_top">Frames</a></li>
<li><a href="Items.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><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&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.juneau.dto.openapi3</div>
<h2 title="Class Items" class="title">Class Items</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="https://docs.oracle.com/javase/8/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><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">org.apache.juneau.dto.openapi3.OpenApiElement</a></li>
<li>
<ul class="inheritance">
<li>org.apache.juneau.dto.openapi3.Items</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre><a href="../../../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation">@Bean</a>(<a href="../../../../../org/apache/juneau/annotation/Bean.html#properties--">properties</a>="type,format,items,collectionFormat,default,maximum,exclusiveMaximum,minimum,exclusiveMinimum,maxLength,minLength,pattern,maxItems,minItems,uniqueItems,enum,multipleOf,$ref,*")
public class <a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.57">Items</a>
extends <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></pre>
<div class="block">A limited subset of JSON-Schema's items object.
<p>
It is used by parameter definitions that are not located in "body".
<h5 class='section'>Example:</h5>
<p class='bcode w800'>
<jc>// Construct using SwaggerBuilder.</jc>
Items x = <jsm>items</jsm>(<js>"string"</js>).minLength(2);
<jc>// Serialize using JsonSerializer.</jc>
String json = JsonSerializer.<jsf>DEFAULT</jsf>.toString(x);
<jc>// Or just use toString() which does the same as above.</jc>
String json = x.toString();
</p>
<p class='bcode w800'>
<jc>// Output</jc>
{
<js>"type"</js>: <js>"string"</js>,
<js>"minLength"</js>: 2
}
</p></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<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/dto/openapi3/Items.html#Items--">Items</a></span>()</code>
<div class="block">Default constructor.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#Items-org.apache.juneau.dto.openapi3.Items-">Items</a></span>(<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;copyFrom)</code>
<div class="block">Copy constructor.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== 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="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete 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/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#addEnum-java.lang.Object...-">addEnum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</code>
<div class="block">Adds one or more values to the <property>enum</property> property.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#copy--">copy</a></span>()</code>
<div class="block">Make a deep copy of this object.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#get-java.lang.String-java.lang.Class-">get</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;property,
<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;T&gt;&nbsp;type)</code>
<div class="block">Generic property getter.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getCollectionFormat--">getCollectionFormat</a></span>()</code>
<div class="block">Bean property getter: <property>collectionFormat</property>.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/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/dto/openapi3/Items.html#getDefault--">getDefault</a></span>()</code>
<div class="block">Bean property getter: <property>default</property>.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getEnum--">getEnum</a></span>()</code>
<div class="block">Bean property getter: <property>enum</property>.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getExclusiveMaximum--">getExclusiveMaximum</a></span>()</code>
<div class="block">Bean property getter: <property>exclusiveMaximum</property>.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getExclusiveMinimum--">getExclusiveMinimum</a></span>()</code>
<div class="block">Bean property getter: <property>exclusiveMinimum</property>.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getFormat--">getFormat</a></span>()</code>
<div class="block">Bean property getter: <property>format</property>.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getItems--">getItems</a></span>()</code>
<div class="block">Bean property getter: <property>items</property>.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMaximum--">getMaximum</a></span>()</code>
<div class="block">Bean property getter: <property>maximum</property>.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMaxItems--">getMaxItems</a></span>()</code>
<div class="block">Bean property getter: <property>maxItems</property>.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMaxLength--">getMaxLength</a></span>()</code>
<div class="block">Bean property getter: <property>maxLength</property>.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMinimum--">getMinimum</a></span>()</code>
<div class="block">Bean property getter: <property>minimum</property>.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMinItems--">getMinItems</a></span>()</code>
<div class="block">Bean property getter: <property>minItems</property>.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMinLength--">getMinLength</a></span>()</code>
<div class="block">Bean property getter: <property>minLength</property>.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getMultipleOf--">getMultipleOf</a></span>()</code>
<div class="block">Bean property getter: <property>multipleOf</property>.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code><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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getPattern--">getPattern</a></span>()</code>
<div class="block">Bean property getter: <property>pattern</property>.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code><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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getRef--">getRef</a></span>()</code>
<div class="block">Bean property getter: <property>$ref</property>.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code><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></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getType--">getType</a></span>()</code>
<div class="block">Bean property getter: <property>type</property>.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#getUniqueItems--">getUniqueItems</a></span>()</code>
<div class="block">Bean property getter: <property>uniqueItems</property>.</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<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>&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#keySet--">keySet</a></span>()</code>
<div class="block">Returns all the keys on this element.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#ref-java.lang.Object-">ref</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
<div class="block">Same as <a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setRef-java.lang.Object-"><code>setRef(Object)</code></a>.</div>
</td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#resolveRefs-org.apache.juneau.dto.swagger.Swagger-java.util.Deque-int-">resolveRefs</a></span>(<a href="../../../../../org/apache/juneau/dto/swagger/Swagger.html" title="class in org.apache.juneau.dto.swagger">Swagger</a>&nbsp;swagger,
<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true" title="class or interface in java.util">Deque</a>&lt;<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>&gt;&nbsp;refStack,
int&nbsp;maxDepth)</code>
<div class="block">Resolves any <js>"$ref"</js> attributes in this element.</div>
</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#set-java.lang.String-java.lang.Object-">set</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;property,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
<div class="block">Generic property setter.</div>
</td>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setCollectionFormat-java.lang.String-">setCollectionFormat</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;value)</code>
<div class="block">Bean property setter: <property>collectionFormat</property>.</div>
</td>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setDefault-java.lang.Object-">setDefault</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>default</property>.</div>
</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setEnum-java.util.Collection-">setEnum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;value)</code>
<div class="block">Bean property setter: <property>enum</property>.</div>
</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setEnum-java.lang.Object...-">setEnum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</code>
<div class="block">Adds one or more values to the <property>enum</property> property.</div>
</td>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setExclusiveMaximum-java.lang.Boolean-">setExclusiveMaximum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>exclusiveMaximum</property>.</div>
</td>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setExclusiveMinimum-java.lang.Boolean-">setExclusiveMinimum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>exclusiveMinimum</property>.</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setFormat-java.lang.String-">setFormat</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;value)</code>
<div class="block">Bean property setter: <property>format</property>.</div>
</td>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setItems-org.apache.juneau.dto.openapi3.Items-">setItems</a></span>(<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>items</property>.</div>
</td>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMaximum-java.lang.Number-">setMaximum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>maximum</property>.</div>
</td>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMaxItems-java.lang.Integer-">setMaxItems</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>maxItems</property>.</div>
</td>
</tr>
<tr id="i35" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMaxLength-java.lang.Integer-">setMaxLength</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>maxLength</property>.</div>
</td>
</tr>
<tr id="i36" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMinimum-java.lang.Number-">setMinimum</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>minimum</property>.</div>
</td>
</tr>
<tr id="i37" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMinItems-java.lang.Integer-">setMinItems</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>minItems</property>.</div>
</td>
</tr>
<tr id="i38" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMinLength-java.lang.Integer-">setMinLength</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>minLength</property>.</div>
</td>
</tr>
<tr id="i39" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setMultipleOf-java.lang.Number-">setMultipleOf</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>multipleOf</property>.</div>
</td>
</tr>
<tr id="i40" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setPattern-java.lang.String-">setPattern</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;value)</code>
<div class="block">Bean property setter: <property>pattern</property>.</div>
</td>
</tr>
<tr id="i41" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setRef-java.lang.Object-">setRef</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>$ref</property>.</div>
</td>
</tr>
<tr id="i42" class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setType-java.lang.String-">setType</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;value)</code>
<div class="block">Bean property setter: <property>type</property>.</div>
</td>
</tr>
<tr id="i43" class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setUniqueItems-java.lang.Boolean-">setUniqueItems</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</code>
<div class="block">Bean property setter: <property>uniqueItems</property>.</div>
</td>
</tr>
<tr id="i44" class="altColor">
<td class="colFirst"><code>protected <a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#strict--">strict</a></span>()</code>
<div class="block">Sets strict mode on this bean.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.juneau.dto.openapi3.OpenApiElement">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.apache.juneau.dto.openapi3.<a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></h3>
<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#asMap--">asMap</a>, <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#extraKeys--">extraKeys</a>, <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#get-java.lang.String-">get</a>, <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#isStrict--">isStrict</a>, <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#strict-java.lang.Object-">strict</a>, <a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#toString--">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/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">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Items--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Items</h4>
<pre>public&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.88">Items</a>()</pre>
<div class="block">Default constructor.</div>
</li>
</ul>
<a name="Items-org.apache.juneau.dto.openapi3.Items-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Items</h4>
<pre>public&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.95">Items</a>(<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;copyFrom)</pre>
<div class="block">Copy constructor.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>copyFrom</code> - The object to copy.</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="copy--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>copy</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.123">copy</a>()</pre>
<div class="block">Make a deep copy of this object.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>A deep copy of this object.</dd>
</dl>
</li>
</ul>
<a name="strict--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>strict</h4>
<pre>protected&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.129">strict</a>()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#strict--">OpenApiElement</a></code></span></div>
<div class="block">Sets strict mode on this bean.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#strict--">strict</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getType--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getType</h4>
<pre>public&nbsp;<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;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.142">getType</a>()</pre>
<div class="block">Bean property getter: <property>type</property>.
<p>
The internal type of the array.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setType-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setType</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.165">setType</a>(<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;value)</pre>
<div class="block">Bean property setter: <property>type</property>.
<p>
The internal type of the array.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Valid values:
<ul>
<li><js>"string"</js>
<li><js>"number"</js>
<li><js>"integer"</js>
<li><js>"boolean"</js>
<li><js>"array"</js>
</ul>
<br>Property value is required.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getFormat--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFormat</h4>
<pre>public&nbsp;<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;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.182">getFormat</a>()</pre>
<div class="block">Bean property getter: <property>format</property>.
<p>
The extending format for the previously mentioned <code>type</code>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setFormat-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setFormat</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.197">setFormat</a>(<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;value)</pre>
<div class="block">Bean property setter: <property>format</property>.
<p>
The extending format for the previously mentioned <code>type</code>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getItems--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getItems</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.210">getItems</a>()</pre>
<div class="block">Bean property getter: <property>items</property>.
<p>
Describes the type of items in the array.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setItems-org.apache.juneau.dto.openapi3.Items-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setItems</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.226">setItems</a>(<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>items</property>.
<p>
Describes the type of items in the array.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Property value is required if <code>type</code> is <js>"array"</js>.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getCollectionFormat--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCollectionFormat</h4>
<pre>public&nbsp;<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;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.239">getCollectionFormat</a>()</pre>
<div class="block">Bean property getter: <property>collectionFormat</property>.
<p>
Determines the format of the array if type array is used.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setCollectionFormat-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCollectionFormat</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.261">setCollectionFormat</a>(<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;value)</pre>
<div class="block">Bean property setter: <property>collectionFormat</property>.
<p>
Determines the format of the array if type array is used.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Valid values:
<ul>
<li><js>"csv"</js> (default) - comma separated values <code>foo,bar</code>.
<li><js>"ssv"</js> - space separated values <code>foo bar</code>.
<li><js>"tsv"</js> - tab separated values <code>foo\tbar</code>.
<li><js>"pipes"</js> - pipe separated values <code>foo|bar</code>.
</ul>
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getDefault--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefault</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.287">getDefault</a>()</pre>
<div class="block">Bean property getter: <property>default</property>.
<p>
Declares the value of the item that the server will use if none is provided.
<h5 class='section'>Notes:</h5>
<ul class='spaced-list'>
<li>
<js>"default"</js> has no meaning for required items.
<li>
Unlike JSON Schema this value MUST conform to the defined <code>type</code> for the data type.
</ul></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setDefault-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDefault</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.310">setDefault</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>default</property>.
<p>
Declares the value of the item that the server will use if none is provided.
<h5 class='section'>Notes:</h5>
<ul class='spaced-list'>
<li>
<js>"default"</js> has no meaning for required items.
<li>
Unlike JSON Schema this value MUST conform to the defined <code>type</code> for the data type.
</ul></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMaximum--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMaximum</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.320">getMaximum</a>()</pre>
<div class="block">Bean property getter: <property>maximum</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMaximum-java.lang.Number-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaximum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.332">setMaximum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>maximum</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getExclusiveMaximum--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExclusiveMaximum</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.342">getExclusiveMaximum</a>()</pre>
<div class="block">Bean property getter: <property>exclusiveMaximum</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setExclusiveMaximum-java.lang.Boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExclusiveMaximum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.354">setExclusiveMaximum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>exclusiveMaximum</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMinimum--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinimum</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.364">getMinimum</a>()</pre>
<div class="block">Bean property getter: <property>minimum</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMinimum-java.lang.Number-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinimum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.376">setMinimum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>minimum</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getExclusiveMinimum--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExclusiveMinimum</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.386">getExclusiveMinimum</a>()</pre>
<div class="block">Bean property getter: <property>exclusiveMinimum</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setExclusiveMinimum-java.lang.Boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExclusiveMinimum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.398">setExclusiveMinimum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>exclusiveMinimum</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMaxLength--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMaxLength</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.408">getMaxLength</a>()</pre>
<div class="block">Bean property getter: <property>maxLength</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMaxLength-java.lang.Integer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaxLength</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.420">setMaxLength</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>maxLength</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMinLength--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinLength</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.430">getMinLength</a>()</pre>
<div class="block">Bean property getter: <property>minLength</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMinLength-java.lang.Integer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinLength</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.442">setMinLength</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>minLength</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getPattern--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPattern</h4>
<pre>public&nbsp;<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;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.452">getPattern</a>()</pre>
<div class="block">Bean property getter: <property>pattern</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setPattern-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPattern</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.467">setPattern</a>(<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;value)</pre>
<div class="block">Bean property setter: <property>pattern</property>.
<p>
This string SHOULD be a valid regular expression.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMaxItems--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMaxItems</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.477">getMaxItems</a>()</pre>
<div class="block">Bean property getter: <property>maxItems</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMaxItems-java.lang.Integer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaxItems</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.489">setMaxItems</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>maxItems</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMinItems--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinItems</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.499">getMinItems</a>()</pre>
<div class="block">Bean property getter: <property>minItems</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMinItems-java.lang.Integer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinItems</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.511">setMinItems</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>minItems</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getUniqueItems--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUniqueItems</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.521">getUniqueItems</a>()</pre>
<div class="block">Bean property getter: <property>uniqueItems</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setUniqueItems-java.lang.Boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUniqueItems</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.533">setUniqueItems</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>uniqueItems</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getEnum--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEnum</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.543">getEnum</a>()</pre>
<div class="block">Bean property getter: <property>enum</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setEnum-java.util.Collection-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEnum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.555">setEnum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&gt;&nbsp;value)</pre>
<div class="block">Bean property setter: <property>enum</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="addEnum-java.lang.Object...-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addEnum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.568">addEnum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
<div class="block">Adds one or more values to the <property>enum</property> property.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>values</code> - The values to add to this property.
<br>Ignored if <jk>null</jk>.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="setEnum-java.lang.Object...-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEnum</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.596">setEnum</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;values)</pre>
<div class="block">Adds one or more values to the <property>enum</property> property.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>values</code> - The values to add to this property.
<br>Valid types:
<ul>
<li><code>Object</code>
<li><code>Collection&lt;Object&gt;</code>
<li><code>String</code> - JSON array representation of <code>Collection&lt;Object&gt;</code>
<h5 class='figure'>Example:</h5>
<p class='bcode w800'>
_enum(<js>"['foo','bar']"</js>);
</p>
<li><code>String</code> - Individual values
<h5 class='figure'>Example:</h5>
<p class='bcode w800'>
_enum(<js>"foo"</js>, <js>"bar"</js>);
</p>
</ul>
<br>Ignored if <jk>null</jk>.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getMultipleOf--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMultipleOf</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.606">getMultipleOf</a>()</pre>
<div class="block">Bean property getter: <property>multipleOf</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setMultipleOf-java.lang.Number-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMultipleOf</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.618">setMultipleOf</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>multipleOf</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="getRef--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRef</h4>
<pre><a href="../../../../../org/apache/juneau/annotation/Beanp.html" title="annotation in org.apache.juneau.annotation">@Beanp</a>(<a href="../../../../../org/apache/juneau/annotation/Beanp.html#value--">value</a>="$ref")
public&nbsp;<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;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.629">getRef</a>()</pre>
<div class="block">Bean property getter: <property>$ref</property>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if it is not set.</dd>
</dl>
</li>
</ul>
<a name="setRef-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRef</h4>
<pre><a href="../../../../../org/apache/juneau/annotation/Beanp.html" title="annotation in org.apache.juneau.annotation">@Beanp</a>(<a href="../../../../../org/apache/juneau/annotation/Beanp.html#value--">value</a>="$ref")
public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.642">setRef</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</pre>
<div class="block">Bean property setter: <property>$ref</property>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="ref-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ref</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.655">ref</a>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</pre>
<div class="block">Same as <a href="../../../../../org/apache/juneau/dto/openapi3/Items.html#setRef-java.lang.Object-"><code>setRef(Object)</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - The new value for this property.
<br>Can be <jk>null</jk> to unset the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="get-java.lang.String-java.lang.Class-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>get</h4>
<pre>public&nbsp;&lt;T&gt;&nbsp;T&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.664">get</a>(<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;property,
<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;T&gt;&nbsp;type)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#get-java.lang.String-java.lang.Class-">OpenApiElement</a></code></span></div>
<div class="block">Generic property getter.
<p>
Can be used to retrieve non-standard Swagger fields such as <js>"$ref"</js>.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#get-java.lang.String-java.lang.Class-">get</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>property</code> - The property name to retrieve.</dd>
<dd><code>type</code> - The datatype to cast the value to.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The property value, or <jk>null</jk> if the property does not exist or is not set.</dd>
</dl>
</li>
</ul>
<a name="set-java.lang.String-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>set</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.691">set</a>(<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;property,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#set-java.lang.String-java.lang.Object-">OpenApiElement</a></code></span></div>
<div class="block">Generic property setter.
<p>
Can be used to set non-standard Swagger fields such as <js>"$ref"</js>.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#set-java.lang.String-java.lang.Object-">set</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></code></dd>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>property</code> - The property name to set.</dd>
<dd><code>value</code> - The new value for the property.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object</dd>
</dl>
</li>
</ul>
<a name="keySet--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>keySet</h4>
<pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a>&lt;<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>&gt;&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.720">keySet</a>()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#keySet--">OpenApiElement</a></code></span></div>
<div class="block">Returns all the keys on this element.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html#keySet--">keySet</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../org/apache/juneau/dto/openapi3/OpenApiElement.html" title="class in org.apache.juneau.dto.openapi3">OpenApiElement</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>All the keys on this element.
<br>Never <jk>null</jk>.</dd>
</dl>
</li>
</ul>
<a name="resolveRefs-org.apache.juneau.dto.swagger.Swagger-java.util.Deque-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>resolveRefs</h4>
<pre>public&nbsp;<a href="../../../../../org/apache/juneau/dto/openapi3/Items.html" title="class in org.apache.juneau.dto.openapi3">Items</a>&nbsp;<a href="../../../../../src-html/org/apache/juneau/dto/openapi3/Items.html#line.757">resolveRefs</a>(<a href="../../../../../org/apache/juneau/dto/swagger/Swagger.html" title="class in org.apache.juneau.dto.swagger">Swagger</a>&nbsp;swagger,
<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true" title="class or interface in java.util">Deque</a>&lt;<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>&gt;&nbsp;refStack,
int&nbsp;maxDepth)</pre>
<div class="block">Resolves any <js>"$ref"</js> attributes in this element.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>swagger</code> - The swagger document containing the definitions.</dd>
<dd><code>refStack</code> - Keeps track of previously-visited references so that we don't cause recursive loops.</dd>
<dd><code>maxDepth</code> - The maximum depth to resolve references.
<br>After that level is reached, <code>$ref</code> references will be left alone.
<br>Useful if you have very complex models and you don't want your swagger page to be overly-complex.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>This object with references resolved.
<br>May or may not be the same object.</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/dto/openapi3/Info.html" title="class in org.apache.juneau.dto.openapi3"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../../org/apache/juneau/dto/openapi3/License.html" title="class in org.apache.juneau.dto.openapi3"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/juneau/dto/openapi3/Items.html" target="_top">Frames</a></li>
<li><a href="Items.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><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</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 &#169; 2016&#x2013;2022 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>