@@ -231,6 +231,11 @@ Use the EInteger version of this method.
231231 Generates a CBOR string object from a Unicode character.
232232* ` static CBORObject FromObject(double value) ` <br >
233233 Generates a CBOR object from a 64-bit floating-point number.
234+ * ` static CBORObject FromObject(com.upokecenter.numbers.EDecimal otherValue) ` <br >
235+ Generates a CBOR object from a decimal number.
236+ * ` static CBORObject FromObject(com.upokecenter.numbers.EFloat bigValue) ` <br >
237+ Generates a CBOR object from an arbitrary-precision binary floating-point
238+ number.
234239* ` static CBORObject FromObject(com.upokecenter.numbers.EInteger bigintValue) ` <br >
235240 Generates a CBOR object from an arbitrary-precision integer.
236241* ` static CBORObject FromObject(com.upokecenter.numbers.ERational bigValue) ` <br >
@@ -758,7 +763,7 @@ Gets the value of a CBOR object in this map, using a CBOR object as the key.
758763
759764** Parameters:**
760765
761- * <code >key</code > - Another CBOR object.
766+ * <code >key</code > - The parameter < code >key</ code > is a CBOR object.
762767
763768** Returns:**
764769
@@ -807,7 +812,8 @@ Registers an object that converts objects of a given type to CBOR objects
807812* <code >type</code > - A Type object specifying the type that the converter converts to
808813 CBOR objects.
809814
810- * <code >converter</code > - An ICBORConverter object.
815+ * <code >converter</code > - The parameter <code >converter</code > is an ICBORConverter
816+ object.
811817
812818** Throws:**
813819
@@ -819,9 +825,9 @@ Finds the sum of two CBOR numbers.
819825
820826** Parameters:**
821827
822- * <code >first</code > - Another CBOR object.
828+ * <code >first</code > - The parameter < code >first</ code > is a CBOR object.
823829
824- * <code >second</code > - A CBORObject object. (3) .
830+ * <code >second</code > - The parameter < code >second</ code > is a CBORObject object.
825831
826832** Returns:**
827833
@@ -840,7 +846,7 @@ Deprecated. Use the EInteger version of this method.
840846
841847* <code >bigintTag</code > - An arbitrary-precision integer.
842848
843- * <code >handler</code > - An ICBORTag object.
849+ * <code >handler</code > - The parameter < code >handler</ code > is an ICBORTag object.
844850
845851** Throws:**
846852
@@ -858,7 +864,7 @@ Registers an object that validates CBOR objects with new tags.
858864
859865* <code >bigintTag</code > - An arbitrary-precision integer.
860866
861- * <code >handler</code > - An ICBORTag object.
867+ * <code >handler</code > - The parameter < code >handler</ code > is an ICBORTag object.
862868
863869** Throws:**
864870
@@ -897,7 +903,7 @@ Generates a CBOR object from an array of CBOR-encoded bytes.
897903
898904* <code >data</code > - A byte array.
899905
900- * <code >options</code > - A CBOREncodeOptions object.
906+ * <code >options</code > - The parameter < code >options</ code > is a CBOREncodeOptions object.
901907
902908** Returns:**
903909
@@ -918,9 +924,9 @@ Divides a CBORObject object by the value of a CBORObject object.
918924
919925** Parameters:**
920926
921- * <code >first</code > - A CBORObject object.
927+ * <code >first</code > - The parameter < code >first</ code > is a CBORObject object.
922928
923- * <code >second</code > - Another CBOR object.
929+ * <code >second</code > - The parameter < code >second</ code > is a CBOR object.
924930
925931** Returns:**
926932
@@ -960,7 +966,7 @@ Generates a CBOR object from a text string in JavaScript Object Notation
960966 JSON object and not multiple objects. The string may not begin with a
961967 byte-order mark (U + FEFF).
962968
963- * <code >options</code > - A CBOREncodeOptions object.
969+ * <code >options</code > - The parameter < code >options</ code > is a CBOREncodeOptions object.
964970
965971** Returns:**
966972
@@ -978,7 +984,7 @@ Generates a CBOR object from a 64-bit signed integer.
978984
979985** Parameters:**
980986
981- * <code >value</code > - A 64-bit signed integer.
987+ * <code >value</code > - The parameter < code >value</ code > is a 64-bit signed integer.
982988
983989** Returns:**
984990
@@ -990,7 +996,7 @@ Generates a CBOR object from a CBOR object.
990996
991997** Parameters:**
992998
993- * <code >value</code > - A CBOR object.
999+ * <code >value</code > - The parameter < code >value</ code > is a CBOR object.
9941000
9951001** Returns:**
9961002
@@ -1032,6 +1038,19 @@ Deprecated. Use the EFloat version of this method instead.
10321038
10331039* A CBOR number.
10341040
1041+ ### FromObject
1042+ public static CBORObject FromObject(com.upokecenter.numbers.EFloat bigValue)
1043+ Generates a CBOR object from an arbitrary-precision binary floating-point
1044+ number.
1045+
1046+ ** Parameters:**
1047+
1048+ * <code >bigValue</code > - An arbitrary-precision binary floating-point number.
1049+
1050+ ** Returns:**
1051+
1052+ * A CBOR number.
1053+
10351054### FromObject
10361055 @Deprecated public static CBORObject FromObject(ExtendedRational bigValue)
10371056Deprecated.  ; Use the ERational version of this method instead.
@@ -1056,6 +1075,18 @@ Generates a CBOR object from a rational number.
10561075
10571076* A CBOR number.
10581077
1078+ ### FromObject
1079+ public static CBORObject FromObject(com.upokecenter.numbers.EDecimal otherValue)
1080+ Generates a CBOR object from a decimal number.
1081+
1082+ ** Parameters:**
1083+
1084+ * <code >otherValue</code > - An arbitrary-precision decimal number.
1085+
1086+ ** Returns:**
1087+
1088+ * A CBOR number.
1089+
10591090### FromObject
10601091 @Deprecated public static CBORObject FromObject(ExtendedDecimal otherValue)
10611092Deprecated.  ; Use the EDecimal version of this method instead.
@@ -1092,7 +1123,7 @@ Generates a CBOR object from a 32-bit signed integer.
10921123
10931124** Parameters:**
10941125
1095- * <code >value</code > - A 32-bit signed integer.
1126+ * <code >value</code > - The parameter < code >value</ code > is a 32-bit signed integer.
10961127
10971128** Returns:**
10981129
@@ -1104,7 +1135,7 @@ Generates a CBOR object from a 16-bit signed integer.
11041135
11051136** Parameters:**
11061137
1107- * <code >value</code > - A 16-bit signed integer.
1138+ * <code >value</code > - The parameter < code >value</ code > is a 16-bit signed integer.
11081139
11091140** Returns:**
11101141
@@ -1116,7 +1147,7 @@ Generates a CBOR string object from a Unicode character.
11161147
11171148** Parameters:**
11181149
1119- * <code >value</code > - A char object.
1150+ * <code >value</code > - The parameter < code >value</ code > is a char object.
11201151
11211152** Returns:**
11221153
@@ -1145,7 +1176,7 @@ Generates a CBOR object from a byte (0 to 255).
11451176
11461177** Parameters:**
11471178
1148- * <code >value</code > - A Byte object .
1179+ * <code >value</code > - The parameter < code >value</ code > is a byte (from 0 to 255) .
11491180
11501181** Returns:**
11511182
@@ -1157,7 +1188,7 @@ Generates a CBOR object from a 32-bit floating-point number.
11571188
11581189** Parameters:**
11591190
1160- * <code >value</code > - A 32-bit floating-point number.
1191+ * <code >value</code > - The parameter < code >value</ code > is a 32-bit floating-point number.
11611192
11621193** Returns:**
11631194
@@ -1169,7 +1200,7 @@ Generates a CBOR object from a 64-bit floating-point number.
11691200
11701201** Parameters:**
11711202
1172- * <code >value</code > - A 64-bit floating-point number.
1203+ * <code >value</code > - The parameter < code >value</ code > is a 64-bit floating-point number.
11731204
11741205** Returns:**
11751206
@@ -1320,7 +1351,7 @@ Generates a CBORObject from an arbitrary object. The following types are
13201351
13211352** Parameters:**
13221353
1323- * <code >obj</code > - An arbitrary object.
1354+ * <code >obj</code > - The parameter < code >obj</ code > is an arbitrary object.
13241355
13251356** Returns:**
13261357
@@ -1422,7 +1453,8 @@ Creates a CBOR object from a simple value number.
14221453
14231454** Parameters:**
14241455
1425- * <code >simpleValue</code > - A 32-bit signed integer.
1456+ * <code >simpleValue</code > - The parameter <code >simpleValue</code > is a 32-bit signed
1457+ integer.
14261458
14271459** Returns:**
14281460
@@ -1439,9 +1471,9 @@ Multiplies two CBOR numbers.
14391471
14401472** Parameters:**
14411473
1442- * <code >first</code > - A CBORObject object.
1474+ * <code >first</code > - The parameter < code >first</ code > is a CBORObject object.
14431475
1444- * <code >second</code > - Another CBOR object.
1476+ * <code >second</code > - The parameter < code >second</ code > is a CBOR object.
14451477
14461478** Returns:**
14471479
@@ -1499,7 +1531,7 @@ Reads an object in CBOR format from a data stream. This method will read
14991531
15001532* <code >stream</code > - A readable data stream.
15011533
1502- * <code >options</code > - A CBOREncodeOptions object.
1534+ * <code >options</code > - The parameter < code >options</ code > is a CBOREncodeOptions object.
15031535
15041536** Returns:**
15051537
@@ -1559,7 +1591,7 @@ Generates a CBOR object from a data stream in JavaScript Object Notation
15591591 data stream must contain a single JSON object and not multiple
15601592 objects.
15611593
1562- * <code >options</code > - A CBOREncodeOptions object.
1594+ * <code >options</code > - The parameter < code >options</ code > is a CBOREncodeOptions object.
15631595
15641596** Returns:**
15651597
@@ -1581,9 +1613,9 @@ Finds the remainder that results when a CBORObject object is divided by the
15811613
15821614** Parameters:**
15831615
1584- * <code >first</code > - A CBORObject object.
1616+ * <code >first</code > - The parameter < code >first</ code > is a CBORObject object.
15851617
1586- * <code >second</code > - Another CBOR object.
1618+ * <code >second</code > - The parameter < code >second</ code > is a CBOR object.
15871619
15881620** Returns:**
15891621
@@ -1595,9 +1627,9 @@ Finds the difference between two CBOR number objects.
15951627
15961628** Parameters:**
15971629
1598- * <code >first</code > - A CBORObject object.
1630+ * <code >first</code > - The parameter < code >first</ code > is a CBORObject object.
15991631
1600- * <code >second</code > - Another CBOR object.
1632+ * <code >second</code > - The parameter < code >second</ code > is a CBOR object.
16011633
16021634** Returns:**
16031635
@@ -1945,7 +1977,7 @@ Writes a CBOR object to a CBOR data stream. See the three-parameter Write
19451977
19461978** Parameters:**
19471979
1948- * <code >objValue</code > - An arbitrary object.
1980+ * <code >objValue</code > - The parameter < code >objValue</ code > is an arbitrary object.
19491981
19501982* <code >stream</code > - A writable data stream.
19511983
@@ -1988,7 +2020,7 @@ Converts an arbitrary object to a string in JavaScript Object Notation
19882020
19892021** Parameters:**
19902022
1991- * <code >obj</code > - An arbitrary object.
2023+ * <code >obj</code > - The parameter < code >obj</ code > is an arbitrary object.
19922024
19932025* <code >outputStream</code > - A writable data stream.
19942026
@@ -2045,7 +2077,7 @@ Adds a new object to the end of this array. (Used to throw
20452077
20462078** Parameters:**
20472079
2048- * <code >obj</code > - A CBOR object.
2080+ * <code >obj</code > - The parameter < code >obj</ code > is a CBOR object.
20492081
20502082** Returns:**
20512083
@@ -2061,7 +2093,7 @@ Converts an object to a CBOR object and adds it to the end of this array.
20612093
20622094** Parameters:**
20632095
2064- * <code >obj</code > - A CBOR object.
2096+ * <code >obj</code > - The parameter < code >obj</ code > is a CBOR object.
20652097
20662098** Returns:**
20672099
@@ -2507,7 +2539,7 @@ Determines whether this object and another object are equal and have the
25072539
25082540** Parameters:**
25092541
2510- * <code >obj</code > - An arbitrary object.
2542+ * <code >obj</code > - The parameter < code >obj</ code > is an arbitrary object.
25112543
25122544** Returns:**
25132545
0 commit comments