@@ -366,7 +366,7 @@ public enum Feature {
366366 * Most common reason for disabling this feature is to avoid leaking information about
367367 * internal information; this may be done for security reasons.
368368 * Note that even if source reference is included, only parts of contents are usually
369- * printed, and not the whole contents. Further, many source reference types can not
369+ * printed, and not the whole contents. Further, many source reference types cannot
370370 * necessarily access contents (like streams), so only type is indicated, not contents.
371371 *<p>
372372 * Since 2.16 feature is <b>disabled</b> by default (before 2.16 it was enabled),
@@ -888,12 +888,12 @@ public void setCurrentValue(Object v) {
888888 * done after reading all content of interest using parser.
889889 * Content is released by writing it to given stream if possible;
890890 * if underlying input is byte-based it can released, if not (char-based)
891- * it can not .
891+ * it cannot .
892892 *
893893 * @param out OutputStream to which buffered, undecoded content is written to
894894 *
895895 * @return -1 if the underlying content source is not byte based
896- * (that is, input can not be sent to {@link OutputStream};
896+ * (that is, input cannot be sent to {@link OutputStream};
897897 * otherwise number of bytes released (0 if there was nothing to release)
898898 *
899899 * @throws IOException if write to stream threw exception
@@ -909,12 +909,12 @@ public int releaseBuffered(OutputStream out) throws IOException {
909909 * done after reading all content of interest using parser.
910910 * Content is released by writing it to given writer if possible;
911911 * if underlying input is char-based it can released, if not (byte-based)
912- * it can not .
912+ * it cannot .
913913 *
914914 * @param w Writer to which buffered but unprocessed content is written to
915915 *
916916 * @return -1 if the underlying content source is not char-based
917- * (that is, input can not be sent to {@link Writer};
917+ * (that is, input cannot be sent to {@link Writer};
918918 * otherwise number of chars released (0 if there was nothing to release)
919919 *
920920 * @throws IOException if write using Writer threw exception
@@ -1926,7 +1926,7 @@ public short getShortValue() throws IOException
19261926 /**
19271927 * Numeric accessor that can be called when the current
19281928 * token is of type {@link JsonToken#VALUE_NUMBER_INT} and
1929- * it can not be used as a Java long primitive type due to its
1929+ * it cannot be used as a Java long primitive type due to its
19301930 * magnitude.
19311931 * It can also be called for {@link JsonToken#VALUE_NUMBER_FLOAT};
19321932 * if so, it is equivalent to calling {@link #getDecimalValue}
@@ -2146,7 +2146,7 @@ public int readBinaryValue(Base64Variant bv, OutputStream out) throws IOExceptio
21462146 * and 1 (true), and Strings are parsed using default Java language integer
21472147 * parsing rules.
21482148 *<p>
2149- * If representation can not be converted to an int (including structured type
2149+ * If representation cannot be converted to an int (including structured type
21502150 * markers like start/end Object/Array)
21512151 * default value of <b>0</b> will be returned; no exceptions are thrown.
21522152 *
@@ -2167,7 +2167,7 @@ public int getValueAsInt() throws IOException {
21672167 * and 1 (true), and Strings are parsed using default Java language integer
21682168 * parsing rules.
21692169 *<p>
2170- * If representation can not be converted to an int (including structured type
2170+ * If representation cannot be converted to an int (including structured type
21712171 * markers like start/end Object/Array)
21722172 * specified <b>def</b> will be returned; no exceptions are thrown.
21732173 *
@@ -2187,7 +2187,7 @@ public int getValueAsInt() throws IOException {
21872187 * and 1 (true), and Strings are parsed using default Java language integer
21882188 * parsing rules.
21892189 *<p>
2190- * If representation can not be converted to a long (including structured type
2190+ * If representation cannot be converted to a long (including structured type
21912191 * markers like start/end Object/Array)
21922192 * default value of <b>0L</b> will be returned; no exceptions are thrown.
21932193 *
@@ -2208,7 +2208,7 @@ public long getValueAsLong() throws IOException {
22082208 * and 1 (true), and Strings are parsed using default Java language integer
22092209 * parsing rules.
22102210 *<p>
2211- * If representation can not be converted to a long (including structured type
2211+ * If representation cannot be converted to a long (including structured type
22122212 * markers like start/end Object/Array)
22132213 * specified <b>def</b> will be returned; no exceptions are thrown.
22142214 *
@@ -2230,7 +2230,7 @@ public long getValueAsLong(long def) throws IOException {
22302230 * and 1.0 (true), and Strings are parsed using default Java language floating
22312231 * point parsing rules.
22322232 *<p>
2233- * If representation can not be converted to a double (including structured types
2233+ * If representation cannot be converted to a double (including structured types
22342234 * like Objects and Arrays),
22352235 * default value of <b>0.0</b> will be returned; no exceptions are thrown.
22362236 *
@@ -2251,7 +2251,7 @@ public double getValueAsDouble() throws IOException {
22512251 * and 1.0 (true), and Strings are parsed using default Java language floating
22522252 * point parsing rules.
22532253 *<p>
2254- * If representation can not be converted to a double (including structured types
2254+ * If representation cannot be converted to a double (including structured types
22552255 * like Objects and Arrays),
22562256 * specified <b>def</b> will be returned; no exceptions are thrown.
22572257 *
@@ -2273,7 +2273,7 @@ public double getValueAsDouble(double def) throws IOException {
22732273 * 0 maps to false
22742274 * and Strings 'true' and 'false' map to corresponding values.
22752275 *<p>
2276- * If representation can not be converted to a boolean value (including structured types
2276+ * If representation cannot be converted to a boolean value (including structured types
22772277 * like Objects and Arrays),
22782278 * default value of <b>false</b> will be returned; no exceptions are thrown.
22792279 *
@@ -2294,7 +2294,7 @@ public boolean getValueAsBoolean() throws IOException {
22942294 * 0 maps to false
22952295 * and Strings 'true' and 'false' map to corresponding values.
22962296 *<p>
2297- * If representation can not be converted to a boolean value (including structured types
2297+ * If representation cannot be converted to a boolean value (including structured types
22982298 * like Objects and Arrays),
22992299 * specified <b>def</b> will be returned; no exceptions are thrown.
23002300 *
@@ -2314,7 +2314,7 @@ public boolean getValueAsBoolean(boolean def) throws IOException {
23142314 * {@link java.lang.String}.
23152315 * JSON Strings map naturally; scalar values get converted to
23162316 * their textual representation.
2317- * If representation can not be converted to a String value (including structured types
2317+ * If representation cannot be converted to a String value (including structured types
23182318 * like Objects and Arrays and {@code null} token), default value of
23192319 * <b>null</b> will be returned; no exceptions are thrown.
23202320 *
@@ -2334,7 +2334,7 @@ public String getValueAsString() throws IOException {
23342334 * {@link java.lang.String}.
23352335 * JSON Strings map naturally; scalar values get converted to
23362336 * their textual representation.
2337- * If representation can not be converted to a String value (including structured types
2337+ * If representation cannot be converted to a String value (including structured types
23382338 * like Objects and Arrays and {@code null} token), specified default value
23392339 * will be returned; no exceptions are thrown.
23402340 *
@@ -2363,7 +2363,7 @@ public String getValueAsString() throws IOException {
23632363 * Default implementation returns true; overridden by data formats
23642364 * that do support native Object Ids. Caller is expected to either
23652365 * use a non-native notation (explicit property or such), or fail,
2366- * in case it can not use native object ids.
2366+ * in case it cannot use native object ids.
23672367 *
23682368 * @return {@code True} if the format being read supports native Object Ids;
23692369 * {@code false} if not
@@ -2380,7 +2380,7 @@ public String getValueAsString() throws IOException {
23802380 * Default implementation returns true; overridden by data formats
23812381 * that do support native Type Ids. Caller is expected to either
23822382 * use a non-native notation (explicit property or such), or fail,
2383- * in case it can not use native type ids.
2383+ * in case it cannot use native type ids.
23842384 *
23852385 * @return {@code True} if the format being read supports native Type Ids;
23862386 * {@code false} if not
@@ -2454,7 +2454,7 @@ public String getValueAsString() throws IOException {
24542454 * Note: this method should NOT be used if the result type is a
24552455 * container ({@link java.util.Collection} or {@link java.util.Map}.
24562456 * The reason is that due to type erasure, key and value types
2457- * can not be introspected when using this method.
2457+ * cannot be introspected when using this method.
24582458 *
24592459 * @param <T> Nominal type parameter for value type
24602460 *
0 commit comments