Liking cljdoc? Tell your friends :D

jdk.nio.ByteOrder

A typesafe enumeration for byte orders.

A typesafe enumeration for byte orders.
raw docstring

*-big-endianclj

Static Constant.

Constant denoting big-endian byte order. In this order, the bytes of a multibyte value are ordered from most significant to least significant.

type: java.nio.ByteOrder

Static Constant.

Constant denoting big-endian byte order.  In this order, the bytes of a
 multibyte value are ordered from most significant to least significant.

type: java.nio.ByteOrder
raw docstring

*-little-endianclj

Static Constant.

Constant denoting little-endian byte order. In this order, the bytes of a multibyte value are ordered from least significant to most significant.

type: java.nio.ByteOrder

Static Constant.

Constant denoting little-endian byte order.  In this order, the bytes of
 a multibyte value are ordered from least significant to most
 significant.

type: java.nio.ByteOrder
raw docstring

*native-orderclj

(*native-order)

Retrieves the native byte order of the underlying platform.

This method is defined so that performance-sensitive Java code can allocate direct buffers with the same byte order as the hardware. Native code libraries are often more efficient when such buffers are used.

returns: The native byte order of the hardware upon which this Java virtual machine is running - java.nio.ByteOrder

Retrieves the native byte order of the underlying platform.

  This method is defined so that performance-sensitive Java code can
 allocate direct buffers with the same byte order as the hardware.
 Native code libraries are often more efficient when such buffers are
 used.

returns: The native byte order of the hardware upon which this Java
          virtual machine is running - `java.nio.ByteOrder`
raw docstring

to-stringclj

(to-string this)

Constructs a string describing this object.

This method returns the string "BIG_ENDIAN" for BIG_ENDIAN and "LITTLE_ENDIAN" for LITTLE_ENDIAN.

returns: The specified string - java.lang.String

Constructs a string describing this object.

  This method returns the string "BIG_ENDIAN" for BIG_ENDIAN and "LITTLE_ENDIAN" for LITTLE_ENDIAN.

returns: The specified string - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close