-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUUIDTypeAdapter.java
More file actions
59 lines (47 loc) · 1.43 KB
/
UUIDTypeAdapter.java
File metadata and controls
59 lines (47 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package game.slam.util.animation.data;
import com.google.gson.TypeAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.UUID;
/**
* Type adapter to teach Gson builder how to serialize/deserialize this object type
*/
public class UUIDTypeAdapter extends TypeAdapter<UUID> {
@Override
public void write(JsonWriter out, UUID value) throws IOException {
// Value is null
if (value == null) {
out.nullValue();
}
// Not null
else {
// Parse value as String
out.value(value.toString());
}
}
@Override
public UUID read(JsonReader in) throws IOException {
// Value is null
if (in.peek() == JsonToken.NULL) {
in.nextNull();
return null;
}
// Parse next value as String
String stringValue = in.nextString();
// Catch "root"
if (stringValue.equals("root")) {
// Return special UUID to identify the root node
return new UUID(0, 0);
}
try {
// Convert value from String to UUID
return UUID.fromString(stringValue);
}
// Invalid UUID
catch (IllegalArgumentException e) {
return null;
}
}
}