//ERDDAP/com.cohort.util/ScriptString2/toHexCSSVString
toHexCSSVString
[JVM]
open fun toHexCSSVString(ar: Array<Byte>): String
This generates a hexadecimal Comma-Space-Separated-Value (CSSV) String from the array. Negative numbers are twos compliment, e.g., -4 -> 0xfc.
CHANGED: before 2011-09-04, this was called toHexCSVString.
Return
a CSSV String (or null if ar is null)
Parameters
JVM
ar | an array of bytes |
[JVM]
open fun toHexCSSVString(ar: Array<Short>): String
This generates a hexadecimal Comma-Space-Separated-Value (CSSV) String from the array. Negative numbers are twos compliment, e.g., -4 -> 0xfffc.
CHANGED: before 2011-09-04, this was called toHexCSVString.
Return
a CSSV String (or null if ar is null)
Parameters
JVM
ar | an array of short |
[JVM]
open fun toHexCSSVString(ar: Array<Int>): String
This generates a hexadecimal Comma-Space-Separated-Value (CSSV) String from the array. Negative numbers are twos compliment, e.g., -4 -> 0xfffffffc.
CHANGED: before 2011-09-04, this was called toHexCSVString.
Return
a CSSV String (or null if ar is null)
Parameters
JVM
ar | an array of ints |