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