CallStaticObjectMethod
Invokes the specified \<tt\>methodID\</tt\> static method on a Java object, optionally passing in an array of arguments (\<tt\>args\</tt\>).
Read time 1 minuteLast updated 17 hours ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.AndroidJNIModule
CallStaticObjectMethod(IntPtr, IntPtr, jvalue[])
Invokes the specified \<tt\>methodID\</tt\> static method on a Java object, optionally passing in an array of arguments (\<tt\>args\</tt\>).
public static nint CallStaticObjectMethod(nint clazz, nint methodID, jvalue[] args)
Parameters
Returns
Type | Description |
|---|---|
| IntPtr |
Remarks
This method returns a reference to a \<tt\>java.lang.Object\</tt\>, or a subclass thereof.
Additional Resources: Java Native Interface Specification (Oracle)
CallStaticObjectMethod(IntPtr, IntPtr, Span<jvalue>)
Invokes the specified \<tt\>methodID\</tt\> static method on a Java object, optionally passing in an array of arguments (\<tt\>args\</tt\>).
public static nint CallStaticObjectMethod(nint clazz, nint methodID, Span<jvalue> args)
Parameters
Returns
Type | Description |
|---|---|
| IntPtr |
Remarks
This method returns a reference to a \<tt\>java.lang.Object\</tt\>, or a subclass thereof.
Additional Resources: Java Native Interface Specification (Oracle)