#pragma once #include "json_element.hpp" #include namespace mbgl { namespace android { namespace gson { class JsonArray { public: using SuperTag = JsonElement; static constexpr auto Name() { return "com/google/gson/JsonArray"; }; static jni::Local> New(jni::JNIEnv&, const std::vector&); static std::vector convert(JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace gson } // namespace android } // namespace mbgl