static bool n_EqualsRemote_Lcom_amap_api_interfaces_IOverlay_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::Com.Amap.Api.Interfaces.ICircle  __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            global::Com.Amap.Api.Interfaces.IOverlay p0     = (global::Com.Amap.Api.Interfaces.IOverlay)global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (native_p0, JniHandleOwnership.DoNotTransfer);
            bool __ret = __this.EqualsRemote(p0);

            return(__ret);
        }
        public unsafe bool EqualsRemote(global::Com.Amap.Api.Interfaces.IOverlay p0)
        {
            if (id_equalsRemote_Lcom_amap_api_interfaces_IOverlay_ == IntPtr.Zero)
            {
                id_equalsRemote_Lcom_amap_api_interfaces_IOverlay_ = JNIEnv.GetMethodID(class_ref, "equalsRemote", "(Lcom/amap/api/interfaces/IOverlay;)Z");
            }
            JValue *__args = stackalloc JValue [1];

            __args [0] = new JValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
            bool __ret = JNIEnv.CallBooleanMethod(((global::Java.Lang.Object) this).Handle, id_equalsRemote_Lcom_amap_api_interfaces_IOverlay_, __args);

            return(__ret);
        }
 static int n_HashCodeRemote(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.HashCodeRemote());
 }
 static void n_Remove(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Remove();
 }
 static void n_SetZIndex_F(IntPtr jnienv, IntPtr native__this, float p0)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.ZIndex = p0;
 }
 static float n_GetZIndex(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.ZIndex);
 }
 static void n_SetVisible_Z(IntPtr jnienv, IntPtr native__this, bool p0)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Visible = p0;
 }
 static bool n_IsVisible(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.Visible);
 }
 static IntPtr n_GetId(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.IOverlay __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.IOverlay> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewString(__this.Id));
 }