RuneHive-Game
Loading...
Searching...
No Matches
ByteOrder.java
Go to the documentation of this file.
1package com.runehive.net.codec;
2
3/**
4 * Represents the order in which bytes are written.
5 *
6 * @author nshusa
7 */
8public enum ByteOrder {
9
10 /**
11 * Represents Little-endian
12 */
14
15 /**
16 * Represents Big-endian
17 */
19
20 /**
21 * Represents Middle-endian
22 */
24
25 /**
26 * Represents Inverse-middle-endian
27 */
29
30}
Represents the order in which bytes are written.
Definition ByteOrder.java:8
IME
Represents Inverse-middle-endian.
BE
Represents Big-endian.
LE
Represents Little-endian.
ME
Represents Middle-endian.