@@ -36,16 +36,16 @@ public PODOptions(boolean removeIsPrefix, boolean useCamelCase) {
3636 * the string begin or end with whitespace. The string can be empty, but cannot
3737 * be null. The following is an example of this parameter: {@code
3838 * usecamelcase = true}. The key can be any one of the following where the
39- * letters can be any combination of basic upper-case and/or basic lower-case
39+ * letters can be any combination of basic uppercase and/or basic lowercase
4040 * letters: {@code usecamelcase}. Other keys are ignored in this version of the
4141 * CBOR library. (Keys are compared using a basic case-insensitive comparison,
4242 * in which two strings are equal if they match after converting the basic
43- * upper-case letters A to Z (U+0041 to U+005A) in both strings to basic
44- * lower-case letters.) If two or more key/value pairs have equal keys (in a
43+ * uppercase letters A to Z (U+0041 to U+005A) in both strings to basic
44+ * lowercase letters.) If two or more key/value pairs have equal keys (in a
4545 * basic case-insensitive comparison), the value given for the last such key is
4646 * used. The key just given can have a value of {@code 1}, {@code true}, {@code
4747 * yes}, or {@code on} (where the letters can be any combination of basic
48- * upper-case and/or basic lower-case letters), which means true, and any other
48+ * uppercase and/or basic lowercase letters), which means true, and any other
4949 * value meaning false. For example, {@code usecamelcase = Yes} and {@code
5050 * usecamelcase = 1} both set the {@code UseCamelCase} property to true. In the
5151 * future, this class may allow other keys to store other kinds of values, not
@@ -84,7 +84,7 @@ public PODOptions(String paramString) {
8484 * the behavior of key name serialization as follows. If "useCamelCase" is
8585 * {@code false} :</p> <ul> <li>In the .NET version, all key names are
8686 * capitalized, meaning the first letter in the name is converted to a basic
87- * upper-case letter if it's a basic lower-case letter ("a" to "z"). (For
87+ * uppercase letter if it's a basic lowercase letter ("a" to "z"). (For
8888 * example, "Name" and "IsName" both remain unchanged.)</li><li>In the Java
8989 * version, all field names are capitalized, and for each eligible method name,
9090 * the word "get" or "set" is removed from the name if the name starts with
@@ -93,8 +93,8 @@ public PODOptions(String paramString) {
9393 * <p>If "useCamelCase" is {@code true} :</p> <ul> <li>In the .NET version, for
9494 * each eligible property or field name, the word "Is" is removed from the name
9595 * if the name starts with that word, then the name is converted to camel case,
96- * meaning the first letter in the name is converted to a basic lower-case
97- * letter if it's a basic upper-case letter ("A" to "Z"). (For example, "Name"
96+ * meaning the first letter in the name is converted to a basic lowercase
97+ * letter if it's a basic uppercase letter ("A" to "Z"). (For example, "Name"
9898 * and "IsName" both become "name", and "IsIsName" becomes
9999 * "isName".)</li><li>In the Java version: For each eligible method name, the
100100 * word "get", "set", or "is" is removed from the name if the name starts with
@@ -104,8 +104,8 @@ public PODOptions(String paramString) {
104104 * that word, then the name is converted to camel case. (For example, "name"
105105 * and "isName" both become "name".)</li></ul> <p>In the description above, a
106106 * name "starts with" a word if that word begins the name and is followed by a
107- * character other than a basic digit or basic lower-case letter, that is,
108- * other than "a" to "z" or "0" to "9".</p>
107+ * character other than a basic digit or basic lowercase letter, that is, other
108+ * than "a" to "z" or "0" to "9".</p>
109109 * @return {@code true} If the names are converted to camel case; otherwise,
110110 * {@code false}. This property is {@code true} by default.
111111 */
0 commit comments