-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Add Javadoc @since
tags for previously added elements
#2211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Javadoc @since
tags for previously added elements
#2211
Conversation
55914c1
to
7079be9
Compare
@since
tags for previously added elements; improve release actions@since
tags for previously added elements
* <li>aURL ---> A_U_R_L</li> | ||
* </ul> | ||
* | ||
* @since 2.9.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @since 2.8 | ||
* {@code myobject.my.field} will result in an unintended JavaScript expression. | ||
* | ||
* @since 2.8.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(previous @since
value was apparently incorrect)
* instance. | ||
* | ||
* @return a GsonBuilder instance. | ||
* @since 2.8.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param objectToNumberStrategy the actual object-to-number strategy | ||
* @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern | ||
* @see ToNumberPolicy#DOUBLE The default object-to-number strategy | ||
* @since 2.8.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param numberToNumberStrategy the actual number-to-number strategy | ||
* @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern | ||
* @see ToNumberPolicy#LAZILY_PARSED_NUMBER The default number-to-number strategy | ||
* @since 2.8.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* {@link Object} and {@link Number}. | ||
* | ||
* @see ToNumberStrategy | ||
* @since 2.8.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @see ToNumberPolicy | ||
* @see GsonBuilder#setObjectToNumberStrategy(ToNumberStrategy) | ||
* @see GsonBuilder#setNumberToNumberStrategy(ToNumberStrategy) | ||
* @since 2.8.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @return this writer. | ||
* @throws UnsupportedOperationException if this writer does not support | ||
* writing raw JSON values. | ||
* @since 2.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Encodes {@code value}. | ||
* | ||
* @return this writer. | ||
* @since 2.7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @return this writer. | ||
* @throws IllegalArgumentException if the value is NaN or Infinity and this writer is not {@link | ||
* #setLenient(boolean) lenient}. | ||
* @since 2.9.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that's very useful! |
Adds Javadoc
@since
tags for elements which were added in previous releases and do not have this tag yet. I have also added review comments below referring to the relevant commits where these elements were added.