public static unsafe bool IsPrintLog(global::Com.Taobao.Accs.Utl.ALog.Level p0)
 {
     if (id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_ == IntPtr.Zero)
     {
         id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_ = JNIEnv.GetStaticMethodID(class_ref, "isPrintLog", "(Lcom/taobao/accs/utl/ALog$Level;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_, __args);
         return(__ret);
     } finally {
     }
 }
            public static unsafe global::Com.Taobao.Accs.Utl.ALog.Level ValueOf(string p0)
            {
                if (id_valueOf_Ljava_lang_String_ == IntPtr.Zero)
                {
                    id_valueOf_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "valueOf", "(Ljava/lang/String;)Lcom/taobao/accs/utl/ALog$Level;");
                }
                IntPtr native_p0 = JNIEnv.NewString(p0);

                try {
                    JValue *__args = stackalloc JValue [1];
                    __args [0] = new JValue(native_p0);
                    global::Com.Taobao.Accs.Utl.ALog.Level __ret = global::Java.Lang.Object.GetObject <global::Com.Taobao.Accs.Utl.ALog.Level> (JNIEnv.CallStaticObjectMethod(class_ref, id_valueOf_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
                    return(__ret);
                } finally {
                    JNIEnv.DeleteLocalRef(native_p0);
                }
            }