@@ -162,7 +162,7 @@ object StringDecoders {
162162 * @param bytes A byte array that represents the binary data
163163 * @param isUnsigned If true, negative numbers will be considered invalid and return null
164164 * @param allowSignOverpunch If true, sign overpunching is allowed
165- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
165+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
166166 * @param improvedNullDetection If true, return null if all bytes are zero
167167 * @return A string representation of the binary data
168168 */
@@ -235,7 +235,7 @@ object StringDecoders {
235235 * @param bytes A byte array that represents the binary data
236236 * @param isUnsigned If true, negative numbers will be considered invalid and return null
237237 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
238- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
238+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
239239 * @param improvedNullDetection If true, return null if all bytes are zero
240240 * @return A string representation of the binary data
241241 */
@@ -303,7 +303,7 @@ object StringDecoders {
303303 * @param bytes A byte array that represents the binary data
304304 * @param isUnsigned If true, negative numbers will be considered invalid and return null
305305 * @param allowSignOverpunch If true, sign overpunching is allowed
306- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
306+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
307307 * @param improvedNullDetection If true, return null if all bytes are zero
308308 * @return A boxed integer
309309 */
@@ -321,7 +321,7 @@ object StringDecoders {
321321 * @param bytes A byte array that represents the binary data
322322 * @param isUnsigned If true, negative numbers will be considered invalid and return null
323323 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
324- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
324+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
325325 * @param improvedNullDetection If true, return null if all bytes are zero
326326 * @return A boxed integer
327327 */
@@ -339,11 +339,11 @@ object StringDecoders {
339339 * @param bytes A byte array that represents the binary data
340340 * @param isUnsigned If true, negative numbers will be considered invalid and return null
341341 * @param allowSignOverpunch If true, sign overpunching is allowed
342+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
342343 * @param improvedNullDetection If true, return null if all bytes are zero
343- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
344344 * @return A boxed long
345345 */
346- final def decodeEbcdicLong (bytes : Array [Byte ], isUnsigned : Boolean , allowSignOverpunch : Boolean , improvedNullDetection : Boolean , relaxedOvepunch : Boolean ): java.lang.Long = {
346+ final def decodeEbcdicLong (bytes : Array [Byte ], isUnsigned : Boolean , allowSignOverpunch : Boolean , relaxedOvepunch : Boolean , improvedNullDetection : Boolean ): java.lang.Long = {
347347 try {
348348 decodeEbcdicNumber(bytes, isUnsigned, allowSignOverpunch, relaxedOvepunch, improvedNullDetection).toLong
349349 } catch {
@@ -357,7 +357,7 @@ object StringDecoders {
357357 * @param bytes A byte array that represents the binary data
358358 * @param isUnsigned If true, negative numbers will be considered invalid and return null
359359 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
360- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
360+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
361361 * @param improvedNullDetection If true, return null if all bytes are zero
362362 * @return A boxed long
363363 */
@@ -375,7 +375,7 @@ object StringDecoders {
375375 * @param bytes A byte array that represents the binary data
376376 * @param isUnsigned If true, negative numbers will be considered invalid and return null
377377 * @param allowSignOverpunch If true, sign overpunching is allowed
378- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
378+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
379379 * @param improvedNullDetection If true, return null if all bytes are zero
380380 * @param scale A decimal scale in case decimal number with implicit decimal point is expected
381381 * @param scaleFactor Additional zeros to be added before of after the decimal point
@@ -395,7 +395,7 @@ object StringDecoders {
395395 * @param bytes A byte array that represents the binary data
396396 * @param isUnsigned If true, negative numbers will be considered invalid and return null
397397 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
398- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
398+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
399399 * @param improvedNullDetection If true, return null if all bytes are zero
400400 * @param scale A decimal scale in case decimal number with implicit decimal point is expected
401401 * @param scaleFactor Additional zeros to be added before of after the decimal point
@@ -416,7 +416,7 @@ object StringDecoders {
416416 * @param bytes A byte array that represents the binary data
417417 * @param isUnsigned If true, negative numbers will be considered invalid and return null
418418 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
419- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
419+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
420420 * @param improvedNullDetection If true, return null if all bytes are zero
421421 * @return A big decimal containing a big integral number
422422 */
@@ -435,7 +435,7 @@ object StringDecoders {
435435 * @param bytes A byte array that represents the binary data
436436 * @param isUnsigned If true, negative numbers will be considered invalid and return null
437437 * @param allowSignOverpunch If true, sign overpunching is allowed in first or last position
438- * @param relaxedOvepunch If true, multiple published signs are allowed. The last is going to be effective
438+ * @param relaxedOvepunch If true, multiple sign overpunching characters are allowed. The last one is going to be effective
439439 * @param improvedNullDetection If true, return null if all bytes are zero
440440 * @return A big decimal containing a big integral number
441441 */
0 commit comments