blob: 320b630e5788c8890058f2565be77f4dd9e72ff9 (
plain)
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
|
package cc.polyfrost.oneconfig.utils;
import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
/**
* Various utility methods for working with JSON.
*/
public final class JsonUtils {
/**
* The instance of the parser.
*/
public static final JsonParser PARSER = new JsonParser();
/**
* Parses a string into a {@link JsonElement}.
*
* @param string The string to parse.
* @param catchExceptions Whether to catch exceptions.
* @return The {@link JsonElement}.
* @see JsonParser#parse(String)
*/
public static JsonElement parseString(String string, boolean catchExceptions) {
try {
return PARSER.parse(string);
} catch (Exception e) {
if (catchExceptions) {
return null;
} else {
throw e;
}
}
}
/**
* Parses a string into a {@link JsonElement}.
*
* @param string The string to parse.
* @return The {@link JsonElement}.
* @see JsonUtils#parseString(String, boolean)
*/
public static JsonElement parseString(String string) {
return parseString(string, true);
}
}
|