RuneHive-Game
Loading...
Searching...
No Matches
AccessType.java
Go to the documentation of this file.
1
package
com.runehive.net.codec;
2
3
/**
4
* Represents the different forms data can be written in.
5
*
6
* @author Seven
7
*/
8
public
enum
AccessType
{
9
10
/**
11
* The type that denotes bits can be written as bytes.
12
*/
13
BIT
,
14
15
/**
16
* the type that denotes bytes can be written directly.
17
*/
18
BYTE
19
20
}
com.runehive.net.codec.AccessType
Represents the different forms data can be written in.
Definition
AccessType.java:8
com.runehive.net.codec.AccessType.BIT
BIT
The type that denotes bits can be written as bytes.
Definition
AccessType.java:13
com.runehive.net.codec.AccessType.BYTE
BYTE
the type that denotes bytes can be written directly.
Definition
AccessType.java:18