summaryrefslogtreecommitdiff
path: root/platform/android/src/gson/json_element.hpp
blob: 5c68934871eb9e6e7db328212355d3a2a37ee834 (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
#pragma once

#include <mapbox/geometry.hpp>

#include <jni/jni.hpp>

namespace mbgl {
namespace android {
namespace gson {

class JsonElement : public jni::ObjectTag {
public:
    static constexpr auto Name() { return "com/google/gson/JsonElement"; };

    static jni::Object<JsonElement> New(jni::JNIEnv&, const mapbox::geometry::value&);
    static mapbox::geometry::value convert(JNIEnv&, jni::Object<JsonElement>);

    static bool isJsonObject(JNIEnv&, jni::Object<JsonElement>);
    static bool isJsonArray(JNIEnv&, jni::Object<JsonElement>);
    static bool isJsonPrimitive(JNIEnv&, jni::Object<JsonElement>);
    static bool isJsonNull(JNIEnv&, jni::Object<JsonElement>);

    static void registerNative(jni::JNIEnv&);
};

} // namespace gson
} // namespace android
} // namespace mbgl