static bool n_Contains_Lcom_amap_api_maps2d_model_LatLng_(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.Maps2d.Model.LatLng p0     = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Maps2d.Model.LatLng> (native_p0, JniHandleOwnership.DoNotTransfer);
            bool __ret = __this.Contains(p0);

            return(__ret);
        }
        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 Circle(global::Com.Amap.Api.Interfaces.ICircle p0)
            : base(IntPtr.Zero, JniHandleOwnership.DoNotTransfer)
        {
            const string __id = "(Lcom/amap/api/interfaces/ICircle;)V";

            if (((global::Java.Lang.Object) this).Handle != IntPtr.Zero)
            {
                return;
            }

            try {
                JniArgumentValue *__args = stackalloc JniArgumentValue [1];
                __args [0] = new JniArgumentValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
                var __r = _members.InstanceMethods.StartCreateInstance(__id, ((object)this).GetType(), __args);
                SetHandle(__r.Handle, JniHandleOwnership.TransferLocalRef);
                _members.InstanceMethods.FinishCreateInstance(__id, this, __args);
            } finally {
            }
        }
 static void n_Remove(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Remove();
 }
 static int n_HashCodeRemote(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.HashCodeRemote());
 }
 static void n_SetZIndex_F(IntPtr jnienv, IntPtr native__this, float p0)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.ZIndex = p0;
 }
 static float n_GetZIndex(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (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.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Visible = p0;
 }
 static bool n_IsVisible(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.Visible);
 }
 static IntPtr n_GetId(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewString(__this.Id));
 }
 static void n_SetStrokeColor_I(IntPtr jnienv, IntPtr native__this, int p0)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.StrokeColor = p0;
 }
 static void n_SetRadius_D(IntPtr jnienv, IntPtr native__this, double p0)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     __this.Radius = p0;
 }
 static double n_GetRadius(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Amap.Api.Interfaces.ICircle __this = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Interfaces.ICircle> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(__this.Radius);
 }
 static void n_SetCenter_Lcom_amap_api_maps2d_model_LatLng_(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.Maps2d.Model.LatLng p0     = global::Java.Lang.Object.GetObject <global::Com.Amap.Api.Maps2d.Model.LatLng> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.Center = p0;
 }