FloatBuffer.Order Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves this buffer's byte order.
[Android.Runtime.Register("order", "()Ljava/nio/ByteOrder;", "GetOrderHandler")]
public abstract Java.Nio.ByteOrder? Order ();
[<Android.Runtime.Register("order", "()Ljava/nio/ByteOrder;", "GetOrderHandler")>]
abstract member Order : unit -> Java.Nio.ByteOrder
Returns
This buffer's byte order
- Attributes
Remarks
Retrieves this buffer's byte order.
The byte order of a float buffer created by allocation or by wrapping an existing float
array is the ByteOrder#nativeOrder native order
of the underlying hardware. The byte order of a float buffer created as a view of a byte buffer is that of the byte buffer at the moment that the view is created.
Java documentation for java.nio.FloatBuffer.order()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.