BytecodeAnalysisIndex: support new/this/paramX contracts

IDEA-191302 Introduce new contract return values: this, new, paramX
This commit is contained in:
Tagir Valeev
2018-05-03 16:09:17 +07:00
parent b03d0dd380
commit 1aae19b0df
53 changed files with 2723 additions and 157 deletions

View File

@@ -199,6 +199,9 @@
</annotation>
</item>
<item name='java.awt.Component java.awt.Dimension getMaximumSize()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.awt.Component java.awt.Dimension getSize(java.awt.Dimension)'>
@@ -208,9 +211,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.awt.Component java.awt.Dimension minimumSize()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.awt.Component java.awt.Dimension preferredSize()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.awt.Component java.awt.Dimension size()'>
@@ -393,17 +402,17 @@
</item>
<item name='java.awt.Container java.awt.Component add(java.awt.Component)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val val="&quot;_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='java.awt.Container java.awt.Component add(java.awt.Component, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null,_-&gt;!null;null,_-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='java.awt.Container java.awt.Component add(java.lang.String, java.awt.Component)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='java.awt.Container java.awt.Component findComponentAt(int, int)'>
@@ -653,6 +662,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='java.awt.Window java.awt.Window[] getOwnerlessWindows()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.awt.Window java.lang.String constructComponentName()'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -662,6 +676,9 @@
</annotation>
</item>
<item name='java.awt.Window java.util.List&lt;java.awt.Image&gt; getIconImages()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.awt.Window void adjustDecendantsOnParent(int)'>

View File

@@ -3,6 +3,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.beans.beancontext.BeanContextServicesSupport java.util.Iterator getCurrentServiceClasses()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.beans.beancontext.BeanContextServicesSupport java.util.Iterator getCurrentServiceSelectors(java.lang.Class)'>
@@ -45,6 +48,16 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='java.beans.beancontext.BeanContextServicesSupport.BCSSChild.BCSSCServiceClassRef java.util.Iterator cloneOfEntries()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.beans.beancontext.BeanContextServicesSupport.BCSSChild.BCSSCServiceClassRef java.util.Iterator entries()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.beans.beancontext.BeanContextServicesSupport.BCSSChild.BCSSCServiceRef BCSSCServiceRef(java.beans.beancontext.BeanContextServicesSupport.BCSSChild.BCSSCServiceClassRef, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>

View File

@@ -122,6 +122,7 @@
</item>
<item name='java.io.ByteArrayOutputStream byte[] toByteArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -164,6 +165,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.DataInputStream java.lang.String readUTF()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.DataInputStream void readFully(byte[]) 0'>
@@ -222,12 +226,18 @@
</annotation>
</item>
<item name='java.io.File java.io.File createTempFile(java.lang.String, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File java.io.File createTempFile(java.lang.String, java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File java.io.File createTempFile(java.lang.String, java.lang.String, java.io.File)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File java.io.File createTempFile(java.lang.String, java.lang.String, java.io.File) 0'>
@@ -282,9 +292,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.File java.net.URI toURI()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File java.net.URL toURL()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File void readObject(java.io.ObjectInputStream) 0'>
@@ -299,6 +315,9 @@
</annotation>
</item>
<item name='java.io.File.TempDirectory java.io.File generateFile(java.lang.String, java.lang.String, java.io.File)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.File.TempDirectory java.io.File generateFile(java.lang.String, java.lang.String, java.io.File) 0'>
@@ -440,6 +459,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.ObjectInputStream java.io.ObjectInputStream.GetField readFields()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.ObjectInputStream java.lang.Class&lt;?&gt; resolveProxyClass(java.lang.String[]) 0'>
@@ -450,6 +472,7 @@
</item>
<item name='java.io.ObjectInputStream java.lang.Object cloneArray(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -479,7 +502,7 @@
</item>
<item name='java.io.ObjectInputStream java.lang.Object resolveObject(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val name="value" val="&quot;_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -627,7 +650,7 @@
</item>
<item name='java.io.ObjectOutputStream java.lang.Object replaceObject(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val name="value" val="&quot;_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -791,6 +814,7 @@
</item>
<item name='java.io.PrintStream T requireNonNull(T, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -798,24 +822,39 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream append(java.lang.CharSequence)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream append(java.lang.CharSequence) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream append(java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream append(java.lang.CharSequence, int, int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream format(java.lang.String, java.lang.Object...)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream java.io.PrintStream format(java.util.Locale, java.lang.String, java.lang.Object...)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.PrintStream void ensureOpen()'>
@@ -848,6 +887,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.RandomAccessFile java.lang.String readUTF()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.RandomAccessFile void readFully(byte[]) 0'>
@@ -912,15 +954,24 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.Writer java.io.Writer append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.Writer java.io.Writer append(java.lang.CharSequence)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.Writer java.io.Writer append(java.lang.CharSequence) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.io.Writer java.io.Writer append(java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.io.Writer java.io.Writer append(java.lang.CharSequence, int, int) 0'>

View File

@@ -78,6 +78,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder append(java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder append(java.lang.Object) 0'>
@@ -113,12 +116,18 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, char[]) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, char[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, char[], int, int) 1'>
@@ -128,12 +137,18 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, java.lang.Object) 1'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder insert(int, java.lang.String) 1'>
@@ -146,6 +161,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.AbstractStringBuilder reverse()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.AbstractStringBuilder java.lang.String substring(int, int)'>
@@ -510,6 +528,7 @@
</item>
<item name='java.lang.Character char[] toChars(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -647,6 +666,7 @@
</item>
<item name='java.lang.Character java.lang.String toString(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -723,7 +743,7 @@
</item>
<item name='java.lang.Class T cast(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val val="&quot;_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='java.lang.Class T newInstance()'>
@@ -764,6 +784,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.Class java.lang.Class&lt;? extends U&gt; asSubclass(java.lang.Class&lt;U&gt;)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.Class java.lang.Class&lt;? extends U&gt; asSubclass(java.lang.Class&lt;U&gt;) 0'>
@@ -965,6 +988,11 @@
<item name='java.lang.ClassLoader java.lang.String findLibrary(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.ClassLoader java.lang.String[] initializePath(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.lang.ClassLoader java.lang.String[] initializePath(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -999,6 +1027,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.ClassLoader java.util.Enumeration&lt;java.net.URL&gt; getResources(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.ClassLoader void checkClassLoaderPermission(java.lang.ClassLoader, java.lang.Class&lt;?&gt;) 1'>
@@ -1134,6 +1165,7 @@
</item>
<item name='java.lang.Double java.lang.Double valueOf(double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1373,6 +1405,7 @@
</item>
<item name='java.lang.Float java.lang.Float valueOf(float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1642,6 +1675,7 @@
</item>
<item name='java.lang.Iterable java.util.Iterator&lt;T&gt; iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -1942,6 +1976,7 @@
</item>
<item name='java.lang.NumberFormatException java.lang.NumberFormatException forInputString(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2267,6 +2302,7 @@
</item>
<item name='java.lang.String char[] toCharArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2380,6 +2416,7 @@
</item>
<item name='java.lang.String java.lang.String copyValueOf(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2446,12 +2483,14 @@
</item>
<item name='java.lang.String java.lang.String valueOf(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.String java.lang.String valueOf(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2595,60 +2634,102 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(char[]) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(char[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.CharSequence)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.CharSequence) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.StringBuffer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(java.lang.StringBuffer) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer append(long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer appendCodePoint(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer delete(int, int)'>
@@ -2664,12 +2745,18 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, char[]) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, char[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, char[], int, int) 1'>
@@ -2691,15 +2778,24 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, java.lang.Object) 1'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer insert(int, java.lang.String) 1'>
@@ -2715,6 +2811,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer java.lang.StringBuffer reverse()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuffer void readObject(java.io.ObjectInputStream) 0'>
@@ -2783,66 +2882,111 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(char[]) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(char[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.CharSequence)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.CharSequence) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.StringBuffer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.StringBuffer) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.StringBuilder)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(java.lang.StringBuilder) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder append(long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder appendCodePoint(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder delete(int, int)'>
@@ -2852,18 +2996,27 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, char)'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, char[]) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, char[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, char[], int, int) 1'>
@@ -2885,6 +3038,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, java.lang.CharSequence, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, java.lang.Object)'>
@@ -2894,6 +3050,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder insert(int, java.lang.String) 1'>
@@ -2909,6 +3068,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder java.lang.StringBuilder reverse()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.StringBuilder void readObject(java.io.ObjectInputStream) 0'>
@@ -2977,6 +3139,7 @@
</item>
<item name='java.lang.Thread java.lang.String getName()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2987,6 +3150,11 @@
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.Thread java.util.Map&lt;java.lang.Thread,java.lang.StackTraceElement[]&gt; getAllStackTraces()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.lang.Thread long getId()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -3030,6 +3198,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.ThreadLocal java.lang.ThreadLocal.ThreadLocalMap createInheritedMap(java.lang.ThreadLocal.ThreadLocalMap)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.ThreadLocal java.lang.ThreadLocal.ThreadLocalMap createInheritedMap(java.lang.ThreadLocal.ThreadLocalMap) 0'>

View File

@@ -3,6 +3,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.BoundMethodHandle java.lang.Object internalValues()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.BoundMethodHandle java.lang.invoke.MethodHandle dropArguments(java.lang.invoke.MethodType, int, int) 0'>
@@ -46,6 +49,11 @@
<item name='java.lang.invoke.BoundMethodHandle.Factory java.lang.invoke.BoundMethodHandle.SpeciesData speciesDataFromConcreteBMHClass(java.lang.Class&lt;? extends java.lang.invoke.BoundMethodHandle&gt;) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.BoundMethodHandle.Factory java.lang.invoke.MethodHandle linkConstructor(java.lang.invoke.MethodHandle)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='java.lang.invoke.BoundMethodHandle.Factory java.lang.invoke.MethodHandle linkConstructor(java.lang.invoke.MethodHandle) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -98,7 +106,7 @@
</item>
<item name='java.lang.invoke.BoundMethodHandle.SpeciesData java.lang.invoke.BoundMethodHandle.SpeciesData updateCache(java.lang.String, java.lang.invoke.BoundMethodHandle.SpeciesData)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='java.lang.invoke.BoundMethodHandle.Species_L java.lang.invoke.BoundMethodHandle.SpeciesData speciesData()'>
@@ -137,6 +145,7 @@
</item>
<item name='java.lang.invoke.CallSite java.lang.invoke.WrongMethodTypeException wrongTargetType(java.lang.invoke.MethodHandle, java.lang.invoke.MethodType)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -203,7 +212,7 @@
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.Object checkBase(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;!null-&gt;!null&quot;"/>
<val name="value" val="&quot;_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -239,7 +248,7 @@
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.Object nullCheck(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;!null-&gt;!null&quot;"/>
<val name="value" val="&quot;_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -261,6 +270,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.invoke.DirectMethodHandle make(java.lang.Class&lt;?&gt;, java.lang.invoke.MemberName)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.invoke.DirectMethodHandle make(java.lang.Class&lt;?&gt;, java.lang.invoke.MemberName) 1'>
@@ -273,6 +285,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.invoke.DirectMethodHandle makeAllocator(java.lang.invoke.MemberName)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.DirectMethodHandle java.lang.invoke.DirectMethodHandle makeAllocator(java.lang.invoke.MemberName) 0'>
@@ -410,6 +425,7 @@
</item>
<item name='java.lang.invoke.Invokers java.lang.invoke.WrongMethodTypeException newWrongMethodTypeException(java.lang.invoke.MethodType, java.lang.invoke.MethodType)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -581,11 +597,17 @@
<item name='java.lang.invoke.MemberName java.lang.Class&lt;?&gt; getFieldType()'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.invoke.MemberName java.lang.Class&lt;?&gt;[] getParameterTypes()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.lang.invoke.MemberName java.lang.ClassLoader getClassLoader()'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.lang.invoke.MemberName java.lang.IllegalAccessException makeAccessException(java.lang.String, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -637,6 +659,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MemberName java.lang.invoke.MemberName changeReferenceKind(byte, byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MemberName java.lang.invoke.MemberName.Factory getFactory()'>
@@ -675,9 +700,15 @@
</item>
<item name='java.lang.invoke.MemberName.Factory java.lang.invoke.MemberName[] newMemberBuffer(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
<item name='java.lang.invoke.MemberName.Factory java.util.List&lt;java.lang.invoke.MemberName&gt; getMembers(java.lang.Class&lt;?&gt;, java.lang.String, java.lang.Object, int, java.lang.Class&lt;?&gt;)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.lang.invoke.MemberName.Factory java.util.List&lt;java.lang.invoke.MemberName&gt; getMembers(java.lang.Class&lt;?&gt;, java.lang.String, java.lang.Object, int, java.lang.Class&lt;?&gt;) 2'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -728,6 +759,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandle java.lang.invoke.MethodHandle asFixedArity()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandle java.lang.invoke.MethodHandle asSpreader(java.lang.Class&lt;?&gt;, int) 0'>
@@ -809,6 +843,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandleImpl java.lang.invoke.MethodHandle makeVarargsCollector(java.lang.invoke.MethodHandle, java.lang.Class&lt;?&gt;)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandleImpl java.lang.invoke.MethodHandle makeVarargsCollector(java.lang.invoke.MethodHandle, java.lang.Class&lt;?&gt;) 0'>
@@ -1200,12 +1237,14 @@
</item>
<item name='java.lang.invoke.MethodHandleStatics java.lang.RuntimeException newIllegalArgumentException(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandleStatics java.lang.RuntimeException newIllegalArgumentException(java.lang.String, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1215,6 +1254,7 @@
</item>
<item name='java.lang.invoke.MethodHandleStatics java.lang.RuntimeException newIllegalArgumentException(java.lang.String, java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1227,12 +1267,14 @@
</item>
<item name='java.lang.invoke.MethodHandleStatics java.lang.RuntimeException newIllegalStateException(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandleStatics java.lang.RuntimeException newIllegalStateException(java.lang.String, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1294,6 +1336,7 @@
</item>
<item name='java.lang.invoke.MethodHandles java.lang.RuntimeException misMatchedTypes(java.lang.String, java.lang.invoke.MethodType, java.lang.invoke.MethodType)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1410,6 +1453,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandles java.lang.invoke.MethodHandles.Lookup lookup()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandles java.lang.invoke.MethodHandles.Lookup publicLookup()'>
@@ -1418,6 +1464,9 @@
</annotation>
</item>
<item name='java.lang.invoke.MethodHandles java.util.List&lt;java.lang.Class&lt;?&gt;&gt; copyTypes(java.util.List&lt;java.lang.Class&lt;?&gt;&gt;)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.lang.invoke.MethodHandles java.util.List&lt;java.lang.Class&lt;?&gt;&gt; copyTypes(java.util.List&lt;java.lang.Class&lt;?&gt;&gt;) 0'>
@@ -1712,6 +1761,7 @@
</item>
<item name='java.lang.invoke.MethodType java.lang.Class&lt;?&gt;[] parameterArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -1722,6 +1772,7 @@
</item>
<item name='java.lang.invoke.MethodType java.lang.IndexOutOfBoundsException newIndexOutOfBoundsException(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1812,6 +1863,7 @@
</item>
<item name='java.lang.invoke.MethodType java.util.List&lt;java.lang.Class&lt;?&gt;&gt; parameterList()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1862,6 +1914,7 @@
</item>
<item name='java.lang.invoke.MethodType.WeakInternSet java.lang.invoke.MethodType.WeakInternSet.Entry[] newTable(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -6,11 +6,13 @@
</item>
<item name='java.lang.reflect.Array java.lang.Object newInstance(java.lang.Class&lt;?&gt;, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
<item name='java.lang.reflect.Array java.lang.Object newInstance(java.lang.Class&lt;?&gt;, int...)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>

View File

@@ -205,6 +205,9 @@
</annotation>
</item>
<item name='java.net.InetAddress java.lang.Object readResolve()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.InetAddress java.lang.String getHostAddress()'>
@@ -267,12 +270,27 @@
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName(java.lang.String, java.net.InetAddress) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String, boolean) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String, java.net.InetAddress, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.net.InetAddress java.net.InetAddress[] getAllByName0(java.lang.String, java.net.InetAddress, boolean) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -295,6 +313,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.InetAddress.Cache java.net.InetAddress.Cache put(java.lang.String, java.net.InetAddress[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.InetAddress.Cache java.net.InetAddress.CacheEntry get(java.lang.String)'>
@@ -365,6 +386,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.net.ServerSocket java.net.Socket accept()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.ServerSocket void implAccept(java.net.Socket) 0'>
@@ -633,7 +657,7 @@
</item>
<item name='java.net.URI java.lang.String normalize(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val val="&quot;_-&gt;!null;_-&gt;null&quot;"/>
</annotation>
</item>
<item name='java.net.URI java.lang.String normalize(java.lang.String) 0'>
@@ -681,12 +705,18 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.net.URI java.net.URI create(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URI java.net.URI normalize(java.net.URI) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URI java.net.URI parseServerAuthority()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URI java.net.URI relativize(java.net.URI) 0'>
@@ -702,6 +732,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URI java.net.URL toURL()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URI long highMask(char, char)'>
@@ -912,9 +945,15 @@
</annotation>
</item>
<item name='java.net.URL java.net.URI toURI()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URL java.net.URL fabricateNewURL()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.net.URL void readObject(java.io.ObjectInputStream) 0'>

View File

@@ -391,6 +391,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.security.Security java.io.File securityPropFile(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.security.Security java.io.File securityPropFile(java.lang.String) 0'>

View File

@@ -195,6 +195,9 @@
</annotation>
</item>
<item name='java.sql.SQLException java.util.Iterator&lt;java.lang.Throwable&gt; iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.sql.Time Time(long)'>
@@ -229,6 +232,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.sql.Time java.sql.Time valueOf(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.sql.Time java.sql.Time valueOf(java.lang.String) 0'>
@@ -285,6 +291,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.sql.Timestamp java.sql.Timestamp valueOf(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.sql.Timestamp java.sql.Timestamp valueOf(java.lang.String) 0'>

View File

@@ -71,6 +71,9 @@
</annotation>
</item>
<item name='java.util.concurrent.atomic.AtomicIntegerFieldUpdater java.util.concurrent.atomic.AtomicIntegerFieldUpdater&lt;U&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicIntegerFieldUpdater java.util.concurrent.atomic.AtomicIntegerFieldUpdater&lt;U&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.String) 0'>
@@ -182,6 +185,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicLongFieldUpdater java.util.concurrent.atomic.AtomicLongFieldUpdater&lt;U&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicLongFieldUpdater java.util.concurrent.atomic.AtomicLongFieldUpdater&lt;U&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.String) 0'>
@@ -208,6 +214,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicLongFieldUpdater.LockedUpdater java.lang.RuntimeException accessCheckException(T)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicMarkableReference AtomicMarkableReference(V, boolean)'>
@@ -228,6 +237,7 @@
</item>
<item name='java.util.concurrent.atomic.AtomicMarkableReference.Pair java.util.concurrent.atomic.AtomicMarkableReference.Pair&lt;T&gt; of(T, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -290,6 +300,9 @@
</annotation>
</item>
<item name='java.util.concurrent.atomic.AtomicReferenceFieldUpdater java.util.concurrent.atomic.AtomicReferenceFieldUpdater&lt;U,W&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.Class&lt;W&gt;, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.atomic.AtomicReferenceFieldUpdater java.util.concurrent.atomic.AtomicReferenceFieldUpdater&lt;U,W&gt; newUpdater(java.lang.Class&lt;U&gt;, java.lang.Class&lt;W&gt;, java.lang.String) 0'>
@@ -360,6 +373,7 @@
</item>
<item name='java.util.concurrent.atomic.AtomicStampedReference.Pair java.util.concurrent.atomic.AtomicStampedReference.Pair&lt;T&gt; of(T, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -68,10 +68,33 @@
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.lang.Thread getFirstQueuedThread()'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.Collection&lt;java.lang.Thread&gt; getExclusiveQueuedThreads()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.Collection&lt;java.lang.Thread&gt; getQueuedThreads()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.Collection&lt;java.lang.Thread&gt; getSharedQueuedThreads()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.Collection&lt;java.lang.Thread&gt; getWaitingThreads(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.Collection&lt;java.lang.Thread&gt; getWaitingThreads(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.concurrent.locks.AbstractQueuedSynchronizer.Node addWaiter(java.util.concurrent.locks.AbstractQueuedSynchronizer.Node)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer java.util.concurrent.locks.AbstractQueuedSynchronizer.Node enq(java.util.concurrent.locks.AbstractQueuedSynchronizer.Node) 0'>
@@ -108,7 +131,15 @@
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject boolean isOwnedBy(java.util.concurrent.locks.AbstractQueuedSynchronizer) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject java.util.Collection&lt;java.lang.Thread&gt; getWaitingThreads()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject java.util.concurrent.locks.AbstractQueuedSynchronizer.Node addConditionWaiter()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject void doSignal(java.util.concurrent.locks.AbstractQueuedSynchronizer.Node) 0'>
@@ -176,6 +207,7 @@
</item>
<item name='java.util.concurrent.locks.ReentrantLock java.util.concurrent.locks.Condition newCondition()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -185,6 +217,7 @@
</item>
<item name='java.util.concurrent.locks.ReentrantLock.Sync java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject newCondition()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -267,6 +300,7 @@
</item>
<item name='java.util.concurrent.locks.ReentrantReadWriteLock.Sync java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject newCondition()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -275,6 +309,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.locks.ReentrantReadWriteLock.Sync.ThreadLocalHoldCounter java.util.concurrent.locks.ReentrantReadWriteLock.Sync.HoldCounter initialValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock)'>
@@ -296,6 +333,7 @@
</item>
<item name='java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock java.util.concurrent.locks.Condition newCondition()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -783,6 +783,9 @@
</annotation>
</item>
<item name='javax.swing.JTable java.awt.Dimension getIntercellSpacing()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable java.awt.Dimension getPreferredScrollableViewportSize()'>
@@ -800,6 +803,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable javax.swing.JScrollPane createScrollPaneForTable(javax.swing.JTable)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable javax.swing.JScrollPane createScrollPaneForTable(javax.swing.JTable) 0'>
@@ -956,17 +962,22 @@
</item>
<item name='javax.swing.JTable.AccessibleJTable.AccessibleTableHeader int[] getSelectedAccessibleColumns()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable.AccessibleJTable.AccessibleTableHeader int[] getSelectedAccessibleRows()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable.BooleanRenderer java.awt.Component getTableCellRendererComponent(javax.swing.JTable, java.lang.Object, boolean, boolean, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='javax.swing.JTable.BooleanRenderer java.awt.Component getTableCellRendererComponent(javax.swing.JTable, java.lang.Object, boolean, boolean, int, int) 0'>

View File

@@ -44,6 +44,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.collections.bag.AbstractMapBag java.lang.Object[] toArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.bag.AbstractMapBag java.lang.Object[] toArray(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -54,6 +59,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.AbstractMapBag java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.AbstractMapBag java.util.Map getMap()'>
@@ -120,6 +128,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.PredicatedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.PredicatedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag, org.apache.commons.collections.Predicate) 0'>
@@ -135,6 +146,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.PredicatedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.PredicatedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag, org.apache.commons.collections.Predicate) 0'>
@@ -160,10 +174,14 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.SynchronizedBag java.util.Set uniqueSet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.SynchronizedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -202,6 +220,7 @@
</item>
<item name='org.apache.commons.collections.bag.SynchronizedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -226,10 +245,14 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.TransformedBag java.util.Set uniqueSet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.TransformedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -258,6 +281,7 @@
</item>
<item name='org.apache.commons.collections.bag.TransformedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -295,6 +319,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.bag.TypedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.TypedBag org.apache.commons.collections.Bag decorate(org.apache.commons.collections.Bag, java.lang.Class) 0'>
@@ -309,6 +336,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.bag.TypedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bag.TypedSortedBag org.apache.commons.collections.SortedBag decorate(org.apache.commons.collections.SortedBag, java.lang.Class) 0'>

View File

@@ -25,6 +25,7 @@
</item>
<item name='org.apache.commons.collections.bidimap.AbstractDualBidiMap java.util.Iterator createEntrySetIterator(java.util.Iterator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -34,6 +35,7 @@
</item>
<item name='org.apache.commons.collections.bidimap.AbstractDualBidiMap java.util.Iterator createKeySetIterator(java.util.Iterator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -43,6 +45,7 @@
</item>
<item name='org.apache.commons.collections.bidimap.AbstractDualBidiMap java.util.Iterator createValuesIterator(java.util.Iterator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -57,6 +60,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.bidimap.AbstractDualBidiMap org.apache.commons.collections.MapIterator mapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.AbstractDualBidiMap void putAll(java.util.Map) 0'>
@@ -170,6 +176,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.bidimap.DualHashBidiMap org.apache.commons.collections.BidiMap createBidiMap(java.util.Map, java.util.Map, org.apache.commons.collections.BidiMap)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualHashBidiMap void readObject(java.io.ObjectInputStream) 0'>
@@ -188,21 +197,36 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap org.apache.commons.collections.BidiMap createBidiMap(java.util.Map, java.util.Map, org.apache.commons.collections.BidiMap)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap org.apache.commons.collections.BidiMap createBidiMap(java.util.Map, java.util.Map, org.apache.commons.collections.BidiMap) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap org.apache.commons.collections.OrderedMapIterator orderedMapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap void readObject(java.io.ObjectInputStream) 0'>
@@ -224,12 +248,21 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.bidimap.TreeBidiMap TreeBidiMap()'>
@@ -664,6 +697,7 @@
</item>
<item name='org.apache.commons.collections.bidimap.TreeBidiMap.View java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -30,6 +30,7 @@
</item>
<item name='org.apache.commons.collections.buffer.BlockingBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -39,6 +40,7 @@
</item>
<item name='org.apache.commons.collections.buffer.BlockingBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -64,12 +66,14 @@
</item>
<item name='org.apache.commons.collections.buffer.BoundedBuffer java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.buffer.BoundedBuffer org.apache.commons.collections.buffer.BoundedBuffer decorate(org.apache.commons.collections.Buffer, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -79,6 +83,7 @@
</item>
<item name='org.apache.commons.collections.buffer.BoundedBuffer org.apache.commons.collections.buffer.BoundedBuffer decorate(org.apache.commons.collections.Buffer, int, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -131,6 +136,7 @@
</item>
<item name='org.apache.commons.collections.buffer.BoundedFifoBuffer java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -166,6 +172,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.buffer.PredicatedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.buffer.PredicatedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, org.apache.commons.collections.Predicate) 0'>
@@ -247,6 +256,7 @@
</item>
<item name='org.apache.commons.collections.buffer.PriorityBuffer java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -269,6 +279,7 @@
</item>
<item name='org.apache.commons.collections.buffer.SynchronizedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -294,6 +305,7 @@
</item>
<item name='org.apache.commons.collections.buffer.TransformedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -315,6 +327,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.buffer.TypedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.buffer.TypedBuffer org.apache.commons.collections.Buffer decorate(org.apache.commons.collections.Buffer, java.lang.Class) 0'>
@@ -335,7 +350,7 @@
</item>
<item name='org.apache.commons.collections.buffer.UnboundedFifoBuffer boolean add(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;true&quot;"/>
<val val="&quot;_-&gt;true&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.buffer.UnboundedFifoBuffer boolean add(java.lang.Object) 0'>
@@ -358,6 +373,7 @@
</item>
<item name='org.apache.commons.collections.buffer.UnboundedFifoBuffer java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -24,6 +24,7 @@
</item>
<item name='org.apache.commons.collections.collection.AbstractCollectionDecorator java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -52,6 +53,11 @@
<item name='org.apache.commons.collections.collection.CompositeCollection boolean removeAll(java.util.Collection) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.CompositeCollection java.lang.Object[] toArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.collection.CompositeCollection java.lang.Object[] toArray(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -61,6 +67,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.collection.CompositeCollection java.util.Collection toCollection()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.CompositeCollection void addComposited(java.util.Collection[]) 0'>
@@ -76,6 +85,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.PredicatedCollection java.util.Collection decorate(java.util.Collection, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.PredicatedCollection java.util.Collection decorate(java.util.Collection, org.apache.commons.collections.Predicate) 0'>
@@ -107,6 +119,7 @@
</item>
<item name='org.apache.commons.collections.collection.SynchronizedCollection java.util.Collection decorate(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -116,6 +129,7 @@
</item>
<item name='org.apache.commons.collections.collection.SynchronizedCollection java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -132,6 +146,7 @@
</item>
<item name='org.apache.commons.collections.collection.TransformedCollection java.util.Collection decorate(java.util.Collection, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -142,6 +157,11 @@
<item name='org.apache.commons.collections.collection.TransformedCollection java.util.Collection decorate(java.util.Collection, org.apache.commons.collections.Transformer) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.TransformedCollection java.util.Collection transform(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.collection.TransformedCollection java.util.Collection transform(java.util.Collection) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -151,6 +171,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.collection.TypedCollection java.util.Collection decorate(java.util.Collection, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.collection.TypedCollection java.util.Collection decorate(java.util.Collection, java.lang.Class) 0'>
@@ -214,6 +237,7 @@
</item>
<item name='org.apache.commons.collections.collection.UnmodifiableBoundedCollection org.apache.commons.collections.BoundedCollection decorate(org.apache.commons.collections.BoundedCollection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -223,6 +247,7 @@
</item>
<item name='org.apache.commons.collections.collection.UnmodifiableBoundedCollection org.apache.commons.collections.BoundedCollection decorateUsing(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -22,6 +22,7 @@
</item>
<item name='org.apache.commons.collections.functors.AndPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -34,6 +35,7 @@
</item>
<item name='org.apache.commons.collections.functors.AndPredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -64,6 +66,7 @@
</item>
<item name='org.apache.commons.collections.functors.ChainedClosure org.apache.commons.collections.Closure getInstance(org.apache.commons.collections.Closure, org.apache.commons.collections.Closure)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -92,6 +95,7 @@
</item>
<item name='org.apache.commons.collections.functors.ChainedTransformer org.apache.commons.collections.Transformer getInstance(org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -136,7 +140,7 @@
</item>
<item name='org.apache.commons.collections.functors.ClosureTransformer java.lang.Object transform(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val val="&quot;_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.functors.ClosureTransformer org.apache.commons.collections.Closure getClosure()'>
@@ -146,6 +150,7 @@
</item>
<item name='org.apache.commons.collections.functors.ClosureTransformer org.apache.commons.collections.Transformer getInstance(org.apache.commons.collections.Closure)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -311,6 +316,7 @@
</item>
<item name='org.apache.commons.collections.functors.FactoryTransformer org.apache.commons.collections.Transformer getInstance(org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -383,6 +389,11 @@
<item name='org.apache.commons.collections.functors.FunctorUtils org.apache.commons.collections.Predicate[] copy(org.apache.commons.collections.Predicate[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.functors.FunctorUtils org.apache.commons.collections.Predicate[] validate(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.functors.FunctorUtils org.apache.commons.collections.Predicate[] validate(java.util.Collection) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -466,6 +477,7 @@
</item>
<item name='org.apache.commons.collections.functors.IfClosure org.apache.commons.collections.Closure getInstance(org.apache.commons.collections.Predicate, org.apache.commons.collections.Closure)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -478,6 +490,7 @@
</item>
<item name='org.apache.commons.collections.functors.IfClosure org.apache.commons.collections.Closure getInstance(org.apache.commons.collections.Predicate, org.apache.commons.collections.Closure, org.apache.commons.collections.Closure)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -513,6 +526,7 @@
</item>
<item name='org.apache.commons.collections.functors.InstanceofPredicate org.apache.commons.collections.Predicate getInstance(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -521,6 +535,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.functors.InstantiateFactory org.apache.commons.collections.Factory getInstance(java.lang.Class, java.lang.Class[], java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.functors.InstantiateFactory org.apache.commons.collections.Factory getInstance(java.lang.Class, java.lang.Class[], java.lang.Object[]) 0'>
@@ -560,6 +577,7 @@
</item>
<item name='org.apache.commons.collections.functors.InvokerTransformer org.apache.commons.collections.Transformer getInstance(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -568,6 +586,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.functors.InvokerTransformer org.apache.commons.collections.Transformer getInstance(java.lang.String, java.lang.Class[], java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.functors.InvokerTransformer org.apache.commons.collections.Transformer getInstance(java.lang.String, java.lang.Class[], java.lang.Object[]) 0'>
@@ -617,7 +638,7 @@
</item>
<item name='org.apache.commons.collections.functors.NOPTransformer java.lang.Object transform(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val name="value" val="&quot;_-&gt;param1&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -668,6 +689,7 @@
</item>
<item name='org.apache.commons.collections.functors.NotPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -677,6 +699,7 @@
</item>
<item name='org.apache.commons.collections.functors.NotPredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -691,6 +714,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsExceptionPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -700,6 +724,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsExceptionPredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -719,6 +744,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsFalsePredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -728,6 +754,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsFalsePredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -747,6 +774,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsTruePredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -756,6 +784,7 @@
</item>
<item name='org.apache.commons.collections.functors.NullIsTruePredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -785,6 +814,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.functors.OnePredicate org.apache.commons.collections.Predicate getInstance(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.functors.OnePredicate org.apache.commons.collections.Predicate getInstance(java.util.Collection) 0'>
@@ -805,6 +837,7 @@
</item>
<item name='org.apache.commons.collections.functors.OrPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -817,6 +850,7 @@
</item>
<item name='org.apache.commons.collections.functors.OrPredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -833,6 +867,7 @@
</item>
<item name='org.apache.commons.collections.functors.PredicateTransformer org.apache.commons.collections.Transformer getInstance(org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -967,6 +1002,7 @@
</item>
<item name='org.apache.commons.collections.functors.TransformedPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Transformer, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -979,6 +1015,7 @@
</item>
<item name='org.apache.commons.collections.functors.TransformedPredicate org.apache.commons.collections.Predicate[] getPredicates()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1014,6 +1051,7 @@
</item>
<item name='org.apache.commons.collections.functors.TransformerPredicate org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1065,6 +1103,7 @@
</item>
<item name='org.apache.commons.collections.functors.WhileClosure org.apache.commons.collections.Closure getInstance(org.apache.commons.collections.Predicate, org.apache.commons.collections.Closure, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -66,6 +66,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.keyvalue.DefaultKeyValue java.util.Map.Entry toMapEntry()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.keyvalue.DefaultMapEntry DefaultMapEntry(java.lang.Object, java.lang.Object)'>

View File

@@ -11,7 +11,7 @@
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList boolean addAll(int, java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;true&quot;"/>
<val val="&quot;_,_-&gt;true&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList boolean addAll(int, java.util.Collection) 1'>
@@ -51,28 +51,42 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList java.util.ListIterator createSubListListIterator(org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList java.util.ListIterator createSubListListIterator(org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList java.util.ListIterator listIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList java.util.ListIterator listIterator(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList org.apache.commons.collections.list.AbstractLinkedList.Node createHeaderNode()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList org.apache.commons.collections.list.AbstractLinkedList.Node createNode(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -138,6 +152,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList void checkModCount()'>
@@ -216,15 +233,24 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.CursorableLinkedList java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.CursorableLinkedList java.util.ListIterator createSubListListIterator(org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.CursorableLinkedList java.util.ListIterator createSubListListIterator(org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.CursorableLinkedList org.apache.commons.collections.list.CursorableLinkedList.Cursor cursor(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.CursorableLinkedList void addNode(org.apache.commons.collections.list.AbstractLinkedList.Node, org.apache.commons.collections.list.AbstractLinkedList.Node) 0'>
@@ -344,6 +370,7 @@
</item>
<item name='org.apache.commons.collections.list.FixedSizeList java.util.List decorate(java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -352,12 +379,21 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.FixedSizeList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.FixedSizeList java.util.ListIterator listIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.FixedSizeList java.util.ListIterator listIterator(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.FixedSizeList void add(int, java.lang.Object)'>
@@ -416,6 +452,7 @@
</item>
<item name='org.apache.commons.collections.list.GrowthList java.util.List decorate(java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -436,6 +473,7 @@
</item>
<item name='org.apache.commons.collections.list.LazyList java.util.List decorate(java.util.List, org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -447,6 +485,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.LazyList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.NodeCachingLinkedList boolean isCacheFull()'>
@@ -481,6 +522,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.PredicatedList java.util.List decorate(java.util.List, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.PredicatedList java.util.List decorate(java.util.List, org.apache.commons.collections.Predicate) 0'>
@@ -490,9 +534,15 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.PredicatedList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.PredicatedList java.util.ListIterator listIterator(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.PredicatedList.PredicatedListIterator PredicatedListIterator(java.util.ListIterator)'>
@@ -532,6 +582,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.list.SetUniqueList org.apache.commons.collections.list.SetUniqueList decorate(java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.SetUniqueList org.apache.commons.collections.list.SetUniqueList decorate(java.util.List) 0'>
@@ -580,6 +633,7 @@
</item>
<item name='org.apache.commons.collections.list.SynchronizedList java.util.List decorate(java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -593,6 +647,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.list.SynchronizedList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TransformedList TransformedList(java.util.List, org.apache.commons.collections.Transformer)'>
@@ -608,6 +665,7 @@
</item>
<item name='org.apache.commons.collections.list.TransformedList java.util.List decorate(java.util.List, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -624,9 +682,15 @@
</annotation>
</item>
<item name='org.apache.commons.collections.list.TransformedList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TransformedList java.util.ListIterator listIterator(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TransformedList.TransformedListIterator TransformedListIterator(java.util.ListIterator)'>
@@ -645,9 +709,15 @@
</annotation>
</item>
<item name='org.apache.commons.collections.list.TreeList java.lang.Object[] toArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TreeList java.util.ListIterator listIterator(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TreeList.AVLNode AVLNode(int, java.lang.Object, org.apache.commons.collections.list.TreeList.AVLNode, org.apache.commons.collections.list.TreeList.AVLNode)'>
@@ -744,6 +814,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.list.TypedList java.util.List decorate(java.util.List, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.TypedList java.util.List decorate(java.util.List, java.lang.Class) 0'>
@@ -839,6 +912,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.UnmodifiableList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.list.UnmodifiableList void add(int, java.lang.Object)'>

View File

@@ -109,6 +109,7 @@
</item>
<item name='org.apache.commons.collections.map.AbstractHashedMap org.apache.commons.collections.map.AbstractHashedMap.HashEntry createEntry(org.apache.commons.collections.map.AbstractHashedMap.HashEntry, int, java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -296,6 +297,7 @@
</item>
<item name='org.apache.commons.collections.map.AbstractInputCheckedMapDecorator.EntrySet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -309,6 +311,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractInputCheckedMapDecorator.EntrySetIterator java.lang.Object next()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractInputCheckedMapDecorator.MapEntry MapEntry(java.util.Map.Entry, org.apache.commons.collections.map.AbstractInputCheckedMapDecorator)'>
@@ -348,6 +353,7 @@
</item>
<item name='org.apache.commons.collections.map.AbstractLinkedMap org.apache.commons.collections.map.AbstractHashedMap.HashEntry createEntry(org.apache.commons.collections.map.AbstractHashedMap.HashEntry, int, java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -535,15 +541,27 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.map.AbstractReferenceMap java.util.Iterator createEntrySetIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractReferenceMap java.util.Iterator createKeySetIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractReferenceMap java.util.Iterator createValuesIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractReferenceMap org.apache.commons.collections.MapIterator mapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.AbstractReferenceMap org.apache.commons.collections.map.AbstractHashedMap.HashEntry createEntry(org.apache.commons.collections.map.AbstractHashedMap.HashEntry, int, java.lang.Object, java.lang.Object)'>
@@ -698,12 +716,27 @@
<item name='org.apache.commons.collections.map.CompositeMap java.lang.Object remove(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.map.CompositeMap java.util.Collection values()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.CompositeMap java.util.Map removeComposited(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;null-&gt;null&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.map.CompositeMap java.util.Set entrySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.CompositeMap java.util.Set keySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.DefaultedMap DefaultedMap(java.util.Map, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -714,6 +747,7 @@
</item>
<item name='org.apache.commons.collections.map.DefaultedMap java.util.Map decorate(java.util.Map, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -723,6 +757,7 @@
</item>
<item name='org.apache.commons.collections.map.DefaultedMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -735,6 +770,7 @@
</item>
<item name='org.apache.commons.collections.map.DefaultedMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -775,6 +811,7 @@
</item>
<item name='org.apache.commons.collections.map.FixedSizeMap java.util.Map decorate(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -820,6 +857,7 @@
</item>
<item name='org.apache.commons.collections.map.FixedSizeSortedMap java.util.SortedMap decorate(java.util.SortedMap)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -833,12 +871,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.FixedSizeSortedMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.FixedSizeSortedMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.FixedSizeSortedMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.FixedSizeSortedMap void clear()'>
@@ -875,6 +922,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.Flat3Map org.apache.commons.collections.map.AbstractHashedMap createDelegateMap()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.Flat3Map void putAll(java.util.Map) 0'>
@@ -928,6 +978,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.Flat3Map.EntrySetIterator java.lang.Object next()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.Flat3Map.EntrySetIterator java.lang.String toString()'>
@@ -1024,6 +1077,7 @@
</item>
<item name='org.apache.commons.collections.map.IdentityMap org.apache.commons.collections.map.AbstractHashedMap.HashEntry createEntry(org.apache.commons.collections.map.AbstractHashedMap.HashEntry, int, java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1120,6 +1174,7 @@
</item>
<item name='org.apache.commons.collections.map.LazyMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1132,6 +1187,7 @@
</item>
<item name='org.apache.commons.collections.map.LazyMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1172,6 +1228,7 @@
</item>
<item name='org.apache.commons.collections.map.LazySortedMap java.util.SortedMap decorate(java.util.SortedMap, org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1184,6 +1241,7 @@
</item>
<item name='org.apache.commons.collections.map.LazySortedMap java.util.SortedMap decorate(java.util.SortedMap, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1200,12 +1258,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.LazySortedMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.LazySortedMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.LazySortedMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.LinkedMap LinkedMap(java.util.Map) 0'>
@@ -1213,6 +1280,7 @@
</item>
<item name='org.apache.commons.collections.map.LinkedMap java.util.List asList()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1285,6 +1353,7 @@
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap java.util.Collection values()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1296,29 +1365,38 @@
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap java.util.List valueList()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap java.util.Set entrySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap java.util.Set keySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap org.apache.commons.collections.OrderedMap decorate(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap org.apache.commons.collections.OrderedMap decorate(java.util.Map) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap org.apache.commons.collections.OrderedMapIterator orderedMapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap void putAll(java.util.Map) 0'>
@@ -1350,6 +1428,7 @@
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.EntrySetView java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1360,6 +1439,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.KeySetView java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.ListOrderedIterator ListOrderedIterator(org.apache.commons.collections.map.ListOrderedMap, java.util.List)'>
@@ -1371,6 +1453,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.ListOrderedIterator java.lang.Object next()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.ListOrderedMapEntry ListOrderedMapEntry(org.apache.commons.collections.map.ListOrderedMap, java.lang.Object)'>
@@ -1398,6 +1483,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.ListOrderedMap.ValuesView java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.MultiKeyMap MultiKeyMap(org.apache.commons.collections.map.AbstractHashedMap)'>
@@ -1532,6 +1620,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.map.MultiKeyMap java.lang.Object clone()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.MultiKeyMap java.lang.Object get(java.lang.Object, java.lang.Object)'>
@@ -1576,6 +1667,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.MultiKeyMap org.apache.commons.collections.map.MultiKeyMap decorate(org.apache.commons.collections.map.AbstractHashedMap)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.MultiKeyMap org.apache.commons.collections.map.MultiKeyMap decorate(org.apache.commons.collections.map.AbstractHashedMap) 0'>
@@ -1625,6 +1719,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.collections.map.MultiValueMap org.apache.commons.collections.map.MultiValueMap decorate(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.MultiValueMap org.apache.commons.collections.map.MultiValueMap decorate(java.util.Map) 0'>
@@ -1632,6 +1729,7 @@
</item>
<item name='org.apache.commons.collections.map.MultiValueMap org.apache.commons.collections.map.MultiValueMap decorate(java.util.Map, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1641,6 +1739,7 @@
</item>
<item name='org.apache.commons.collections.map.MultiValueMap org.apache.commons.collections.map.MultiValueMap decorate(java.util.Map, org.apache.commons.collections.Factory)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1667,6 +1766,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.MultiValueMap.Values java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.MultiValueMap.ValuesIterator ValuesIterator(java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -1685,10 +1789,13 @@
</item>
<item name='org.apache.commons.collections.map.PredicatedMap java.lang.Object checkSetValue(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;!null-&gt;!null;null-&gt;null&quot;"/>
<val val="&quot;_-&gt;param1&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.map.PredicatedMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.PredicatedMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate) 0'>
@@ -1707,6 +1814,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.PredicatedSortedMap java.util.SortedMap decorate(java.util.SortedMap, org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.PredicatedSortedMap java.util.SortedMap decorate(java.util.SortedMap, org.apache.commons.collections.Predicate, org.apache.commons.collections.Predicate) 0'>
@@ -1718,12 +1828,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.PredicatedSortedMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.PredicatedSortedMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.PredicatedSortedMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.ReferenceIdentityMap boolean isEqualKey(java.lang.Object, java.lang.Object) 0'>
@@ -1850,27 +1969,34 @@
</item>
<item name='org.apache.commons.collections.map.SingletonMap java.util.Collection values()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.SingletonMap java.util.Set entrySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.SingletonMap java.util.Set keySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.SingletonMap org.apache.commons.collections.MapIterator mapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.SingletonMap org.apache.commons.collections.OrderedMapIterator orderedMapIterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -1925,6 +2051,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.SingletonMap.SingletonValues java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.SingletonMap.SingletonValues void clear()'>
@@ -1959,18 +2088,21 @@
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap java.util.Collection values()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap java.util.Set entrySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap java.util.Set keySet()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2009,6 +2141,7 @@
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap.EntrySet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2030,6 +2163,7 @@
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap.KeySet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2074,6 +2208,7 @@
</item>
<item name='org.apache.commons.collections.map.StaticBucketMap.Values java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2093,6 +2228,7 @@
</item>
<item name='org.apache.commons.collections.map.TransformedMap java.util.Map decorate(java.util.Map, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2101,6 +2237,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedMap java.util.Map decorateTransform(java.util.Map, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedMap java.util.Map decorateTransform(java.util.Map, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer) 0'>
@@ -2125,6 +2264,7 @@
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap decorate(java.util.SortedMap, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2133,6 +2273,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap decorateTransform(java.util.SortedMap, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap decorateTransform(java.util.SortedMap, org.apache.commons.collections.Transformer, org.apache.commons.collections.Transformer) 0'>
@@ -2144,12 +2287,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TransformedSortedMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TypedMap TypedMap()'>
@@ -2158,6 +2310,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.TypedMap java.util.Map decorate(java.util.Map, java.lang.Class, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TypedMap java.util.Map decorate(java.util.Map, java.lang.Class, java.lang.Class) 0'>
@@ -2175,6 +2330,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.map.TypedSortedMap java.util.SortedMap decorate(java.util.SortedMap, java.lang.Class, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.TypedSortedMap java.util.SortedMap decorate(java.util.SortedMap, java.lang.Class, java.lang.Class) 0'>
@@ -2244,6 +2402,7 @@
</item>
<item name='org.apache.commons.collections.map.UnmodifiableEntrySet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -2289,6 +2448,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableEntrySet.UnmodifiableEntrySetIterator java.lang.Object next()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableEntrySet.UnmodifiableEntrySetIterator void remove()'>
@@ -2454,12 +2616,21 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableSortedMap java.util.SortedMap headMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableSortedMap java.util.SortedMap subMap(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableSortedMap java.util.SortedMap tailMap(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.map.UnmodifiableSortedMap void clear()'>

View File

@@ -94,6 +94,7 @@
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -104,18 +105,27 @@
</annotation>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.List) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set, java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.ListOrderedSet org.apache.commons.collections.set.ListOrderedSet decorate(java.util.Set, java.util.List) 0'>
@@ -140,8 +150,14 @@
<item name='org.apache.commons.collections.set.MapBackedSet boolean addAll(java.util.Collection) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.MapBackedSet java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.collections.set.MapBackedSet java.util.Set decorate(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -151,6 +167,7 @@
</item>
<item name='org.apache.commons.collections.set.MapBackedSet java.util.Set decorate(java.util.Map, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -165,6 +182,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSet java.util.Set decorate(java.util.Set, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSet java.util.Set decorate(java.util.Set, org.apache.commons.collections.Predicate) 0'>
@@ -180,6 +200,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSortedSet java.util.SortedSet decorate(java.util.SortedSet, org.apache.commons.collections.Predicate)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSortedSet java.util.SortedSet decorate(java.util.SortedSet, org.apache.commons.collections.Predicate) 0'>
@@ -189,12 +212,21 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSortedSet java.util.SortedSet headSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSortedSet java.util.SortedSet subSet(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.PredicatedSortedSet java.util.SortedSet tailSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.SynchronizedSet SynchronizedSet(java.util.Set)'>
@@ -215,6 +247,7 @@
</item>
<item name='org.apache.commons.collections.set.SynchronizedSet java.util.Set decorate(java.util.Set)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -245,6 +278,7 @@
</item>
<item name='org.apache.commons.collections.set.SynchronizedSortedSet java.util.SortedSet decorate(java.util.SortedSet)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -258,12 +292,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.set.SynchronizedSortedSet java.util.SortedSet headSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.SynchronizedSortedSet java.util.SortedSet subSet(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.SynchronizedSortedSet java.util.SortedSet tailSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TransformedSet TransformedSet(java.util.Set, org.apache.commons.collections.Transformer)'>
@@ -279,6 +322,7 @@
</item>
<item name='org.apache.commons.collections.set.TransformedSet java.util.Set decorate(java.util.Set, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -302,6 +346,7 @@
</item>
<item name='org.apache.commons.collections.set.TransformedSortedSet java.util.SortedSet decorate(java.util.SortedSet, org.apache.commons.collections.Transformer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -318,12 +363,21 @@
</annotation>
</item>
<item name='org.apache.commons.collections.set.TransformedSortedSet java.util.SortedSet headSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TransformedSortedSet java.util.SortedSet subSet(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TransformedSortedSet java.util.SortedSet tailSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TypedSet TypedSet()'>
@@ -332,6 +386,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.set.TypedSet java.util.Set decorate(java.util.Set, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TypedSet java.util.Set decorate(java.util.Set, java.lang.Class) 0'>
@@ -346,6 +403,9 @@
</annotation>
</item>
<item name='org.apache.commons.collections.set.TypedSortedSet java.util.SortedSet decorate(java.util.SortedSet, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.TypedSortedSet java.util.SortedSet decorate(java.util.SortedSet, java.lang.Class) 0'>
@@ -485,12 +545,21 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.UnmodifiableSortedSet java.util.SortedSet headSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.UnmodifiableSortedSet java.util.SortedSet subSet(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.UnmodifiableSortedSet java.util.SortedSet tailSet(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.collections.set.UnmodifiableSortedSet void clear()'>

View File

@@ -256,9 +256,19 @@
<item name='org.apache.commons.lang.ArrayUtils boolean isSameType(java.lang.Object, java.lang.Object) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] add(boolean[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] add(boolean[], boolean) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] add(boolean[], int, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] addAll(boolean[], boolean[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -277,6 +287,11 @@
<item name='org.apache.commons.lang.ArrayUtils boolean[] clone(boolean[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] remove(boolean[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils boolean[] remove(boolean[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -313,9 +328,19 @@
<item name='org.apache.commons.lang.ArrayUtils boolean[] toPrimitive(java.lang.Boolean[], boolean) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] add(byte[], byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] add(byte[], byte) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] add(byte[], int, byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] addAll(byte[], byte[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -334,6 +359,11 @@
<item name='org.apache.commons.lang.ArrayUtils byte[] clone(byte[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] remove(byte[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils byte[] remove(byte[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -370,9 +400,19 @@
<item name='org.apache.commons.lang.ArrayUtils byte[] toPrimitive(java.lang.Byte[], byte) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] add(char[], char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] add(char[], char) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] add(char[], int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] addAll(char[], char[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -391,6 +431,11 @@
<item name='org.apache.commons.lang.ArrayUtils char[] clone(char[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] remove(char[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils char[] remove(char[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -427,9 +472,19 @@
<item name='org.apache.commons.lang.ArrayUtils char[] toPrimitive(java.lang.Character[], char) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] add(double[], double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] add(double[], double) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] add(double[], int, double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] addAll(double[], double[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -448,6 +503,11 @@
<item name='org.apache.commons.lang.ArrayUtils double[] clone(double[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] remove(double[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils double[] remove(double[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -484,9 +544,19 @@
<item name='org.apache.commons.lang.ArrayUtils double[] toPrimitive(java.lang.Double[], double) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] add(float[], float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] add(float[], float) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] add(float[], int, float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] addAll(float[], float[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -505,6 +575,11 @@
<item name='org.apache.commons.lang.ArrayUtils float[] clone(float[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] remove(float[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils float[] remove(float[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -808,9 +883,19 @@
<item name='org.apache.commons.lang.ArrayUtils int lastIndexOf(short[], short, int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] add(int[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] add(int[], int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] add(int[], int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] addAll(int[], int[])'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -829,6 +914,11 @@
<item name='org.apache.commons.lang.ArrayUtils int[] clone(int[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] remove(int[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils int[] remove(int[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -935,12 +1025,32 @@
<item name='org.apache.commons.lang.ArrayUtils java.lang.Long[] toObject(long[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object add(java.lang.Object, int, java.lang.Object, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object copyArrayGrow1(java.lang.Object, java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object copyArrayGrow1(java.lang.Object, java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object remove(java.lang.Object, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object remove(java.lang.Object, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object[] add(java.lang.Object[], java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object[] add(java.lang.Object[], java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -962,6 +1072,11 @@
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object[] clone(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object[] remove(java.lang.Object[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils java.lang.Object[] remove(java.lang.Object[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -1006,6 +1121,16 @@
<item name='org.apache.commons.lang.ArrayUtils java.util.Map toMap(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils long[] add(long[], int, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils long[] add(long[], long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils long[] add(long[], long) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -1027,6 +1152,11 @@
<item name='org.apache.commons.lang.ArrayUtils long[] clone(long[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils long[] remove(long[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils long[] remove(long[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -1063,6 +1193,16 @@
<item name='org.apache.commons.lang.ArrayUtils long[] toPrimitive(java.lang.Long[], long) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils short[] add(short[], int, short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils short[] add(short[], short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils short[] add(short[], short) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -1084,6 +1224,11 @@
<item name='org.apache.commons.lang.ArrayUtils short[] clone(short[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.ArrayUtils short[] remove(short[], int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.ArrayUtils short[] remove(short[], int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -2154,9 +2299,15 @@
</annotation>
</item>
<item name='org.apache.commons.lang.LocaleUtils java.util.List localeLookupList(java.util.Locale)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.LocaleUtils java.util.List localeLookupList(java.util.Locale, java.util.Locale)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.LocaleUtils java.util.List localeLookupList(java.util.Locale, java.util.Locale) 0'>
@@ -3445,6 +3596,7 @@
</item>
<item name='org.apache.commons.lang.StringUtils java.lang.String padding(int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -4048,15 +4200,27 @@
</annotation>
</item>
<item name='org.apache.commons.lang.SystemUtils java.io.File getJavaHome()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.SystemUtils java.io.File getJavaIoTmpDir()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.SystemUtils java.io.File getUserDir()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.SystemUtils java.io.File getUserHome()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.SystemUtils java.lang.String getJavaVersionTrimmed()'>

View File

@@ -19,9 +19,15 @@
</annotation>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(boolean, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(boolean[], boolean[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(boolean[], boolean[]) 0'>
@@ -31,9 +37,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(byte, byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(byte[], byte[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(byte[], byte[]) 0'>
@@ -43,9 +55,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(char, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(char[], char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(char[], char[]) 0'>
@@ -55,9 +73,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(double, double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(double[], double[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(double[], double[]) 0'>
@@ -67,9 +91,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(float, float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(float[], float[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(float[], float[]) 0'>
@@ -79,9 +109,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(int[], int[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(int[], int[]) 0'>
@@ -91,6 +127,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(java.lang.Object, java.lang.Object, java.util.Comparator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(java.lang.Object, java.lang.Object, java.util.Comparator) 0'>
@@ -100,6 +139,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(java.lang.Object[], java.lang.Object[], java.util.Comparator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(java.lang.Object[], java.lang.Object[], java.util.Comparator) 0'>
@@ -109,9 +151,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(long, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(long[], long[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(long[], long[]) 0'>
@@ -121,9 +169,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(short, short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(short[], short[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder append(short[], short[]) 0'>
@@ -133,6 +187,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder org.apache.commons.lang.builder.CompareToBuilder appendSuper(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.CompareToBuilder void reflectionAppend(java.lang.Object, java.lang.Object, java.lang.Class, org.apache.commons.lang.builder.CompareToBuilder, boolean, java.lang.String[]) 2'>
@@ -194,9 +251,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(boolean, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(boolean[], boolean[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(boolean[], boolean[]) 0'>
@@ -206,9 +269,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(byte, byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(byte[], byte[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(byte[], byte[]) 0'>
@@ -218,9 +287,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(char, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(char[], char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(char[], char[]) 0'>
@@ -230,6 +305,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(double[], double[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(double[], double[]) 0'>
@@ -239,6 +317,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(float[], float[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(float[], float[]) 0'>
@@ -248,9 +329,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(int[], int[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(int[], int[]) 0'>
@@ -260,6 +347,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(java.lang.Object, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(java.lang.Object, java.lang.Object) 0'>
@@ -269,6 +359,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(java.lang.Object[], java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(java.lang.Object[], java.lang.Object[]) 0'>
@@ -278,9 +371,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(long, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(long[], long[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(long[], long[]) 0'>
@@ -290,9 +389,15 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(short, short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(short[], short[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder append(short[], short[]) 0'>
@@ -302,6 +407,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder org.apache.commons.lang.builder.EqualsBuilder appendSuper(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.EqualsBuilder void reflectionAppend(java.lang.Object, java.lang.Object, java.lang.Class, org.apache.commons.lang.builder.EqualsBuilder, boolean, java.lang.String[]) 2'>
@@ -356,90 +464,147 @@
</annotation>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder java.lang.Integer toIdentityHashCodeInteger(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(boolean[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(boolean[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(byte[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(byte[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(char[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(double[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(double[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(float[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(float[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(int[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(int[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(long[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(long[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(short[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder append(short[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.HashCodeBuilder org.apache.commons.lang.builder.HashCodeBuilder appendSuper(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ReflectionToStringBuilder ReflectionToStringBuilder(java.lang.Object, org.apache.commons.lang.builder.ToStringStyle) 1'>
@@ -513,12 +678,18 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.ReflectionToStringBuilder org.apache.commons.lang.builder.ReflectionToStringBuilder setExcludeFieldNames(java.lang.String[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ReflectionToStringBuilder org.apache.commons.lang.builder.ReflectionToStringBuilder setExcludeFieldNames(java.lang.String[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.ReflectionToStringBuilder org.apache.commons.lang.builder.ToStringBuilder reflectionAppendArray(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ReflectionToStringBuilder void appendFieldsIn(java.lang.Class) 0'>
@@ -705,156 +876,303 @@
</annotation>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(boolean[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(byte[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(double[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(float[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(int[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, boolean[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, boolean[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, byte)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, byte[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, byte[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, char[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, double)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, double[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, double[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, float)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, float[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, float[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, int[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, int[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, java.lang.Object, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, java.lang.Object[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, long[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, long[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, short[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(java.lang.String, short[], boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(long)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(long[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(short)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder append(short[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendAsObjectToString(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendAsObjectToString(java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendSuper(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendSuper(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendToString(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.builder.ToStringBuilder org.apache.commons.lang.builder.ToStringBuilder appendToString(java.lang.String) 0'>

View File

@@ -31,6 +31,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enum.Enum java.util.Iterator iterator(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enum.Enum java.util.Iterator iterator(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -46,6 +51,11 @@
<item name='org.apache.commons.lang.enum.Enum org.apache.commons.lang.enum.Enum getEnum(java.lang.Class, java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.enum.Enum org.apache.commons.lang.enum.Enum.Entry createEntry(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enum.Enum org.apache.commons.lang.enum.Enum.Entry createEntry(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -57,6 +67,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enum.EnumUtils java.util.Iterator iterator(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enum.EnumUtils java.util.Iterator iterator(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>

View File

@@ -31,6 +31,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enums.Enum java.util.Iterator iterator(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enums.Enum java.util.Iterator iterator(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -46,6 +51,11 @@
<item name='org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum getEnum(java.lang.Class, java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum.Entry createEntry(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enums.Enum org.apache.commons.lang.enums.Enum.Entry createEntry(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -57,6 +67,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enums.EnumUtils java.util.Iterator iterator(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.enums.EnumUtils java.util.Iterator iterator(java.lang.Class) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>

View File

@@ -132,11 +132,24 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.exception.ExceptionUtils java.util.ArrayList getCauseMethodNameList()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.exception.ExceptionUtils java.util.List getStackFrameList(java.lang.Throwable)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.exception.ExceptionUtils java.util.List getStackFrameList(java.lang.Throwable) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.exception.ExceptionUtils java.util.List getThrowableList(java.lang.Throwable)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.exception.ExceptionUtils java.util.List getThrowableList(java.lang.Throwable) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -168,6 +181,11 @@
<val val="&quot;!null-&gt;!null&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.exception.NestableDelegate java.lang.String[] getMessages()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.exception.NestableDelegate java.lang.String[] getStackFrames(java.lang.Throwable) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>

View File

@@ -321,12 +321,14 @@
</item>
<item name='org.apache.commons.lang.math.Fraction org.apache.commons.lang.math.Fraction getFraction(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.math.Fraction org.apache.commons.lang.math.Fraction getFraction(int, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -341,6 +343,7 @@
</item>
<item name='org.apache.commons.lang.math.Fraction org.apache.commons.lang.math.Fraction invert()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -355,6 +358,7 @@
</item>
<item name='org.apache.commons.lang.math.Fraction org.apache.commons.lang.math.Fraction negate()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -532,6 +536,7 @@
</item>
<item name='org.apache.commons.lang.math.IntRange int[] toArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -673,6 +678,7 @@
</item>
<item name='org.apache.commons.lang.math.LongRange long[] toArray()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>

View File

@@ -112,10 +112,14 @@
</annotation>
</item>
<item name='org.apache.commons.lang.mutable.MutableByte java.lang.Byte toByte()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableByte java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -201,10 +205,14 @@
</annotation>
</item>
<item name='org.apache.commons.lang.mutable.MutableDouble java.lang.Double toDouble()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableDouble java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -289,10 +297,14 @@
</annotation>
</item>
<item name='org.apache.commons.lang.mutable.MutableFloat java.lang.Float toFloat()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableFloat java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -366,10 +378,14 @@
</annotation>
</item>
<item name='org.apache.commons.lang.mutable.MutableInt java.lang.Integer toInteger()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableInt java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -444,10 +460,14 @@
</annotation>
</item>
<item name='org.apache.commons.lang.mutable.MutableLong java.lang.Long toLong()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableLong java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -551,11 +571,15 @@
</item>
<item name='org.apache.commons.lang.mutable.MutableShort java.lang.Object getValue()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableShort java.lang.Short toShort()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.mutable.MutableShort java.lang.String toString()'>

View File

@@ -130,12 +130,14 @@
</item>
<item name='org.apache.commons.lang.text.StrBuilder java.io.Reader asReader()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder java.io.Writer asWriter()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -170,14 +172,21 @@
</item>
<item name='org.apache.commons.lang.text.StrBuilder java.lang.StringBuffer toStringBuffer()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder append(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder append(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder append(char[])'>
@@ -248,57 +257,90 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.lang.Object[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.lang.Object[]) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.util.Collection)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.util.Collection) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.util.Iterator)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendAll(java.util.Iterator) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendFixedWidthPadLeft(java.lang.Object, int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendFixedWidthPadLeft(java.lang.Object, int, char) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendFixedWidthPadRight(java.lang.Object, int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendFixedWidthPadRight(java.lang.Object, int, char) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendPadding(int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(char, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(java.lang.String, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendSeparator(java.lang.String, int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.lang.Object[], java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.lang.Object[], java.lang.String) 0'>
@@ -308,6 +350,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.util.Collection, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.util.Collection, java.lang.String) 0'>
@@ -317,6 +362,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.util.Iterator, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder appendWithSeparators(java.util.Iterator, java.lang.String) 0'>
@@ -326,33 +374,63 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder clear()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder delete(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder deleteAll(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder deleteAll(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder deleteCharAt(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder deleteFirst(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder deleteFirst(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder ensureCapacity(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder insert(int, boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder insert(int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder insert(int, char[])'>
@@ -375,15 +453,24 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder insert(int, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder insert(int, java.lang.String) 1'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder minimizeCapacity()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replace(int, int, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replace(org.apache.commons.lang.text.StrMatcher, java.lang.String, int, int, int)'>
@@ -393,43 +480,77 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceAll(char, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceAll(java.lang.String, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceFirst(char, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceFirst(java.lang.String, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceImpl(org.apache.commons.lang.text.StrMatcher, java.lang.String, int, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_,_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder replaceImpl(org.apache.commons.lang.text.StrMatcher, java.lang.String, int, int, int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder reverse()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder setCharAt(int, char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder setLength(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder setNewLineText(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder setNullText(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrBuilder trim()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrBuilder org.apache.commons.lang.text.StrTokenizer asTokenizer()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -487,6 +608,7 @@
</item>
<item name='org.apache.commons.lang.text.StrLookup org.apache.commons.lang.text.StrLookup mapLookup(java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -519,6 +641,7 @@
</item>
<item name='org.apache.commons.lang.text.StrMatcher org.apache.commons.lang.text.StrMatcher charMatcher(char)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -798,6 +921,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrSubstitutor org.apache.commons.lang.text.StrSubstitutor setVariablePrefixMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrSubstitutor org.apache.commons.lang.text.StrSubstitutor setVariablePrefixMatcher(org.apache.commons.lang.text.StrMatcher) 0'>
@@ -807,6 +933,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrSubstitutor org.apache.commons.lang.text.StrSubstitutor setVariableSuffixMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrSubstitutor org.apache.commons.lang.text.StrSubstitutor setVariableSuffixMatcher(org.apache.commons.lang.text.StrMatcher) 0'>
@@ -897,6 +1026,11 @@
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer java.util.List getTokenList()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer java.util.List tokenize(char[], int, int) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
@@ -921,18 +1055,30 @@
</annotation>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer reset()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer reset(char[])'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer reset(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer reset(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setDelimiterMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setDelimiterMatcher(org.apache.commons.lang.text.StrMatcher) 0'>
@@ -942,24 +1088,39 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setEmptyTokenAsNull(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setIgnoreEmptyTokens(boolean)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setIgnoredMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setIgnoredMatcher(org.apache.commons.lang.text.StrMatcher) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setQuoteMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setQuoteMatcher(org.apache.commons.lang.text.StrMatcher) 0'>
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setTrimmerMatcher(org.apache.commons.lang.text.StrMatcher)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;this&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.text.StrTokenizer org.apache.commons.lang.text.StrTokenizer setTrimmerMatcher(org.apache.commons.lang.text.StrMatcher) 0'>

View File

@@ -91,54 +91,81 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date add(java.util.Date, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date add(java.util.Date, int, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addDays(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addDays(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addHours(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addHours(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMilliseconds(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMilliseconds(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMinutes(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMinutes(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMonths(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addMonths(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addSeconds(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addSeconds(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addWeeks(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addWeeks(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addYears(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date addYears(java.util.Date, int) 0'>
@@ -157,54 +184,81 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date round(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date round(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date set(java.util.Date, int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date set(java.util.Date, int, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setDays(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setDays(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setHours(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setHours(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMilliseconds(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMilliseconds(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMinutes(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMinutes(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMonths(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setMonths(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setSeconds(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setSeconds(java.util.Date, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setYears(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date setYears(java.util.Date, int) 0'>
@@ -217,6 +271,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date truncate(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Date truncate(java.util.Date, int) 0'>
@@ -229,12 +286,18 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Iterator iterator(java.util.Calendar, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Iterator iterator(java.util.Calendar, int) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Iterator iterator(java.util.Date, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.DateUtils java.util.Iterator iterator(java.util.Date, int) 0'>
@@ -422,12 +485,17 @@
</item>
<item name='org.apache.commons.lang.time.FastDateFormat java.lang.StringBuffer applyRules(java.util.Calendar, java.lang.StringBuffer)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.time.FastDateFormat java.lang.StringBuffer format(java.util.Date, java.lang.StringBuffer) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.commons.lang.time.FastDateFormat java.util.List parsePattern()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.commons.lang.time.FastDateFormat java.util.Locale getLocale()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -444,6 +512,7 @@
</item>
<item name='org.apache.commons.lang.time.FastDateFormat org.apache.commons.lang.time.FastDateFormat.NumberRule selectNumberRule(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_,_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -5,18 +5,33 @@
</annotation>
</item>
<item name='org.apache.velocity.anakia.AnakiaElement java.util.List getAttributes()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaElement java.util.List getChildren()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaElement java.util.List getChildren(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaElement java.util.List getContent()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaElement org.apache.velocity.anakia.NodeList selectNodes(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaTask java.lang.String getRelativePath(java.lang.String)'>
@@ -28,6 +43,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaTask org.apache.velocity.anakia.AnakiaTask.Context createContext()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.AnakiaTask void ensureDirectoryFor(java.io.File) 0'>
@@ -95,6 +113,7 @@
</item>
<item name='org.apache.velocity.anakia.NodeList java.util.Iterator iterator()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
@@ -104,9 +123,15 @@
</annotation>
</item>
<item name='org.apache.velocity.anakia.NodeList java.util.List subList(int, int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.NodeList org.apache.velocity.anakia.NodeList selectNodes(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.anakia.TreeWalker TreeWalker()'>
@@ -125,6 +150,9 @@
</annotation>
</item>
<item name='org.apache.velocity.anakia.XPathTool org.apache.velocity.anakia.NodeList applyTo(java.lang.String, java.util.List)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
</root>

View File

@@ -25,21 +25,25 @@
</item>
<item name='org.apache.velocity.app.event.EventCartridge java.util.Iterator getIncludeEventHandlers()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.app.event.EventCartridge java.util.Iterator getInvalidReferenceEventHandlers()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.app.event.EventCartridge java.util.Iterator getMethodExceptionEventHandlers()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.app.event.EventCartridge java.util.Iterator getNullSetEventHandlers()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
</item>

View File

@@ -63,6 +63,7 @@
</item>
<item name='org.apache.velocity.context.InternalContextAdapterImpl org.apache.velocity.context.InternalContextAdapter getBaseContext()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;-&gt;this&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -75,6 +75,9 @@
</annotation>
</item>
<item name='org.apache.velocity.runtime.RuntimeInstance org.apache.velocity.runtime.parser.Parser createNewParser()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.RuntimeInstance org.apache.velocity.util.introspection.Introspector getIntrospector()'>

View File

@@ -152,6 +152,7 @@
</item>
<item name='org.apache.velocity.runtime.directive.Directive org.apache.velocity.runtime.directive.Scope makeScope(java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -412,6 +413,11 @@
<item name='org.apache.velocity.runtime.directive.Macro java.lang.StringBuffer macroToString(java.lang.StringBuffer, java.lang.String[]) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.directive.Macro java.lang.String[] getArgArray(org.apache.velocity.runtime.parser.node.Node, org.apache.velocity.runtime.RuntimeServices)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.directive.Macro java.lang.String[] getArgArray(org.apache.velocity.runtime.parser.node.Node, org.apache.velocity.runtime.RuntimeServices) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>

View File

@@ -36,8 +36,26 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.Parser org.apache.velocity.runtime.parser.ParseException generateParseException()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.Parser org.apache.velocity.runtime.parser.node.SimpleNode Directive()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.Parser org.apache.velocity.runtime.parser.node.SimpleNode parse(java.io.Reader, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.Parser org.apache.velocity.runtime.parser.node.SimpleNode process()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.Parser void disable_tracing()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -109,6 +127,9 @@
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.ParserTokenManager org.apache.velocity.runtime.parser.Token jjFillToken()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.ParserTokenManager void SkipLexicalActions(org.apache.velocity.runtime.parser.Token) 0'>
@@ -152,6 +173,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.Token org.apache.velocity.runtime.parser.Token newToken(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
@@ -199,6 +221,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.VelocityCharStream char[] GetSuffix(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;new&quot;"/>
<val name="pure" val="true"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>

View File

@@ -120,7 +120,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTDirective java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTDirective java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -223,7 +223,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTEscape java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTEscape java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object) 0'>
@@ -311,7 +311,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTFloatingPointLiteral java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTFloatingPointLiteral java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -369,7 +369,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIdentifier java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIdentifier java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -440,7 +440,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIndex java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIntegerLiteral ASTIntegerLiteral(int)'>
@@ -455,7 +455,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIntegerLiteral java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTIntegerLiteral java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -524,6 +524,11 @@
<item name='org.apache.velocity.runtime.parser.node.ASTMap java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMap java.lang.Object value(org.apache.velocity.context.InternalContextAdapter)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMathNode ASTMathNode(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -552,7 +557,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMathNode java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMathNode java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -588,7 +593,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMethod java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTMethod java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -692,6 +697,11 @@
<item name='org.apache.velocity.runtime.parser.node.ASTObjectArray java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTObjectArray java.lang.Object value(org.apache.velocity.context.InternalContextAdapter)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTOrNode ASTOrNode(int)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>
@@ -744,7 +754,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTReference java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTReference java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -790,7 +800,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTSetDirective java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTSetDirective java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -813,7 +823,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTStringLiteral java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTStringLiteral java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>
@@ -870,7 +880,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTText java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.ASTText java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object) 0'>
@@ -1090,6 +1100,11 @@
<item name='org.apache.velocity.runtime.parser.node.NodeUtils java.lang.String tokenLiteral(org.apache.velocity.runtime.parser.Token) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.parser.node.NodeUtils org.apache.commons.lang.text.StrBuilder getSpecialText(org.apache.velocity.runtime.parser.Token)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.NodeUtils org.apache.commons.lang.text.StrBuilder getSpecialText(org.apache.velocity.runtime.parser.Token) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -1184,7 +1199,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.SimpleNode java.lang.Object childrenAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.SimpleNode java.lang.Object execute(java.lang.Object, org.apache.velocity.context.InternalContextAdapter)'>
@@ -1202,7 +1217,7 @@
</item>
<item name='org.apache.velocity.runtime.parser.node.SimpleNode java.lang.Object init(org.apache.velocity.context.InternalContextAdapter, java.lang.Object)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,!null-&gt;!null;_,null-&gt;null&quot;"/>
<val val="&quot;_,_-&gt;param2&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.parser.node.SimpleNode java.lang.Object jjtAccept(org.apache.velocity.runtime.parser.node.ParserVisitor, java.lang.Object) 0'>

View File

@@ -34,6 +34,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.resource.ResourceCacheImpl java.util.Iterator enumerateKeys()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.resource.ResourceFactory ResourceFactory()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="pure" val="true"/>

View File

@@ -36,6 +36,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.resource.loader.DataSourceResourceLoader java.io.InputStream getResourceStream(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.resource.loader.DataSourceResourceLoader java.sql.PreparedStatement getStatement(java.sql.Connection, java.lang.String, java.lang.String) 0'>
@@ -114,6 +117,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.resource.loader.JarHolder java.util.Hashtable getEntries()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.runtime.resource.loader.JarResourceLoader boolean isSourceModified(org.apache.velocity.runtime.resource.Resource)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val name="value" val="&quot;_-&gt;true&quot;"/>
@@ -188,6 +196,9 @@
<annotation name='org.jetbrains.annotations.Nullable'/>
</item>
<item name='org.apache.velocity.runtime.resource.loader.StringResourceLoader java.io.InputStream getResourceStream(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.runtime.resource.loader.StringResourceLoader long getLastModified(org.apache.velocity.runtime.resource.Resource) 0'>

View File

@@ -3,6 +3,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.texen.Generator java.io.Writer getWriter(java.lang.String, java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.texen.Generator java.io.Writer getWriter(java.lang.String, java.lang.String) 1'>

View File

@@ -30,6 +30,9 @@
</annotation>
</item>
<item name='org.apache.velocity.texen.ant.TexenTask org.apache.velocity.context.Context initControlContext()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.texen.ant.TexenTask void cleanup()'>

View File

@@ -25,12 +25,18 @@
</annotation>
</item>
<item name='org.apache.velocity.texen.util.PropertiesUtil java.util.Properties loadFromClassPath(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.texen.util.PropertiesUtil java.util.Properties loadFromClassPath(java.lang.String) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.texen.util.PropertiesUtil java.util.Properties loadFromTemplatePath(java.lang.String)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
</root>

View File

@@ -180,9 +180,19 @@
<item name='org.apache.velocity.util.StringUtils java.lang.String sub(java.lang.String, java.lang.String, java.lang.String) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.util.StringUtils java.lang.StringBuffer stringSubstitution(java.lang.String, java.util.Hashtable)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.util.StringUtils java.lang.StringBuffer stringSubstitution(java.lang.String, java.util.Hashtable) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.util.StringUtils java.lang.StringBuffer stringSubstitution(java.lang.String, java.util.Map)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_,_-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.util.StringUtils java.lang.StringBuffer stringSubstitution(java.lang.String, java.util.Map) 0'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>

View File

@@ -21,6 +21,11 @@
<val name="pure" val="true"/>
</annotation>
</item>
<item name='org.apache.velocity.util.introspection.ClassMap org.apache.velocity.util.introspection.ClassMap.MethodCache createMethodCache()'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;-&gt;new&quot;"/>
</annotation>
</item>
<item name='org.apache.velocity.util.introspection.ClassMap void populateMethodCacheWithInterface(org.apache.velocity.util.introspection.ClassMap.MethodCache, java.lang.Class) 1'>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
@@ -89,6 +94,9 @@
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.util.introspection.IntrospectorCacheImpl org.apache.velocity.util.introspection.ClassMap put(java.lang.Class)'>
<annotation name='org.jetbrains.annotations.Contract'>
<val val="&quot;_-&gt;new&quot;"/>
</annotation>
<annotation name='org.jetbrains.annotations.NotNull'/>
</item>
<item name='org.apache.velocity.util.introspection.IntrospectorCacheImpl org.apache.velocity.util.introspection.ClassMap put(java.lang.Class) 0'>